Hello, I have been working on custom extractor. I ...
# troubleshooting
c
Hello, I have been working on custom extractor. I followed this workaround to have nested replication key https://github.com/meltano/sdk/issues/1198 But then I can't select other nested fields. Let's say I have
created_at
replication key and stream name is
sample
then following selection is not working
Copy code
select:
    - sample.raw.*
    - sample.created_at
    - sample.column2
It only output
created_at
and
column2
Following selection works and gives all the fields
Copy code
select:
    - sample.*
I can see the nested selection through this command.
meltano select tap-extractor --list
Anyone faced this issue?
Found an issue. It should be
Copy code
select:
    - sample.raw
    - sample.raw.*
    - sample.created_at
    - sample.column2