...

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

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

     1# query root comment
     2query ($first: Int = 30, $after: String!) {
     3    # searchCats comment
     4    searchCats(first: $first, after: $after) {
     5        # nodes comment
     6        nodes {
     7            # id comment
     8            id
     9            # name comment
    10            name
    11        }
    12    }
    13}

View as plain text