git.sr.ht/~sircmpwn/gqlgen@v0.0.0-20200522192042-c84d29a1c940/codegen/testserver/slices.graphql (about)

     1  extend type Query {
     2      slices: Slices
     3      scalarSlice: Bytes!
     4  }
     5  
     6  type Slices {
     7    test1: [String]
     8    test2: [String!]
     9    test3: [String]!
    10    test4: [String!]!
    11  }
    12  
    13  scalar Bytes