999.match.mql 672 B

1234567891011121314151617181920212223242526
  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. count(370)
  9. **/
  10. ;
  11. MATCH
  12. (person:/univ_demo/person WHERE status in ('在职', '报到中') AND person_sort = '事业编' AND staff_type = '专任教师岗位' AND account != 'ZGZFDX')
  13. -[:person_to_szxxsb*1..1]->
  14. (sww:/univ_demo/szxxsb WHERE jx_yjdj = 'A级')
  15. RETURN person.account AS "teacher_account" WITH TIMEOUT = 6m
  16. /**
  17. output()
  18. count(370)
  19. **/
  20. ;