gql-string-rebuilder
v1.0.0
Published
rebuild graphql query string from gql object
Downloads
3
Readme
gqlStringRebuilder
Graphql string rebuilder
This module is used to get the query string from a querr object obtained from graphql-tag
exemple:
import gql from 'graphql-tag';
import stringRebuilder from 'gqlStringRebuilder';
const query = gql`{ Cars(brand: "Honda"} { id, name, price } }`;
const queryString = stringRebuilder(query);
console.log(queryString);
----> { Cars(brand: "Honda"} { id, name, price } }