Skip to main content

Conversion functions

ensure_field()

Ensures the existence of a field and returns its value or a typed nil if it doesn’t exist.

Arguments

Returns

This function returns the value of the specified field if it exists, otherwise it returns a typed nil.

Examples

Handle missing fields

In this example, the value of show_field is nil because the myfield field doesn’t exist.
Run in Playground

Access existing fields

In this example, the value of newstatus is the value of status because the status field exists.
Run in Playground

Future-proof queries

In this example, the query is prepared for a field named upcoming_field that is expected to be added to the data soon. By using ensure_field(), logic can be written around this future field, and the query will work when the field becomes available.

tobool()

Converts input to boolean (signed 8-bit) representation.

Arguments

  • Expr: Expression that will be converted to boolean.

Returns

  • If conversion is successful, result will be a boolean. If conversion isn’t successful, result will be false

Examples

Run in Playground
  • Result:

todatetime()

Converts input to datetime scalar.

Arguments

  • Expr: Expression that will be converted to datetime.

Returns

If the conversion is successful, the result will be a datetime value. Else, the result will be false.

Examples

Run in Playground
  • Result

todouble(), toreal()

Converts the input to a value of type real. (todouble() is an alternative word to toreal())

Arguments

  • Expr: An expression whose value will be converted to a value of type real.

Returns

If conversion is successful, the result is a value of type real. If conversion is not successful, the result returns false.

Examples

Run in Playground
  • Result:

tostring()

Converts input to a string representation.

Arguments

  • Expr: Expression that will be converted to string.

Returns

If the Expression value is non-null, the result will be a string representation of the Expression. If the Expression value is null, the result will be an empty string.

Examples

Run in Playground
  • Result:

totimespan

Converts input to timespan scalar.

Arguments

  • Expr: Expression that will be converted to timespan.

Returns

If conversion is successful, result will be a timespan value. Else, result will be false.

Examples

Run in Playground
  • Result

tohex()

Converts input to a hexadecimal string.

Arguments

  • Expr: int or long value that will be converted to a hex string. Other types are not supported.

Returns

If conversion is successful, result will be a string value. If conversion is not successful, result will be false.

Examples

Run in Playground
  • Result:

tolong()

Converts input to long (signed 64-bit) number representation.

Arguments

  • Expr: Expression that will be converted to long.

Returns

If conversion is successful, result will be a long number. If conversion is not successful, result will be false.

Examples

Run in Playground
  • Result:

dynamic_to_json()

Converts a scalar value of type dynamic to a canonical string representation.

Arguments

  • dynamic input (EXpr): The function accepts one argument.

Returns

Returns a canonical representation of the input as a value of type string, according to the following rules:
  • If the input is a scalar value of type other than dynamic, the output is the app of tostring() to that value.
  • If the input in an array of values, the output is composed of the characters [, ,, and ] interspersed with the canonical representation described here of each array element.
  • If the input is a property bag, the output is composed of the characters {, ,, and } interspersed with the colon (:)-delimited name/value pairs of the properties. The pairs are sorted by the names, and the values are in the canonical representation described here of each array element.

Examples

Run in Playground
  • Result:

isbool()

Returns a value of true or false if the expression value is passed.

Arguments

  • Expr: The function accepts one argument. The variable of expression to be evaluated.

Returns

Returns true if expression value is a bool, false otherwise.

Examples

Run in Playground
  • Result:

toint()

Converts the input to an integer value (signed 64-bit) number representation.

Arguments

  • Value: The value to convert to an integer.

Returns

If the conversion is successful, the result will be an integer. Otherwise, the result will be null.

Examples

Run in Playground