gql-sketch

1.0.3 • Public • Published

gql-sketch

npm Sketch.app

Minimal graphql client for Sketch.

import Client from 'gql-sketch';
 
Client('http://example.com/my-graphql-endpoint').query(`
  {
    allFilms {
      films {
        title,
        actor,
        catchphrase
      }
    }
  }
`).then(
  ({ allFilms }) => {
    log('result!');
    log(allFilms.films[0].title);
  }
)

Readme

Keywords

none

Package Sidebar

Install

npm i gql-sketch

Weekly Downloads

1

Version

1.0.3

License

MIT

Last publish

Collaborators

  • jongold