File: basic.graphql

package info (click to toggle)
golang-github-vektah-gqlparser 2.5.31-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,120 kB
  • sloc: javascript: 204; sh: 46; makefile: 11
file content (11 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
# FooBarQuery comment
query FooBarQuery ($after: String!) {
    # fizzList comment
    fizzList(first: 100, after: $after) {
        # nodes comment
        nodes {
            # id comment
            id
        }
    }
}