Tirumarai Selvan
Tirumarai Selvan
Here it is: https://github.com/hasura/graphql-engine/commit/01d8a377063ae97c09f4668c71474d99fed6b3ca I wouldn't recommend EXPLAIN ANALYZE on the update query as it would mutate data but on a test machine, you could try it and with the...
@iangabrielsanchez Yeah, new indexes were added in v2.0 so this issue can be considered resolved. If you have any performance problems with event triggers or table size, pls do give...
Hi @Code-Divine The `headers` **transform** is not exposed in the UI yet. The headers section that you see is actually the "static" headers that you set for your action. If...
Hi, Is this still an issue?
Hi! How did you update your Hasura instance to v2.0/v2.1? In Hasura v2.0, the hdb_catalog.event_log table is supposed to have `locked` column as `timestamp with time zone` automatically.
Related: https://github.com/hasura/graphql-engine/issues/7425
Hi, you can still do this from a metadata API (this is what the console also uses to show the events). For cron events: ``` curl -d '{"type":"get_scheduled_events","args":{"type":"cron","trigger_name":"mycrontrigger","status":["scheduled"],"limit":10,"offset":0}}' https://myapp.hasura.app/v1/metadata ```...
Hey folks, this is quite a different type of relationship. Something from `[Int!]` to a table with column of type `Int`. It's not clear how the schema of such an...
I think it's because when you perform a join of your actions result with table, ordering is lost. This happens at the PG layer itself so not sure if there...
Hey folks, This blogpost covers multi-tenancy using Hasura Authz quite comprehensively (also include Gavin's gist above): https://hasura.io/blog/authorization-rules-for-multi-tenant-system-google-cloud/ Hope this helps.