When running a SPARQL query with a large result set it can easily blow up the local storage size used by YASGUI utils storage npm package: https://github.com/zazuko/Yasgui/blob/main/packages/utils/src/Storage.ts
It gives a misleading message for non-savvy users: "Quota limit exceeded". It is not clear it's due to the local storage size, it could be interpreted as a response from the SPARQL endpoint (e.g. query planning freaking out)
Note the store npm package last release was 8 years ago, it is only available as commonJS, not modern ES module
Migrating to a more modern and scalable solution could be nice in the future (not a priority, but to keep in mind for future important changes):
When running a SPARQL query with a large result set it can easily blow up the local storage size used by YASGUI utils
storagenpm package: https://github.com/zazuko/Yasgui/blob/main/packages/utils/src/Storage.tsIt gives a misleading message for non-savvy users: "Quota limit exceeded". It is not clear it's due to the local storage size, it could be interpreted as a response from the SPARQL endpoint (e.g. query planning freaking out)
Note the
storenpm package last release was 8 years ago, it is only available as commonJS, not modern ES moduleMigrating to a more modern and scalable solution could be nice in the future (not a priority, but to keep in mind for future important changes):
store, IndexedDB can store hundreds of MB of structured data in the browser with fast access, and reduces the amount of dependencies