Does someone have a code example on how they solve...
# singer-tap-development
n
Does someone have a code example on how they solved a similar issue? I would need to load data from a "list" endpoint first and then go through all the new entries and do a "single get" query on each of them as well, as some of the data is only accessible in the single object endpoint. Example: • Get all invoices: https://docs.bexio.com/#tag/Invoices/operation/v2ListInvoices (does not have the list of positions) • Get one invoice https://docs.bexio.com/#tag/Invoices/operation/v2ShowInvoice (does have the list of positions) So basically I would need to query all invoices first and then query each invoice individually after that.