998.match.mql 742 B

1234567891011121314151617181920212223242526
  1. MATCH
  2. (person:/univ_demo/person WHERE account in ('UN000849') AND 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" , aww.id WITH TIMEOUT = 6m
  6. /**
  7. output()
  8. count(4)
  9. **/
  10. ;
  11. MATCH
  12. (person:/univ_demo/person WHERE account in ('UN000849') AND 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" , sww.id WITH TIMEOUT = 6m
  16. /**
  17. output()
  18. count(4)
  19. **/
  20. ;