Skip to content

HAS_IDENTITY

Represents the relationship between Azure resources and their managed identities.

Usage

This relationship connects Azure resources to their assigned managed identities:

  • ArmResourceHAS_IDENTITYGraphObject - ARM resources to their managed identities
  • UserAssignedIdentityHAS_IDENTITYGraphObject - User-assigned identities to their Graph objects

Properties

No additional properties on the relationship.

Examples

// Find all resources with managed identities
MATCH (resource:ArmResource)-[:HAS_IDENTITY]->(identity:GraphObject)
RETURN resource.name, resource.type, identity.displayName