You are viewing documentation for a previous version of this software.

Switch to the latest stable version.

InputValue


ENUM

InputValue

Swift
1public indirect enum InputValue

Represents an input value to an argument on a GraphQLField's FieldArguments.

Cases

scalar(_:)

Swift
1case scalar(ScalarType)

A direct input value, valid types are String, Int Float and Bool. For enum input values, the enum cases's rawValue as a String should be used.

variable(_:)

Swift
1case variable(String)

A variable input value to be evaluated using the operation's variables dictionary at runtime.

list(_:)

Swift
1case list([InputValue])

A GraphQL "List" input value.

object(_:)

Swift
1case object([String: InputValue])

A GraphQL "InputObject" input value. Represented as a dictionary of input values.

none

Swift
1case none

A null input value.

Feedback

Edit on GitHub

Forums