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
Using the .clear() method returned from makeDefaultStorage errors with:
global-error-handler.service.ts:13 Error: Uncaught (in promise): NotFoundError: Failed to execute 'objectStore' on 'IDBTransaction': The specified object store was not found. Error: Failed to execute 'objectStore' on 'IDBTransaction': The specified object store was not found.
urql version & exchanges:
@urql/core: 2.1.2
@urql/exchange-graphcache: 4.1.2
Using the
.clear()
method returned from makeDefaultStorage errors with:global-error-handler.service.ts:13 Error: Uncaught (in promise): NotFoundError: Failed to execute 'objectStore' on 'IDBTransaction': The specified object store was not found. Error: Failed to execute 'objectStore' on 'IDBTransaction': The specified object store was not found.
urql version & exchanges:
@urql/core: 2.1.2
@urql/exchange-graphcache: 4.1.2
Culprit:
https://github.com/FormidableLabs/urql/blob/276762c030acb22b4138fcd8ca12f851fe04ef2c/exchanges/graphcache/src/default-storage/index.ts#L98-L108
database.transaction should be called with both storeNames:
MDN
Thanks :)
The text was updated successfully, but these errors were encountered: