| 123456789101112131415161718192021222324 |
- MATCH
- (person:/univ_demo/person WHERE status in ('在职', '报到中') AND person_sort = '事业编' AND staff_type = '专任教师岗位' AND account != 'ZGZFDX')
- -[:person_to_szxxsb*1..1]->
- (aww:/univ_demo/szxxsb WHERE jx_yjdj = 'A级')
- RETURN person.account AS "teacher_account" WITH TIMEOUT = 6m
- /**
- output()
- **/
- ;
- MATCH
- (person:/univ_demo/person WHERE status in ('在职', '报到中') AND person_sort = '事业编' AND staff_type = '专任教师岗位' AND account != 'ZGZFDX')
- -[:person_to_szxxsb*1..1]->
- (sww:/univ_demo/szxxsb WHERE jx_yjdj = 'A级')
- RETURN person.account AS "teacher_account" WITH TIMEOUT = 6m
- /**
- output()
- **/
- ;
|