Skip to main content

SalesforceField

Metadata for one field on a Salesforce object.

type SalesforceField {
name: String
label: String
type: String
custom: Boolean
nillable: Boolean
updateable: Boolean!
createable: Boolean!
inlineHelpText: String
}

Fields

SalesforceField.name ● String scalar

API name of the field, e.g. Industry or Region__c.

SalesforceField.label ● String scalar

Display label of the field.

SalesforceField.type ● String scalar

Salesforce field data type, e.g. "string", "picklist", "reference".

SalesforceField.custom ● Boolean scalar

True when the field is a custom (non-standard) field.

SalesforceField.nillable ● Boolean scalar

True when the field accepts null.

SalesforceField.updateable ● Boolean! non-null scalar

True when the field can be written on update.

SalesforceField.createable ● Boolean! non-null scalar

True when the field can be set on create.

SalesforceField.inlineHelpText ● String scalar

Salesforce inline help text for the field, when set.

Member Of

SalesforceLookupField object