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
Currently, collection.get(req) in the client actually does a collection.query('records', req), so req can be a either { schema, id } or { key, seq }. Likely we want to have two seperate methods for this, because for key, seq (= ref soon?) we can easily check if the record is already loaded. For { schema, id } we might want to do the query always at the moment because new updates could have happened.
The text was updated successfully, but these errors were encountered:
Currently,
collection.get(req)
in the client actually does acollection.query('records', req)
, soreq
can be a either{ schema, id }
or{ key, seq }
. Likely we want to have two seperate methods for this, because forkey, seq
(= ref soon?) we can easily check if the record is already loaded. For{ schema, id }
we might want to do the query always at the moment because new updates could have happened.The text was updated successfully, but these errors were encountered: