Explore more
Data stores

Data stores

17min

Data stores allow you to store data from a or transfer data between individual or runs. You can use data stores to store data from apps during execution. Data stores are similar to a simple database.

How to create a data store

1

In the left sidebar, click Data stores.

Data stores

2

Click + Add data store.

Add data store

3

Enter settings for the new data store.

Add data store


Field

Description

Data store name

Enter the name for the data store. For example, Contacts.

Data structure

A data structure is a list of the columns for a table that indicates the column name and data type.

You have three options:

  • Select a data structure that has been already created
  • Leave the field empty
    If you don't select a data structure, the database will only contain the primary key. Such a database type is useful if you only want to save keys and are only interested in knowing whether or not a specific key exists in the database.
  • Add a new data structure
    Click the Add button to create a new data structure.

Data storage size in MB

Allocate the size for the data store from your total Internal data storage.

The reserved amount can be changed at any time.

The total internal data storage capacity depends on the plan you have purchased.



Manage the data structure of a data store

Add a new data structure

During the process of setting up a data store, you can set up a new data structure.

To set up the data structure while adding a data store, click the Add button for the Data structure field

You can access this dialog by clicking the Add button when creating or editing the data store:

Set up a data structure






Data structure name

Enter the name for the data structure.

The data structure name is its unique identifier and cannot be changed later.

Specification

There are two options for how you can specify the data store columns.

  • Click the Add item button to specify the properties of one column manually.

    Enter the Name and Type for the data store column and define the corresponding properties.

  • Use the Generator button to determine the columns from the sample data you provide.

    For example, the following JSON sample data creates three columns (name, age, phone number) with phone number as a collection of mobile and landline: { "name":"John", "age":30, "phone number": { "mobile":"987654321", "landline":"123456789" } }

Strict

If enabled, the data structure will be compared to the structure of the payload and if the payload contains extra items not specified in the data structure, the payload will be rejected.



Update the data structure of a data store

Be careful when updating the data structure of a data store. Before updating the structure, make a backup of the data.

Changes in the data structure of a data store might lead to unexpected results.

When you want to update the data structure of a data store, you should keep in mind that:

  • The data structure field names are unique identifiers of the data store columns. When you rename a field of a data structure, cannot retrieve the original data in the data store column, because they use a different column identifier.
  • You can update the data structure field label anytime without the effects mentioned in the previous point.
  • The changes to the data store structure apply only to the new data you put in the data store. doesn't change or validate the original data to fit the updated structure.

The best approach to updating the data structure of a data store is to create temporary fields with copies of your data. Update the data in the temporary fields and make sure they conform to the final data structure.

Example data store

Example data structure


Rename a field of the data store structure

You can update the Label of a data store structure field anytime.

To change the data store structure field Name:

2

Create a field in your data store with the new name.

3

Copy all data from the oroginal column to the new column.

4

Update all data in the original column to empty fields. This step prevents storing the data in the original column alongside the data in the new column.

You have put the data from the original data store column into the new data store column. In addition, you have a data store backup to check that the update was successful.

Change the type of a field of the data store structure

2

Either create a temporary field for the updated data type, or you can skip this step and update the field type in place.

3

Use a conversion function to update the type of all values in the data store column to the new type. For example, to convert text to date, use the parseDate function.

Actions

Manage records in a data store

 allows you to view, update, and delete the records in your data store.

1

In the left sidebar, click Data stores.

2

Click Browse next to your data store.

Browse data stores


Troubleshooting