-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Source Asana: Add dbt converter #53
Source Asana: Add dbt converter #53
Conversation
WITH tmp AS ( | ||
SELECT | ||
t.gid as id, | ||
t.archived, | ||
t.created_at, | ||
t.current_status, | ||
t.due_date, | ||
t.modified_at, | ||
t.name, | ||
JSON_QUERY(t.owner, '$.gid') as owner_id, | ||
t.public, | ||
JSON_QUERY(t.team, '$.gid') as team_id, | ||
JSON_QUERY(t.workspace, '$.gid') as workspace_id, | ||
t.notes | ||
FROM | ||
{{ source('source_asana', 'projects') }} t | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice start @pangeran-bottor you can use Chatgpt to translate to snowflake and postgres.
Nice @pangeran-bottor I'm gonna review tomorrow! Sorry the delay |
@pangeran-bottor it looks good, missing a couple of models. |
Thanks for the help @marcosmarxm |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot @pangeran-bottor the model is working now :)
closes #9