Files
memgraph-poc/simulate_event_delay.cypher
2025-11-04 16:45:03 +09:00

12 lines
333 B
Plaintext

// Event Simulation Query: Job Delay
// Simulates an event where a specific job's duration increases.
// Match the specific Job instance (e.g., 'TBM 준비' with id 11)
MATCH (j:Job {id: 11})
// Use SET to update its duration property
SET j.duration = 50
// Return the updated job to confirm the change
RETURN j.name, j.duration;