Skip to content

HAS_APPROLE

Represents the relationship between Graph objects and their application roles.

Usage

This relationship connects Graph objects to their defined application roles:

  • GraphApplicationHAS_APPROLEGraphAppRole - Applications to their defined roles
  • GraphServicePrincipalHAS_APPROLEGraphAppRole - Service principals to their app roles

Properties

No additional properties on the relationship.

Examples

// Find all applications and their defined roles
MATCH (app:GraphApplication)-[:HAS_APPROLE]->(role:GraphAppRole)
RETURN app.displayName, role.displayName, role.value