079.match.mql 650 B

123456789101112131415161718192021222324
  1. MATCH
  2. (person:/univ_demo/person WHERE status in ('在职', '报到中') AND person_sort = '事业编' AND staff_type = '专任教师岗位' AND account != 'ZGZFDX')
  3. -[:person_to_szxxsb*1..1]->
  4. (aww:/univ_demo/szxxsb WHERE jx_yjdj = 'A级')
  5. RETURN person.account AS "teacher_account" WITH TIMEOUT = 6m
  6. /**
  7. output()
  8. **/
  9. ;
  10. MATCH
  11. (person:/univ_demo/person WHERE status in ('在职', '报到中') AND person_sort = '事业编' AND staff_type = '专任教师岗位' AND account != 'ZGZFDX')
  12. -[:person_to_szxxsb*1..1]->
  13. (sww:/univ_demo/szxxsb WHERE jx_yjdj = 'A级')
  14. RETURN person.account AS "teacher_account" WITH TIMEOUT = 6m
  15. /**
  16. output()
  17. **/
  18. ;