# Studio FAQs - set 3
1. **How to retrieve multiple data from the database?**
Create a [function](https://docs.yellow.ai/docs/platform_concepts/studio/build/code) and extract the data from the variable that [stored the DB response](https://docs.yellow.ai/docs/platform_concepts/studio/build/bot-variables#-4-store-and-access-variables-via-nodes).
Write
```
let records = data.variables.db_response.records
console.log(records, "records")
```
Log the result and check the data. After this you can use the data based on your use case.
2. **How to disable the carousel list after a button has been clicked?**
Go to the Carousel node and click the **settings** icon.

Enable **Disable action after click** and click **Save**.

3. **How to get the exact status code as our API Event Data explorer while getting API responses in a journey?**
Create a [function](https://docs.yellow.ai/docs/platform_concepts/studio/build/code) after the API call and apply the below code snippet.
```
ymLib.args.apiResponse.statusCode
```
4. **How to export/clone a journey to another bot?**
[Export the template of that journey](https://docs.yellow.ai/docs/platform_concepts/studio/build/Flows/exportflow#-1-export-bot-template) and [import it ](https://docs.yellow.ai/docs/platform_concepts/studio/build/Flows/exportflow#14-view-approved-template-in-marketplace)to the bot of your preference.