스크림트 정리
This commit is contained in:
11
cypher_scripts/simulate_event_delay.cypher
Normal file
11
cypher_scripts/simulate_event_delay.cypher
Normal file
@@ -0,0 +1,11 @@
|
||||
// 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;
|
||||
Reference in New Issue
Block a user