You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be cool if we could join multiple DataSources on each other, based on a shared value.
Some things to consider:
Duplicate field names should be resolvable by adding the data source id (or an alias) in front of the field (a.field_name)
A DataSource needs to support joining (introduce an interface). To avoid the n+1 problem when joining tables it would be helpful if data sources could retrieve data based on the join data. This way it should be able to retrieve the correct amount of data with the limit and offset.
Sorting and filtering will be challenging if it happens on multiple data sources at a time. Getting the limit and offset right might not even be possible.
In order for this to be implemented; we need real life examples to reproduce.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
It would be cool if we could join multiple DataSources on each other, based on a shared value.
Some things to consider:
a.field_name
)In order for this to be implemented; we need real life examples to reproduce.
Beta Was this translation helpful? Give feedback.
All reactions