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
Looks like @count is not a supported operator when querying a mixed property, even if the value contains a collection. Am I misunderstanding how the query should be constructed or is this a scenario that will never work? Here's a simplified test in dart:
oneAny is a property of type Mixed; we're adding a list to it and then trying to find all objects where oneAny has size > 2. I would expect this to implicitly translate to something like oneAny.@type IN [List, Dictionary] && oneAny.asCollection().@size > 2.
The text was updated successfully, but these errors were encountered:
Looks like
@count
is not a supported operator when querying a mixed property, even if the value contains a collection. Am I misunderstanding how the query should be constructed or is this a scenario that will never work? Here's a simplified test in dart:oneAny
is a property of typeMixed
; we're adding a list to it and then trying to find all objects whereoneAny
has size > 2. I would expect this to implicitly translate to something likeoneAny.@type IN [List, Dictionary] && oneAny.asCollection().@size > 2
.The text was updated successfully, but these errors were encountered: