Skip to main content
Skip table of contents

Merge Data Sources

The data source type Merge Data Sources lets you combine multiple data source to one. This is especially helpful to build workarounds for data sources that have pagination in place.

Datasources to merge

Here you select which data sources should be combined. Internally we merge the result of each data source together.

Example

Do get good results while merging multiple data sources each should have the same structure in JSON.

For example:

Data Source 1

JSON
{ 
  "result": [
    { 
      "id" : 1,
      "name": "entry from ds 1"
    }
  ]
}

Data Source 2

JSON
{ 
  "result": [
    { 
      "id" : 2,
      "name": "entry from ds 2"
    }
  ]
}

Will be merged to

Merged Data Source

CODE
{ 
  "result": [
   { 
      "id" : 1,
      "name": "entry from ds 1"
    },
    { 
      "id" : 2,
      "name": "entry from ds 2"
    }
  ]
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.