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 24, 2023. It is now read-only.
Add has method on adapter & model to check if at least entity matches the query. It could be polyfilled with a find method, returning true if an item is matched
Add count method on adapter & model to get the number of entities matching the query. It could be polyfilled with a findMany method, returning the count of matched items.
Add every method on adapter & model to check if every entities matches the query. It can be polyfilled by running a findMany with the query, and check if the number of matched entities is equal to the count of entities matched by a findMany without any criterion
The text was updated successfully, but these errors were encountered:
has
method on adapter & model to check if at least entity matches the query. It could be polyfilled with afind
method, returning true if an item is matchedcount
method on adapter & model to get the number of entities matching the query. It could be polyfilled with afindMany
method, returning the count of matched items.every
method on adapter & model to check if every entities matches the query. It can be polyfilled by running afindMany
with the query, and check if the number of matched entities is equal to the count of entities matched by afindMany
without any criterionThe text was updated successfully, but these errors were encountered: