dgraph-js-http icon indicating copy to clipboard operation
dgraph-js-http copied to clipboard

A JavaScript HTTP client for Dgraph

Results 18 dgraph-js-http issues
Sort by recently updated
recently updated
newest added

Bumps [node-notifier](https://github.com/mikaelbr/node-notifier) from 8.0.0 to 8.0.2. Changelog Sourced from node-notifier's changelog. v8.0.2 Fixes potential security issue with non-escaping input parameters for notify-send. Commits 3420977 v8.0.2 a141580 patch: fixes security issue...

dependencies

Updating codeowners to map to GitHub Team for easier management

Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.22.4 to 7.23.2. Release notes Sourced from @​babel/traverse's releases. v7.23.2 (2023-10-11) NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release...

dependencies

Running `npm install` on current package gives unresolved peer dependency: ``` npm ERR! code ERESOLVE npm ERR! ERESOLVE could not resolve npm ERR! npm ERR! While resolving: [email protected] npm ERR!...

- Resolve depdendabot alert https://github.com/dgraph-io/dgraph-js-http/security/dependabot/47 - Need to find alternative to https://www.npmjs.com/package/request since this is no longer maintained - See https://github.com/request/request/issues/3142

For some reason when you run npm install dgraph-js-http --save It installs an old version of this lib. We need to fix that, for now we can update the readme....

I have a problem with my query ```javascript const query = `query getShopById($shopId: int) { node(func: type(Shop)) @filter(eq(shopId, $shopId)) { uid shopId domain } }`; const vars = { $shopId:...