Types > __Field
Commerce APITypes__Field
__Field

Description

Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.

Fields

args: [__InputValue!]!


deprecationReason: String


description: String


isDeprecated: Boolean!


name: String!


type: __Type!


Used By

Types

__Type

Preview (typescript)

interface __Field {
args: __InputValue[]
deprecationReason?: string
description?: string
isDeprecated: boolean
name: string
type: __Type
}