The objectInfos field of ObjectInfo type returns object metadata, such as whether an object is MRU enabled and whether an object is searchable or updateable. You can also retrieve picklist values when querying object metadata.
The response includes metadata describing fields, child relationships, record type, and theme. You can request up to 2,000 objects in a single object metadata request.
Pass in objectInfos in the uiapi field. For example, use apiNames: ["Account"] to return the object info for the account object.
The objectInfos type is an array of ObjectInfo types with these arguments.
apiNames - A list of up to 2,000 object API names of supported objects. It’s non-nullable, which means you can expect an array of zero or more items.
locale - Specifies which locale to use for the object’s labels. Defaults to the user’s locale. This argument is available in API v60.0 and later.
objectInfoInputs - Get picklist values along with object metadata without making multiple calls. This argument is available in API v65.0 and later. The objectInfoInputs argument is an array of ObjectInfoInput types with these arguments.
apiName - The API name of a supported object. This argument is required.
recordTypeIds - A list of record type IDs. An empty list, [], retrieves picklist values for all record types for the apiName object.
fieldNames - A list of fields to filter on. The query returns picklist values only for the fields specified. A null or empty list, [], retrieves picklist values for all picklist fields on the object.
To retrieve object metadata without picklist values, you can either omit the objectInfoInputs argument or provide only apiName in the objectInfoInputs argument, such as objectInfoInputs: {apiName: "Account"}.
Note
ObjectInfo Types and Fields
The ObjectInfo type includes fields for the object metadata.
creatable - Indicates whether the object can be created.
custom - Indicates whether the object is a custom object.
defaultRecordTypeId - The ID for the default record type for this object. If there isn’t a default record type, this value is the master record type, which is 012000000000000AAA. If the record is a nested record (for example, in a request for an Account, the User object is a nested record), the value is null.
deletable - Indicates whether the object can be deleted.
dependentFields - The object’s dependent fields returned as a list of key and values.
feedEnabled - Indicates whether the object can have feeds.
fields - A field’s metadata. This map only contains fields relevant to the requested layout and mode. It’s non-nullable, which means you can expect an array of zero or more items.
keyPrefix - The key prefix for IDs of this object.
label - The object’s display label.
labelPlural - The plural form of the object’s display label.
layoutable - Indicates whether the object can have a layout.
mruEnabled - Indicates whether the object can appear in Most Recently Used lists.
nameFields - A list of the API names of the fields used to identify the name field for standard and custom objects. Typically there’s one name field per object, except when the object has FirstName and LastName fields.
queryable - Indicates whether the context user can query the object.
recordTypeInfos - A list of record type information about the record type. All record types are visible whether the user has access to them.
searchable - Indicates whether the object can be searched.
updateable - Indicates whether the object can be updated.
locale - The locale for the object’s labels. This field is available in API v60.0 and later.
ChildRelationship
The ChildRelationship type represents the child relationship on a parent object. For example, you can return data about related object records on a record’s detail page. GraphQL API enables you to query the object info of all the child relationships by using the objectInfo field.
childObjectApiName - The API name of the child object.
fieldName - The field on the child object that contains the reference to the parent object. Salesforce uses a reference field to store the ID of the related parent record.
junctionIdListNames - The names of the JunctionIdList fields associated with an object. Each ID is a polymorphic key, which is an ID that can refer to more than one type of object.
junctionReferenceTo - A collection of object names that the polymorphic keys in the junctionIdListNames property can reference.
relationshipName - The name of the relationship. The name is the plural form of the child object name. For example, Account has a relationshipName for each object: Assets, Cases, and Contacts.
DependentField
The DependentField type contains information about a dependent field that relies on the value of a controlling field. For example, a picklist with a list of cities depends on a controlling picklist field that shows a list of countries. Selecting a value on a controlling field filters down the values in a dependent field.
calculated - Indicates whether the field is a custom formula field.
compound - Indicates whether the field is a top-level compound field. If the dataType is Location, this value is usually false.
compoundComponentName - If the field is a component field of a compound field, the value is the normalized component name, otherwise the value is null. For example, if the field represents BillingStreet of an Address compound field, this value contains Street.
compoundFieldName - If the field is a component field of a compound field, compoundFieldName contains the top-level compound field. Otherwise, the value is null.
controllerName - If the field is a dependent picklist, controllerName is the name of the field that controls the values of the picklist.
controllingFields - If the field is a dependent picklist, controllingFields is a list of fields that control the values in the picklist. When there’s a hierarchy of controlling fields, the list starts with the immediate parent and moves up the tree.
creatable - Indicates whether the field can be created.
custom - Indicates whether the field is a custom field.
dataType - The field type that the DataType enum provides.
defaultedOnCreate - Indicates whether the field is automatically assigned a default value during record creation. This field is available in API v67.0 and later.
filterable - Indicates whether the field is filterable. If true, then you can specify this field in the where argument.
filteredLookupInfo - If the field is a reference field type with a lookup filter, this value contains the lookup information. See FilteredLookupInfo.
highScaleNumber - Indicates whether the field stores numbers to 8 decimal places regardless of what’s specified in the field details.
htmlFormatted - Indicates whether the field is formatted for HTML and is encoded for display in HTML. Also indicates whether a field is a custom formula field that has an IMAGE text function.
inlineHelpText - The text that appears in the field-level help hover text.
label - Text label that appears next to the field in the Salesforce user interface.
nameField - Indicates whether the field is a name field.
polymorphicForeignKey - Indicates whether the field is a foreign key over a domain of multiple objects.
precision - For double fields, indicates the maximum number of digits that can be stored, on both sides of the decimal point.
reference - Indicates whether the field is a foreign key to another record. A reference field contains an ID value that points to a unique record (usually the parent record) on another object.
referenceTargetField - For indirect lookup relationships on external objects, this property is the target custom field of the referenced object.
referenceToInfos - For fields that refer to other objects, this list includes information about the object types and name fields of the referenced objects. See ReferenceToInfo.
relationshipLabel - The localized label of the relationshipName field.
relationshipName - The name of the relationship, if this relationship is a master-detail relationship field.
required - Indicates whether the field is required when creating or editing a record.
scale - For double fields, indicates the number of digits to the right of the decimal point.
searchPrefilterable - Indicates whether you can include a foreign key (relationship field) in the where argument.
sortable - Indicates whether the field is sortable. If true, then you can specify the field in an orderBy argument.
updateable - Indicates whether the field can be edited.
Field Types
Two field types, StandardField and PicklistField, implement the Field interface.
StandardField
The StandardField type implements the Field interface and contains the same fields as the Field interface.
PicklistField
The PicklistField type implements the Field interface, contains the same fields as the Field interface, and has an additional picklistValuesByRecordTypeIDs field.
PicklistField Type
1type PicklistField{2 //same fields as Field interface3 picklistValuesByRecordTypeIDs: [PicklistValueByRecordTypeIDs]4}
For picklist fields, the picklistValuesByRecordTypeIDs field is a list of picklist values by record types.
PicklistValueByRecordTypeIDs
The PicklistValueByRecordTypeIDs type describes all the picklist values for a record.
The PicklistValueByRecordTypeIDs type has these fields.
recordTypeID — The ID of the record type.
controllerValues — The values in a controlling field that determine which dependent picklist values are available in a dependent picklist relationship.
picklistValues — The picklist values for the record.
defaultValue — The default picklist value for the record.
ControllerValues
The ControllerValues type describes the values in a controlling field that determine which dependent picklist values are available in a dependent picklist relationship.
available - Indicates whether this record type is available to the context user when creating a record.
defaultRecordTypeMapping - Indicates whether this record type mapping is the default for the associated object.
master - Indicates whether this record type is the master record type. The master record type is the default record type that’s used when a record has no custom record type associated with it.
name - The record type’s label name.
recordTypeId - The ID of the record type.
Enumeration Types
The Field interface contains several enum definitions for the dataType and extraTypeInfo fields.
DataType
The DataType enumeration describes the data type for the field.