...

Text file src/github.com/vektah/gqlparser/formatter/testdata/source/query/fragment.graphql

Documentation: github.com/vektah/gqlparser/formatter/testdata/source/query

     1query FooBarQuery ($after: String!) {
     2    fizzList(first: 100, after: $after) {
     3        nodes {
     4            id
     5            ... FooFragment
     6            ... on Foo {
     7                id
     8            }
     9            ... {
    10                id
    11            }
    12            name
    13        }
    14    }
    15}
    16
    17fragment FooFragment on Foo {
    18    id
    19}

View as plain text