스크림트 정리

This commit is contained in:
admin hmac
2025-11-05 11:14:46 +09:00
parent f1a3ff71cb
commit b8449e526a
27 changed files with 691 additions and 1 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;