We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2940cc0 commit 95a07a4Copy full SHA for 95a07a4
README.md
@@ -350,11 +350,11 @@ import { jsonToGraphQLQuery } from 'json-to-graphql-query';
350
const query = {
351
query: {
352
Posts: {
353
+ title: true
354
__on: {
355
__fragmentName: "ConfigurablePost",
356
id: true
- },
357
- title: true
+ }
358
}
359
360
};
@@ -366,10 +366,10 @@ Resulting `graphql_query`
366
```graphql
367
query {
368
Posts {
369
+ title
370
... on ConfigurablePost {
371
id
372
- title
373
374
375
```
0 commit comments