-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
cli: allow to track all tables/relationships #1418
Comments
Similar request on Discord but with a schema as an argument for the command. Maybe have the option to specify a specific schema or all? @shahidhk |
@dsandip my existing database has 2 schemas, I like to have track-all table and relationships automatically without any user intervention, Any way for it. atleast waiting that as a CLI command. |
@razakpm This should be available in one of the next couple of releases. |
@arvi3411301 Here is the usage: # track all tables in public schema
hasura metadata track --all-tables [--schema public]
# track all tables and relationships in public schema
hasura metadata track --all-tables --all-relationships
# track only 2 tables and relationships among them
hasura metadata track --table author --table article --all-relationships
# track all tables in schema1 and schema2
hasura metadata track --all-tables --schema schema1 --schema schema2
# track only one table table1 from schema1
hasura metadata track --table table1 --schema schema1 |
# untrack all tables in a schema
hasura metadata untrack --all-tables --schema schema1
# untrack only 1 table
hasura metadata untrack --table table1 --schema schema1 |
@shahidhk would it make sense to have this is a start-up options, so that it can be turned on from docker-compose? triggering a cli tool is not exactly convenient in a containerized environment. |
@yyunak You can track all tables once using the console, export the metadata and load it on the container using the migrations image. This metadata will be applied every time the server starts. See: https://docs.hasura.io/1.0/graphql/manual/migrations/auto-apply-migrations.html |
any progress on this?
|
@c19 This is still a work in progress. Some internals were changed in between and the current PR has to be reworked. |
We are looking at some architecture changes for code re-use in console and cli. The current PR needs to be re-worked. |
I think this feature is really needed/critical for anybody wanting to do
automatic functional testing.
Also, in your rework, it would be fantastic if we can rename relations. The
automatic way to name them fails with some words (eg, Series -> Sery) which
in our case will also impair our ability to do automatic testing if we
can't rename them with a cli.
Keep up the good work!
Thanks
Best
Benoit
…On Tue, Sep 10, 2019, 08:13 Shahidh K Muhammed ***@***.***> wrote:
We are looking at some architecture changes for code re-use in console and
cli. The current PR needs to be re-worked.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1418?email_source=notifications&email_token=AFSOI3QOL7JKOVJHW3Q4FADQI6FNDA5CNFSM4GRFS4Y2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6K3VAA#issuecomment-529906304>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AFSOI3XJKKLWER3DYK6TBUTQI6FNDANCNFSM4GRFS4YQ>
.
|
+1 to this. In my development environment, my workflow is currently:
I would really really really love :) a way for Hasura to start by tracking all views and relationships with admin-only default permissions, and then I only need to add to the metadata migrations to create non-admin permissions on specific views. |
this doesn't exist anymore |
Was this given up because of something else? |
This missing feature would help a lot for CI & CD automation. |
With a schema-first approach, and automating environment creation, not being able to track all tables and relations programatically makes for a very difficult CI/CD setup. Any plans to allow track all via CLI again? |
i was able to get most of the way there by using results of this api: https://hasura.io/docs/latest/api-reference/metadata-api/relationship/#pg-suggest-relationships but even after i track all the suggested relationships that api returns, there are still some more suggested in the console. i think this where the console puts together the suggestion list. wish that was in the backend instead haha: Line 97 in 3e83370
|
Thanks everyone for your comments and patience on this issue. We have been closely listening into all the feedback and requests from the community, and have been working on a re-imagined, re-architectured Hasura, that tackles many of these from ground up. |
Hasura cli v2.37.0, still unable to autotrack new tables or just use CLI to track new tables in DB. |
This is a script which track tables, relationships and functions: https://gist.github.com/poka-IT/0214518dc185370f52223c7dae2edffd Maybe it could help peoples reading here... |
@poka-IT Hey thanks for the script |
This is one version of this file I can found: https://git.duniter.org/nodes/duniter-squid/-/raw/a2da6881689701e48020a9ae6820801cd65ee5d0/scripts/export-migrations.sh Maybe need to adapt, remove the name from $1, and set your .env. Not so straight forward, sorry about that. Our .env.example:
|
<!-- The PR description should answer 2 important questions: --> ### What We want to decompose the engine routes so we can split `sql` out, so first we need to remove this abstraction, so instead the app is in charge of manually adding the routes it wants. Functional no-op. V3_GIT_ORIGIN_REV_ID: 1e1ea4f3797d289c91299765a7285c423fef00a3
When using Hasura with an existing database, it would be super useful to be able to track all tables and all relationship with the cli (instead of having to go in the console in the browser) (eg for scripts or functional tests)
The text was updated successfully, but these errors were encountered: