12 lines
333 B
Plaintext
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;
|