Hi everyone,
First, sorry for my english.
To ask my question i will expose to you an example.
I have a type tags who contains list of tags :
"_source": {
"name": "tablet-sony",
}
"_source": {
"name": "tv-sony"
}
"_source": {
"name": "tablet-samsung"
}
Now I want to get tags from this query :
"query": "I have tv sony and tablet samsung",
And I want to extract only tags : "tv-sony" and "tablet-samsung" but not "tablet-sony"
What is the best way to make this condition ?
Thank's for your help.