I need to populate my schema based on custom field...
# singer-tap-development
v
I need to populate my schema based on custom field data. Each Project has custom fields for each Item. Hierarchy of Streams is Teams -> Project -> CustomFields. Issue is that I need to know the list of ProjectIds during discovery. Is there anyway to "hook" into that logic. I really want to say inside of the
schema
method of my
ItemStream
class. Pull data from the Projects stream, send some api requests off based on this data. This would automatically query Teams as it's the parent of Projects. Right now I"m going to just code what I need into
schema
but if I could hook into the existing Parent/Child relationship easily it'd be slick