Lets assume I have an app metadata structure like so :
{
"Tenants":
{
"Name": "testCust",
"permissions": {
"groups":
"Owner",
"User",
"Tester"
]
}
},
{
"Name": "realCust",
"permissions": {
"groups":
"Owner",
"Marketing",
"Driver"
]
}
}
}
Is there anyway for me to query this structure using the q parameter to find all Users containing a Tenant with name testCust and has the group Owner?
I already tried
app_metadata.Tenants.Name:testCust AND app_metadata.Tenants.permissions.groups: Owner
But that returns all users who have ANY tenant with the name testCust and ANY tenant with the permission Owner.