Is there a way to query the documents in an app search engine by more than just id?
I'm scanning document here:
and search here:
Looks like the only hooks we get is asking for all documents, or a specific document by id, or searching using a text string or number.
What I'm looking for is for a data set like users below, the ability to request a list of documents that match a particular value (e.g. status="Active", or organization contains "Navy")
Is that possible from either the Restful APIs or the Javascript client?
[
{
"id": 4,
"name": "Doe, Ann A. ",
"rank": "CTR",
"email": "Ann.a.doe@mail.mil",
"organization": "Navy • CNIC • CNDW",
"role": "Authorized User",
"status": "Active",
"edipi": "1456741258",
"date_created": "2019-03-09",
"last_login": "2019-12-20",
"groups": "CNDW",
"date_requested": null
},
{
"id": 5,
"name": "Doe, Jane T. ",
"rank": "CTR",
"email": "jane.t.doe@mail.mil",
"organization": "Navy • CNIC • EURAFCENT",
"role": "Authorized User",
"status": "Active",
"edipi": "1593574265",
"date_created": "2019-04-06",
"last_login": "2020-01-03",
"groups": "CNIC ",
"date_requested": null
},
...
]