graphql-typed-client
Version:
A tool that generates a strongly typed client library for any GraphQL endpoint. The client allows writing GraphQL queries as plain JS objects (with type safety, awesome code completion experience, custom scalar type mapping, type guards and more)
35 lines (31 loc) • 615 B
text/typescript
export interface InputF {
value: Int
maybeValue?: Int | null
valueList: Int[]
maybeValueList: (Int | null)[]
valueMaybeList?: Int[] | null
maybeValueMaybeList?: (Int | null)[] | null
nested: Int[][][]
maybeNested?: (((Int | null)[] | null)[] | null)[] | null
}
export interface Input {
some?: Int | null
other?: Int | null
another?: Int | null
}
/** single line description */
export interface InputD {
/** single line description */
another?: Int | null
}
/**
* multiline
* description
*/
export interface InputMD {
/**
* multiline
* description
*/
some?: Int | null
}