-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
Description
It would be nice to have a simple construct to group import blocks like:
group 'employees' do
dependencies 'manager', 'software developers', 'testers'
endIn my use case I have to import several tables into one table which we call 'employees' like above. For each table in the source database I need an import block. So I have import blocks called 'manager', 'software developer' and 'testers'.
If I had an import block 'salary' that has a dependency on employees and not necessarily on any of the specific employee types, I would have to add each dependency to 'salary'. It would be much nicer to group the employee types to a block called 'employees' and then add this dependency to 'salary'.
@senny what do you think about this?
Reactions are currently unavailable