Can a tap get a list of the entities that are conf...
# singer-tap-development
m
Can a tap get a list of the entities that are configured under the “select” key in a plugin’s configuration?
a
meltano select <tap> --list
I think
m
I mean from within a tap
As opposed to needing to define a new config property to ask for an array of those
a
self.catalog.streams
or
self.catalog_dict.keys()
or
self.streams
for instantiated stream classes all within the context of the
Tap
class I think
these might not be exact since its off top but are probably close
m
Thank you!