You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to be as thorough as possible, and as clear as possible:
// Search for data where 'attributeName' is set to true.ModelName::where('attributeName', 'true')->get();
// Search for data where 'attributeName' is set to false.ModelName::where('attributeName', 'false')->get();
// This does return all models where 'attributeName' is set to boolean false in the Elasticsearch index.
In my Elasticsearch index there is this mapping:
Elasticsearch 5
In version 5 I can do a search like:
This is working great!
Elasticsearch 6
But In version 6 when I do a search like:
That doesnot work....
After some testing, I found out the following does work:
Please notice the string 'true' instead of a php boolean
true
.Question
Is it intended to de a search for a boolean type like so:
Perhaps you can point me in the right direction?
The text was updated successfully, but these errors were encountered: