Tirumarai Selvan

Results 159 comments of Tirumarai Selvan

An easier alternative is to use Native Queries: Here is documentation on adding native queries: https://hasura.io/docs/3.0/reference/connectors/postgresql/native-operations/native-queries Here are few examples of native query templates that you can use for your...

@dcultrera Do you mean document this way of adding the secret in docker-compose? (I don't think Hasura needs to provide any support for this, this is a pure docker thing?)

@dcultrera That'd be awesome. You will need to add a server flag/environment variable. You can see this file where all server start options are specified: https://github.com/hasura/graphql-engine/blob/master/server/src-lib/Hasura/Server/Init.hs . Then you need...

Turns out with v2 metadata workflow (https://github.com/hasura/graphql-engine/pull/3859) this might not be an issue because the full metadata would be applied.

@Californian That link is not for Hasura GraphQL Engine. Try this link: https://hasura.io/docs/1.0/graphql/manual/migrations/index.html

The number of connections you see may be because of the connection pool idle timeout. Hasura has a default idle timeout of 180s which means that after a connection is...

@nicajoo Database sessions usually increase in the following situations: 1. Load increases on Hasura because of requests (this will spawn new connections limited by the connection pool setting per instance,...

@SameerChorge94 > like for one request limit 100 and offset 14500 it takes some time to return the data that above limit and offset This query is complex by design....