@magic-libraries/gql
@magic-libraries/gql
@magic-client gql library.graphql query handler for @magic
installation
npm install --save-exact @magic-libraries/gqlusage
in a page/component, just use the lib.gql functions
const query = lib.gql(`query getHuman($id: Int = 3) {human(id: $id) {nameheight}}`)const jsonString = query({ id: 1 })
jsonString now is valid json:
{'query': `query getHuman($id: Int = 3) {human(id: $id) {nameheight}}`,'variables': { id: '1' },'operationName':'getHuman'}
source
the source for this page is in the example directory, and gets built and published to github using @magic/core