Skip to content

IS_PURSUING Party-to-Party

Description

Use the IS_PURSUING relationship to construct a pursuit team of employees working on signing a non-UTA client ("Talent"),

Label

:IS_PURSUING

Valid nodes

FromRelationshipToCardinality
Employee
A party with a :HAS_ROLE relationship to a :Role {name: "Employee"}
:IS_PURSUINGTalent
A party with a :HAS_ROLE relationship to a :Role {name: "Talent" }
0..n

Properties

IS_PURSUING uses the standard relationship properties.

CREATE

  • Only allow on a party with an active Talent role

UPDATE

DELETE

Examples

cypher

MATCH     (talent:Party { id: $talentId})
       -  [:HAS_ROLE { active: true }]
       -> (r:Role { name: "Talent" })
       <- [rel:IS_PURSUING { active: true }]
       -  (employee:Party)
RETURN    employee{.*}

Confidential. For internal use only.