aditya_goyal
10/26/2021, 4:06 PMmeltano select tap-salesforce --list --all, but that is not going to give me the right output, thanks!aditya_goyal
10/26/2021, 4:07 PMedgar_ramirez_mondragon
10/26/2021, 11:42 PMselect: ["!my_stream.*", "my_stream.prop1", "my_stream.prop2"] then any new properties will be deselected by default and should display as such (in red) in the output of meltano select tap-salesforce --list --all.
In the second case, if you only select certain streams select: ["my_stream1.*", "my_stream2.*"] then any new streams will be deselected by default and should display as such (in red) in the output of meltano select tap-salesforce --list --all .aditya_goyal
10/26/2021, 11:51 PMaditya_goyal
10/26/2021, 11:52 PMedgar_ramirez_mondragon
10/27/2021, 12:28 AMIs there any way to just select possible streams and not all the fields associated to them?Yes.
select: ["!my_stream.*", "my_stream.prop1", "my_stream.prop2"] will select deselect all properties associated with my_stream except for prop1 and prop2aditya_goyal
10/27/2021, 1:10 PM