hasAlias | Returns true if the field passed in has the alias property. | input: string | ComposeFieldInput |
getField | Convenience method to construct fields in the correct format when using composeQuery() . Look in the data models section below for the structure of ComposeFieldInput . | input: string | ComposeFieldInput |
getFlattenedFields | Flatten a Salesforce record based on the parsed SOQL Query. this is useful if you have relationships in your query and want to show the results in a table, using . dot notation for the relationship field headings. | soql: Query | Subquery | FieldSubquery config?: SoqlComposeConfig |
isSubquery | Returns true if the data passed in is a subquery. | query: Query | Subquery |
isFieldSubquery | Returns true if the data passed in is a FieldSubquery. | value: any |
isWhereClauseWithRightCondition | Returns true if the value passed in is a WhereClause with an operator and right property | value: WhereClause |
isHavingClauseWithRightCondition | Returns true if the value passed in is a HavingClause with an operator and right property | value: HavingClause |
isWhereOrHavingClauseWithRightCondition | Returns true if the value passed in is a WhereClause or HavingClause with an operator and right property | value: WhereClause | HavingClause |
isValueCondition | Returns true if the value passed in has field , operator and value properties | value: Condition |
isValueWithDateLiteralCondition | Returns true if the value passed in has field , operator and value properties and has a literalType property that is DATE_LITERAL of ['DATE_LITERAL',...] | value: Condition |
isValueWithDateNLiteralCondition | Returns true if the value passed in has field , operator , value and dateLiteralVariable properties | value: Condition |
isValueFunctionCondition | Returns true if the value passed in has fn , operator and value properties | value: Condition |
isNegationCondition | Returns true if the value passed in has a openParen property and does not have fn , field , operator , value , and closeParen properties | value: Condition |
isValueQueryCondition | Returns true if the value passed in has field , operator and valueQuery properties and does not have a value property | value: Condition | ValueQueryCondition |
isOrderByField | Returns true if the value passed in has field property | value: OrderByClause |
isOrderByFn | Returns true if the value passed in has fn property | value: OrderByClause |
isGroupByField | Returns true if the value passed in has field property | value: GroupByClause |
isGroupByFn | Returns true if the value passed in has fn property | value: GroupByClause |