github.com/99designs/gqlgen@v0.17.45/codegen/testserver/singlefile/primitive_objects.graphql (about) 1 extend type Query { 2 primitiveObject: [Primitive!]! 3 primitiveStringObject: [PrimitiveString!]! 4 } 5 6 type Primitive { 7 value: Int! 8 squared: Int! 9 } 10 11 type PrimitiveString { 12 value: String! 13 doubled: String! 14 len: Int! 15 }