301valido.mql 492 B

1234567
  1. MATCH (person:/univ_demo_local/person WHERE status = '离校' AND (person_sort = '事业编' OR staff_type = '校聘合同制人员') AND actual_quit_date >= '2024-01-01 00:00:00' AND actual_quit_date <= '2024-12-31 23:59:59')-[:person_to_org*1..1]->(org:/univ_demo_local/org) RETURN person.account AS "工号", person.name AS "姓名", person.actual_quit_date AS "离校日期", org.name AS "人事所在单位" ORDER BY actual_quit_date DESC WITH TIMEOUT = 6m
  2. /**
  3. output()
  4. count(20)
  5. **/
  6. ;