Hello I am trying to get ticket conversations of f...
# singer-taps
s
Hello I am trying to get ticket conversations of freshdesk. Considering tickets as parent and conversations as child . I am trying to run using elt but it didn't pick up the conversations. Can you help me with right details. Example which am trying - meltano elt tap-freshdesk target-freshdesk-s3-parquet --full-refresh --select tickets conversations
e
I think the right relationship is with
tickets_detail
rather than
tickets
. And you probably want to use a flag for each selected stream:
--select=tickets_detail --select=conversations
.
s
Thank you ! But how I can parse while running ? meltano elt tap target --full-refresh --select=tickets_detail --select=conversations I tried above but am sure it's not the right way😀
e
parse while running
sorry, I'm not sure what is meant by this 😅
I tried above but am sure it's not the right way
What error or unexpected behavior did you get?
s
I means as below, how I can run meltano elt tap-freshdesk target-freshdesk-s3-parquet --full-refresh --select=tickets_detail --select=conversations
e
You probably want to run
Copy code
meltano elt tap-freshdesk target-freshdesk-s3-parquet --full-refresh --select='tickets_detail.*' --select='conversations.*' ---state-id=<your state id>