CAPNamedLocation
Represents Conditional Access Policy Named Locations from Microsoft Graph.
Labels: :GraphObject:CAPNamedLocation
Properties:
id- Object ID (primary key)odataType- OData typecreatedDateTime- Creation date/timemodifiedDateTime- Modified date/timedeletedDateTime- Deleted date/timedisplayName- Display nameisTrusted- Whether the location is trustedipRanges- IP ranges (JSON)countriesAndRegions- Countries and regionscountryLookupMethod- Country lookup methodincludeUnknownCountriesAndRegions- Whether unknown countries/regions are included
Examples
// Find all trusted named locations
MATCH (nl:CAPNamedLocation)
WHERE nl.isTrusted = true
RETURN nl.displayName, nl.ipRanges