Would it be possible to use the parameters from the source collection in the target collection? I was thinking of being able to use the parameters in the source to the target collection.
source: {
collection: 'master/{someId}/detail',
},
targets: [
{
collection: 'details/{someId}/more_detail',
foreignKey: 'masterId',
},
],
Very basic example but the idea to use the someId in the target collection query.
Would it be possible to use the parameters from the source collection in the target collection? I was thinking of being able to use the parameters in the source to the target collection.
Very basic example but the idea to use the
someIdin the target collection query.