Graph API - Filter On Attribute Name
devopsfj
251
Reputation points
I am looking to filter on the pattern of an attribute name, not the result, for example, we are using Custom Attributes to manage permission to our applications, our attributes look like so:
extension_{appId}_Role_Admin: true
extension_{appId}_Role_Reader: true
extension_{appId}_Role_User: true
I want to query a user to find out which roles they have, so my logic would need to look like
SELECT ALL WHERE ATTRIBUTE NAME STARTS WITH EXTENSION_{APPID}_ROLE
Is this possible?
Sign in to answer