Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 427 Bytes

File metadata and controls

18 lines (12 loc) · 427 Bytes

gqlStringRebuilder

Graphql string rebuilder

This module is used to get the query string from a query 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 } }