Socket
Book a DemoInstallSign in
Socket

nanographql

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nanographql

Tiny graphQL client library

latest
Source
npmnpm
Version
2.0.0
Version published
Maintainers
1
Created
Source

nanographql stability

npm version build status downloads js-standard-style

Tiny graphQL client library. Does everything you need with GraphQL 15 lines of code.

Usage

var gql = require('nanographql')

var query = gql`
  query($name: String!) {
    movie (name: $name) {
      releaseDate
    }
  }
`

try {
  var res = await fetch('/query', {
    body: query({ name: 'Back to the Future' }),
    method: 'POST'
  })
  var json = res.json()
  console.log(json)
} catch (err) {
  console.error(err)
}

API

query = gql(string)

Create a new graphql query function.

json = query([data])

Create a new query object that can be sent as application/json to a server.

License

MIT

Keywords

graphql

FAQs

Package last updated on 17 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts