ObjectTypeOptions


interface ObjectTypeOptions {
  description?: string
  isAbstract?: boolean
  implements?: Function | Function[] | (() => Function | Function[])
}

Properties

Property Description
description?: string

Description of the input type.

isAbstract?: boolean

If true, type will not be registered in the schema.

implements?: Function | Function[] | (() => Function | Function[])

Interfaces implemented by this object type.