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
{{ message }}
This repository has been archived by the owner on May 4, 2019. It is now read-only.
I have an issue when I want to list one of my entities containing 2 fields boolean in the mapping.
It seems the method findAll that consider my booleans like a $param and the query called is "new QueryBool()", the debug bar show the following things:
Path: website/transaction/_search
Method: GET
{"query":{"bool":[]},"from":null,"sort":{"date_time.raw":{"order":"desc"}},"size":10000}
Time: 42.93 ms
Path: website/transaction/_search
Method: GET
{"query":{"bool":[]},"from":null,"sort":{"date_time.raw":{"order":"desc"}},"size":10000}
Time: 2.51 ms
and it returns nothing.
If I "var_dump" the parameter $param in the findAll method, I can see my 2 booleans.
I have an other entity mapped with 1 boolean and it works fine.
The text was updated successfully, but these errors were encountered:
Sorry to have left this issue unresolved.
Is it still relevant?
If so, can you give me more details, like the definition of your mapping for ElasticSearch and everything that can help me reproduce the bug easily, so I can try to fix it ? Thanks
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have an issue when I want to list one of my entities containing 2 fields boolean in the mapping.
It seems the method findAll that consider my booleans like a $param and the query called is "new QueryBool()", the debug bar show the following things:
Path: website/transaction/_search
Method: GET
{"query":{"bool":[]},"from":null,"sort":{"date_time.raw":{"order":"desc"}},"size":10000}
Time: 42.93 ms
Path: website/transaction/_search
Method: GET
{"query":{"bool":[]},"from":null,"sort":{"date_time.raw":{"order":"desc"}},"size":10000}
Time: 2.51 ms
and it returns nothing.
If I "var_dump" the parameter $param in the findAll method, I can see my 2 booleans.
I have an other entity mapped with 1 boolean and it works fine.
The text was updated successfully, but these errors were encountered: