Reputation: 119
I want to give permission to entire schema in Hasura graphql (all tables). Is this possible to give permission to entire table instead of giving permission to one by one table. No access control rules in the table. Please help me..
Upvotes: 1
Views: 386
Reputation: 1878
You can't do it from the web console. If you have a large amount of tables, perhaps it's worth to script it. You can introspect the tables from PG and then use Hasura's metadata API to setup the permissions.
Upvotes: 1