1extend type Query { 2 primitiveObject: [Primitive!]! 3 primitiveStringObject: [PrimitiveString!]! 4} 5 6type Primitive { 7 value: Int! 8 squared: Int! 9} 10 11type PrimitiveString { 12 value: String! 13 doubled: String! 14 len: Int! 15}
View as plain text