Eligible Role Assignments
Represents eligible role assignments from Microsoft Graph PIM (Privileged Identity Management).
Labels: :GraphObject, :GraphRole
This configuration creates IS_ROLE_ELIGIBLE relationships between principals and their eligible Graph roles.
Relationship Properties (on IS_ROLE_ELIGIBLE):
createdDateTime- Creation date/timedirectoryScopeId- Directory scope IDmemberType- Member typemodifiedDateTime- Modified date/timeexpirationType- Expiration typestartDateTime- Start date/timeendDateTime- End date/timerecurrence- Recurrence schedule
Relationships
- GraphObject →
IS_ROLE_ELIGIBLE→ GraphRole - Principal is eligible for the role
Examples
// Find users eligible for directory roles
MATCH (u:GraphUser)-[r:IS_ROLE_ELIGIBLE]->(role:GraphRole)
RETURN u.displayName, role.displayName, r.expirationType, r.endDateTime