Output Module Filtering
I need to filter a query to run against all glossary domains. I see 2 possibilities:
SPECIFY EACH DOMAIN EXPLICITLY
"Filter": {
"AND": [
{
"Field": {
"name": "Domain_Id",
"operator": "EQUALS",
"value": "103cffd5-e22c-4f97-baf2-08c37ba169a0"
}
},
{
"Field": {
"name": "Domain_Id",
"operator": "EQUALS",
"value": "ff706cb0-2a97-49fa-a084-1778380853cb"
}
}
]
}
I don't think my syntax is correct here.
OR CAN I FILTER ON DOMAIN TYPE SOMETHING LIKE THIS:
jeffevoy
Posted 2 years ago · Edited 1 year ago·Last reply 2 years ago
1 comment
Paresh Maharana
·2 years agoHi,
I guess this is a better approach.
Filter:
- Field: {"name": "domainTypeId", "operator":"EQUALS", "value": "$domainTypeId}" }
Hope this helps,
Paresh