You can reduce the results to a single response with something like:
{
"indices": [
"identities"
],
"query": {
"query": "@accounts(email:\"[email protected]\")",
"innerHit": {
"type": "accounts",
"query": "source.name:\\\"Non-Employee\\\""
}
},
}
However, innerHit does not respect “queryResultsFilter”. So from search, you would need to use another program to iterate through the accounts array and find the right source for your Non-Employee to get the id or in my example, iterate through the results to find the id field.
If you have to write a program anyway, you may find that you have better results with the SDK. Check out this session from @colin_mckibben