ToolJet allows you to execute various [actions](/docs/actions/show-alert) within RunJS queries. This guide outlines the syntax and examples for each action.
### Run Query
To trigger a query, you can use the below functions:
```js
queries.getSalesData.run()
// replace getSalesData with your query name
```
or
```js
await actions.runQuery('getSalesData')
// replace getSalesData with your query name
```
**Example:**
In the screenshot below, we are triggering two different queries using two different syntax available for `Run Query` action.
In the previous section, we saw how we can trigger queries. Once the queries are triggered, if you want to immediately use the data returned by the query inside the RunJS query, you can use the `getData()`, `getRawData()` and `getLoadingState()` functions:
#### Trigger a query and retrieve its data:
```js
await queries.getSalesData.run();
// replace getSalesData with your query name
let value = queries.getSalesData.getData();
// replace getSalesData with your query name
```
#### Trigger a query and retrieve its raw data:
```js
await queries.getCustomerData.run();
//replace getCustomerData with your query name
let value = queries.getCustomerData.getRawData();
// replace getCustomerData your with query name
```
#### Trigger a query and retrieve its loading state:
```js
await queries.getTodos.run()
//replace getTodos with your query name
let value = queries.getTodos.getLoadingState();
//replace getTodos with your query name
```
### Set Variables
To create a variable, you can use the below function:
`fileName` is the name that you want to give the file(string), `fileType` can be **csv**, **plaintext**, or **pdf** and `data` is the data that you want to store in the file.
Example for generating CSV file:
```js
actions.generateFile('csvfile1', 'csv', '{{components.table1.currentPageData}}') // generate a csv file named csvfile1 with the data from the current page of table
```
Example for generating Text file:
```js
actions.generateFile('textfile1', 'plaintext', '{{JSON.stringify(components.table1.currentPageData)}}') // generate a text file named textfile1 with the data from the current page of table (stringified)
```
Example for generating PDF file:
```js
actions.generateFile('Pdffile1', 'pdf', '{{components.table1.currentPageData}}') // generate a text file named Pdffile1 with the data from the current page of table
```
### Go to App
You can switch to a different application using the below action:
```javascript
actions.goToApp('slug',queryparams)
```
-`slug` can be found in URL of the released app after `application/` or in the share modal that opens up when you click on the `Share` button on the top-right of the app-builder
-`queryparams` can be provided in this format - `[ ['key1','value1' ], ['key2','value2'] ]`
### Show Alert
To show an alert using RunJS query, use the below code:
```js
actions.showAlert('<alerttype>' , '<message>' )
```
Available alert types are `info`, `success`, `warning`, and `danger`.
Example:
```js
actions.showAlert('error' , 'This is an error' )
```
### Run Multiple Actions From RunJS Query
To run multiple actions from a RunJS query, you'll have to use **async-await** in the function.
Here is a example code snippet for running the queries and showing alert after specific intervals. Check the complete guide on running queries at specified intervals **[here](/docs/how-to/run-query-at-specified-intervals)**.