Newer Version Available

This content describes an older version of this product. View Latest

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.

Supported SOAP Calls

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

Note

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/v65.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/v65.0/tooling/query?q=SELECT+name,+label,+value+FROM+FormulaOperator+WHERE+durableId='PLUS' );
2req.setMethod('GET');