SalesforceFieldUpdate Input Object
Fields
#
fieldName
String !
Non-null
The Salesforce field API name to update (e.g., Description, Amount, IsActive)
fieldValue
String !
Non-null
The value to set. Format based on field type:
- Text: "My text" (plain string)
- Number/Currency: "5000" or "99.99" (parsed as number)
- Boolean: "true" or "false" (parsed as boolean)
- Date: "2024-12-31" (ISO format string)
- To clear a field: "null" (parsed as null)
- JSON text: Objects/arrays are stored as-is in text fields
Usages
#
References
#
- Argument fieldsToUpdate of field salesforceUpdate from type Mutation
- Argument fieldsToInsert of field salesforceInsert from type Mutation
Previous
RuleSetInput