andrew_stewart
05/11/2022, 10:28 PMtap-salesforce
, am i missing something with the following select config that is intended to filter out any custom salesforce properties (those that end with __c
) ?
select:
- Account.*
- RecordType.*
- Contact.*
- Opportunity.*
- '!*.*__c'
andrew_stewart
05/11/2022, 10:31 PMselect:
- Account.*
- RecordType.*
- Contact.*
- Opportunity.*
- '!Account.*__c'
- '!RecordType.*__c'
- '!Contact.*__c'
- '!Opportunity.*__c'
aaronsteers
05/11/2022, 10:51 PMaaronsteers
05/11/2022, 10:51 PMaaronsteers
05/11/2022, 10:52 PM'!*.*__c'
?andrew_stewart
05/12/2022, 3:19 AMandrew_stewart
05/12/2022, 3:22 AMaaronsteers
05/12/2022, 5:35 PMandrew_stewart
05/13/2022, 3:51 AMmeltano --environment=foo select …
adds the selection rules to the indicated environment, and I was messing with a couple environments so probably had a selection rule elsewhere that was overriding the one I was staring at 🤷♂️aaronsteers
05/13/2022, 7:56 PM