jan_soubusta
02/28/2023, 4:45 PMdaniel_walker
02/28/2023, 5:19 PMjan_soubusta
02/28/2023, 5:21 PMextractors:
- name: tap-github
variant: meltanolabs
pip_url: git+<https://github.com/MeltanoLabs/tap-github.git>
- name: tap-github-repo
inherit_from: tap-github
config:
repositories:
- gooddata/gooddata-python-sdk
start_date: '2022-01-01'
select:
....
- pull_requests.userjan_soubusta
02/28/2023, 5:22 PMdaniel_walker
02/28/2023, 5:25 PMpublic_repo scope in my auth_token, but I do have push permissions to the repo. (I saw some issue about not being able to get certain streams unless you have push permissions, but these caused 403s).
I don't inherit, and do not have any selects in my meltano config though. Can quickly try the select on my end and see if it makes a difference, will let ya knowdaniel_walker
02/28/2023, 5:40 PMtarget-postgres, the first:
select:
- pull_requests.*
This synced all data, including users.
Then I ran it with:
select:
- pull_requests.user
And the user column (only thing synced) was empty json.
Then finally I tried:
select:
- pull_requests.user*
This synced the user column with data.
Not sure if this is the intended behaviour, but hope this works for you.jan_soubusta
02/28/2023, 6:44 PMaaron_phethean
02/28/2023, 7:48 PM