Breadcrumbs

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.

Bildschirmfoto 2020-11-04 um 10.33.41.png

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

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