I want to minimise data transfer and loading time in a case of large filters for offline and remote stores.
This PR utilises since key when creating a filter to only request actions that client has missed. Previously every action was sent from the server on every new subscription (when using addSyncMapFilter sugar)
Creating this PR after discussion with @ai in https://github.com/logux/logux/issues/107.
I want to minimise data transfer and loading time in a case of large filters for offline and remote stores.
This PR utilises
since
key when creating a filter to only request actions that client has missed. Previously every action was sent from the server on every new subscription (when usingaddSyncMapFilter
sugar)