Hello,
I'm setting various visualizations to filter on Kibana and I need to be able to search by specific words in a text description. Let's say I have a paragraph description and I want to populate results when "Blue" or "Red" come up or "Puppy Dog" comes up.
Here is what I have so far...
-
The below query results in any entry with red or blue in the selected field. Is this the most efficient way to write this out?
-
How would I search for "Puppy Dog" since it has a space, without searching for "puppy" and "dog" separately?
{
"query": {
"query_string": {
"default_field": "Paragraph",
"query": "*Red* and *Blue*"
}
}
}