Random question, so let me know if I should post e...
# getting-started
a
Random question, so let me know if I should post elsewhere, but basically I would like to list just the objects for different taps but I don't see anything in the documentation for that. I have been using
meltano select tap-salesforce --list --all
, but that is not going to give me the right output, thanks!
Longer term goal is to use this command to see if some object has been added through the tap so I can reach out to vertical and figure out if we need to ingest!
e
Hi @aditya_goyal! So if I understand correctly, you want to know when 1. a new property is added to a stream? 2. or a new stream is added in the source? In the first case, if you only select certain properties
select: ["!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
.
a
Yeah good call, I want to know when a new stream is added to a source, thank you for correcting my vocabulary
This is super helpful! Is there any way to just select possible streams and not all the fields associated to them?
e
Is 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
prop2
a
Ooo I see, thanks. Missed the ! So got confused. Sorry!