GraphQLVariableInfo
data class GraphQLVariableInfo(val name: String, val type: GraphQLType, val defaultValue: String? = null)(source)
Parsed information about a single GraphQL operation variable.
Parameters
name
The variable name (e.g. "after", "first").
type
The GraphQL type of the variable.
defaultValue
The default value as a GraphQL literal string, or null.