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
From this PR we can see it has been made available via a new query method with the signature query<T>(query: Query<T>, compositeFilter: QueryCompositeFilterConstraint, ...queryConstraints: QueryNonFilterConstraint[]).
Introduction of the new QueryCompositeFilterConstraint type means its incompatible with the current signatures of syncCollection, syncCollectionGroup, and valueChanges and as such or queries cannot be used.
I'd be interested to hear some opinions on the proposed method signatures as there is quite a bit of overloading already going on.
Happy to have a go at adding support if we can agree on the approach.
The text was updated successfully, but these errors were encountered:
In version 9.18, firebase added support for
or
queries.From this PR we can see it has been made available via a new
query
method with the signaturequery<T>(query: Query<T>, compositeFilter: QueryCompositeFilterConstraint, ...queryConstraints: QueryNonFilterConstraint[])
.Introduction of the new
QueryCompositeFilterConstraint
type means its incompatible with the current signatures ofsyncCollection
,syncCollectionGroup
, andvalueChanges
and as suchor
queries cannot be used.I'd be interested to hear some opinions on the proposed method signatures as there is quite a bit of overloading already going on.
Happy to have a go at adding support if we can agree on the approach.
The text was updated successfully, but these errors were encountered: