FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date. Fauna accounts created after August 21, 2024 must use FQL v10. These accounts will not be able to run FQL v4 queries or access the v4 Dashboard. For more details, see the v4 EOL announcement and migration guide. Contact support@fauna.com with any questions. |
ToString
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
ToString( value )
to_string( value )
ToString( value )
ToStringExpr( value )
ToString( value )
ToString( value )
Description
The ToString
function converts a value to a string, if possible.
Attempting to convert a value to a string which has no string representation results in an "invalid argument" error.
Parameters
Parameter | Type | Definition and Requirements |
---|---|---|
|
Any |
The value to attempt to convert to a String. |
Examples
The following query executes an array of independent ToString
operations and returns the results in an array. The result array
position matches the execution array position. The first operation
converts a floating point literal to a string. The second operation
takes an integer literal and converts it to a string. The third
operation converts a date to a string.
[
'1234.5678',
'true',
'2020-07-06',
'null',
'2020-07-06T12:34:56.789Z'
]
['1234.5678', 'true', '2018-06-06', 'null', '2015-02-20T06:30:00Z']
[1234.5678 true 2018-06-06 null null 2015-02-20T06:30:00Z]
Arr(StringV(1234.5678), StringV(true), StringV(2018-06-06), StringV(null), StringV(2015-02-20T06:30:00Z))
["1234.5678", "true", "2018-06-06", "null", "2015-02-20T06:30:00Z"]
[
'1234.5678',
'true',
'2020-07-06',
'null',
'2020-07-06T12:34:56.789Z'
]
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!