Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

graphql-client

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql-client - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

12

index.js

@@ -1,18 +0,18 @@

module.exports = function(url) {
module.exports = function(params) {
return {
query: function(query, params) {
query: function(query, variables) {
var headers = new Headers();
headers.append("Content-Type", "application/json");
fetch(url, {
return fetch(params.url, {
method: "POST",
body: JSON.stringify({
query: bedQuery
query: query
}),
headers: myHeaders
headers: headers
}).then(function(res) {
return res.json()
}).then(searchActions.receive)
})
}
}
}
{
"name": "graphql-client",
"version": "1.0.0",
"version": "1.0.1",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc