18 lines
362 B
GraphQL
18 lines
362 B
GraphQL
### This file was generated by Nexus Schema
|
|
### Do not make changes to this file directly
|
|
|
|
type DeclarativeWrappingOutput {
|
|
someList: [String]
|
|
someListOfLists(int: Int!): [[String!]!]
|
|
someNullField(input: InlineInputType): String
|
|
someRequiredField: String!
|
|
}
|
|
|
|
input InlineInputType {
|
|
abc: Int!
|
|
}
|
|
|
|
type Query {
|
|
someField: DeclarativeWrappingOutput!
|
|
}
|