I am trying to use Elastic App Search to search each field with different queries, I can't find the support for this in the Docs. Does anyone know if there is any way to accomplish this with Elastic Search?
For Example if the object was:
Customer: {
id: number
name: string
email: string
}
Then I could search like this somehow:
{
"query": {
"name": "John",
"email": "gmail"
}
}