gql-query-builder icon indicating copy to clipboard operation
gql-query-builder copied to clipboard

🔧 Simple GraphQL Query Builder

Results 29 gql-query-builder issues
Sort by recently updated
recently updated
newest added

The `gql.query` function takes an optional config object in which I can pass an `operationName` to name my query. This makes testing queries against a mock GQL server using MSW...

enhancement
help wanted

Hey, I found this library and is really nice and easy to use, however I found a case where I would need a help I need to write query like...

help wanted

After creating a custom mutation adapter it throws an error when I pass it's type on mutation function. In order to check if the problem was related with my adapter...

Hi! I get an error when I try to collect a query `TypeError: innerFields.forEach is not a function` For example, the query is as follows `[ { operation: 'someoperation', fields:...

We've been using `gql-query-builder` to replace hand-written queries in our service layer and so far it's working really well, thanks for creating this library. I noticed recently that the GraphQL...

help wanted

i have some query that need add Enum like that: ```GraphQL { diagnostic__defects(page: 1, orderBy: [{field: IS_FUNCTIONAL_DEFECT, order: DESC}]) { data { id name } } } ``` IS_FUNCTIONAL_DEFECT and...

help wanted

https://github.com/atulmy/gql-query-builder/blob/3dc80192f4f224fb140f643c6d5aff769dacc563/src/NestedField.ts#L11 Please refer to the above line, the type of variables in NestedField was set to IQueryBuilderOptions[], just wondering if that's correct at all? If we look at it here:...

Hello. Angular 10 show a warning for every dependency that is imported in ES5. From now, angular require ES6 module to optimize build process. More info here: https://angular.io/guide/build#configuring-commonjs-dependencies Gql-query-builder show...

enhancement
help wanted

I'm using gql-query-builder with an object that I insert into the query as a variable, however, `console.log` shows that all the fields in the object are being printed with single...

enhancement

throughout the code there are checks like; ```ts const value = typeof variable === "object" ? variable.value : variable; ``` however, `typeof` will also result in `"object"` if `value` is...

enhancement
help wanted