Reputation:
I am trying to find all documents that have this field, it doesn't matter what exact value it contains; I am only interested in the existence of it.
Here is an example:
{
"payload":{
"products":{
...
},
"discount":{
"type":"1%",
"value":"1",
"name":"New Year Discount 1%"
}
}
}
I need to target any document that has a field with the name discount
. How can I write a query to get such documents?
Upvotes: 27
Views: 29381