Twidget's conversion commands allow you to easily convert different data types to the required format. Below is a list of the available conversion commands and examples of how to use them.
The Convert to Text command converts the provided value to a text (string) format.
Examples:
123 converts to "123"
true converts to "true"
[1, 2, 3] converts to "[1, 2, 3]"
{"name": "John"} converts to "{\"name\": \"John\"}"
The Convert to Number command converts the provided value to a numerical format.
Examples:
"123" converts to 123
true converts to 1
false converts to 0
"12.34" converts to 12.34
The Convert to Boolean command converts the provided value to a boolean (true/false) format.
Examples:
"true" converts to true
"false" converts to false
1 converts to true
0 converts to false
"" converts to false
"text" converts to true
The Convert to Date command converts the provided value to a date format.
Examples:
"2021-12-31" converts to Fri Dec 31 2021
"12/31/2021" converts to Fri Dec 31 2021
1633039200000 (timestamp) converts to Fri Oct 01 2021
The Convert to Object command converts the provided value to an object format.
Examples:
'{"name": "John"}' converts to {"name": "John"}
'["1", "2", "3"]' converts to ["1", "2", "3"]
Any valid JSON string converts to its corresponding object
By utilizing these conversion commands, you can seamlessly transform data types to suit your specific requirements within Twidget.
Math
Twidget offers a variety of commands to manipulate numbers. Below are the math commands available, along with their descriptions, inputs, and outputs. Sum. Description: Adds together a list of numbers and returns the sum. - Inputs: - `numbers`: A list of numbers to be added together. - Output: A sin...
Database
Twidget offers many commands to manage data in your database. Below is a list of the available commands and their functionalities: Get Data. Retrieve an entry from a table. Get Multiple Data. Retrieve multiple entries from a table. Save Data. Save an object to a database table. Save Multiple Data. S...
Managing Files
Twidget offers a set of commands to manipulate files in your file store. Below are the descriptions and usage of each command to help you understand how to utilize them effectively. Get File. Retrieve a file via file path. Inputs: - `path`: The file path to retrieve the file from. Outputs: - `filena...
Connector Commands
Connector Commands allow you to integrate Twidget projects with external services such as Google Drive, Slack, OpenAI’s ChatGPT, and many others. These commands provide ready-made actions that communicate with third-party APIs, removing the need to manually create and maintain external HTTP requests...
Security
Twidget provides several built-in functions to enhance the security of your applications. Below is an overview of each security command, including its description, inputs, and outputs. Generate ID. Description: Generates a unique identifier. None - Type: Text Hash Text. Description: Hashes the provi...