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
{
"result": [
{
"id" : 1,
"name": "entry from ds 1"
}
]
}
Data Source 2
{
"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"
}
]
}