내역 정리

This commit is contained in:
admin hmac
2025-11-04 16:45:03 +09:00
commit f1a3ff71cb
23 changed files with 1200 additions and 0 deletions

View 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;