Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

FormulaOperator

Represents an operator used when building a formula, including examples and uses. This object is available in Tooling API version 39.0 and later.

In API version 45.0 and later, only users with the “ViewSetup and Configuration” permission can access FormulaOperator.

Note

Supported SOAP Calls

query()

Supported REST HTTP Methods

GET

Fields

Field Details
DurableId
Type
string
Properties
Filter, Group, Nillable, Sort
Description
Unique identifier for the field. Always retrieve this value before using it, as the value isn’t guaranteed to stay the same from one release to the next. To simplify queries, use this field.
Label
Type
string
Properties
Filter, Group, Nillable, Sort
Description
The formula operator label that appears in the user interface.
Name
Type
string
Properties
Filter, Group, Nillable, Sort
Description
The name of the formula operator.
Value
Type
string
Properties
Filter, Group, Nillable, Sort
Description
The value of the formula operator.

Query Examples

To get all formula operators available in FormulaOperator:
1req.setEndpoint('http://instance.salesforce.com/services/data/v68.0/tooling/query?q=SELECT+name,+label,+value+FROM+FormulaOperator );
2req.setMethod('GET');
To get formula operators by ID:
1req.setEndpoint('http://instance.salesforce.com/services/data/v68.0/tooling/query?q=SELECT+name,+label,+value+FROM+FormulaOperator+WHERE+durableId='PLUS' );
2req.setMethod('GET');