Skip to content

4. Bulk Operations

Upkar Lidder edited this page May 7, 2019 · 1 revision

Bulk Operations

Add data to database

I used an online service called Mockaroo to generate 1000 user profiles. Each profile has an id, first name, last name, email, gender and their IP address.

{
      "id": 25,
      "first_name": "Griff",
      "last_name": "Di Baudi",
      "email": "[email protected]",
      "gender": "Male",
      "ip_address": "223.2.243.150"
    }

We will now upload these 1000 records into a new database.

1. Create a new database

1.1 Create a new data in the UI

Alternatively, you can use Http to create a new database as follows