ArgsOptions


interface ArgsOptions extends BaseTypeOptions {
  name?: string
  description?: string
  type?: () => any

  // inherited from graphql/packages/graphql/lib/BaseTypeOptions
  nullable?: boolean | NullableList
  defaultValue?: T
}

Properties

Property Description
name?: string

Name of the argument.

description?: string

Description of the argument.

type?: () => any

Function that returns a reference to the arguments host class.