Jason Rogers
Jason Rogers
### Description This issue appears to affect Chrome only, and happens if (1) your `lwc` version is >= 2.3.7, (2) you render an LWC component using `lwc:dom="manual"`, (3) your manually-constructed...
Since stardog.js ought to know the Stardog API, it ought to know that the endpoint for the `user.valid` call responds with an empty body, and it therefore ought to check...
There is already an issue for moving over to `import` syntax (#160), which TypeScript would handle out of the box, and we also already have type declarations for our exposed...
Currently, we import using CommonJS syntax: `const whatever = require('whatever');`. This actually creates issues in some cases for consumers of stardog.js who also use webpack, since one of our transitive...
A number of the stardog.js methods accept 5 or more (often optional) arguments, making it necessary to do things like pass `undefined` for intermediate arguments, remember the argument order while...
This PR will allow us to finally release a v2 of stardog.js. I'm putting it up now mainly for discussion, though if we decide that it's mergeable as-is, that's fine...
See, e.g., here: https://www.stardog.com/docs/#_using_query_hints (the examples here do not cover all query hints). It would be nice for the SPARQL language server to be aware of these, to catch typos...
See comment here: https://github.com/jmrog/vscode-nuget-package-manager/issues/29#issuecomment-341770357.
In some cases, functions return with a large block wrapped in `new Promise((resolve, reject) => { . . . }`, when it probably isn't necessary (I'm not sure because I'm...