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.

Constructors

Link copied to clipboard
constructor(name: String, type: GraphQLType, defaultValue: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard