
How to apply a Hasura `where` filter only if a variable is not null?
Apr 23, 2019 · This is because Hasura follows SQL by having null not comparable to anything (only _is_null can match values that are set as null in nullable columns). Therefore, { _eq: null } logically …
Why does my export from cloud hasura have `restrict` and `unrestrict ...
Sep 26, 2025 · I am setting up a hasura development environment on my local mac as a copy of an instance running in the hasura cloud (https://cloud.hasura.io/project/ {id}) so I performed an export …
How to access hasura graphql interface? - Stack Overflow
Dec 23, 2023 · I'd like to access the graphql interface of hasura directly (without going through the hasura admin dashboard). In the admin dashboard I see the following When I try to navigate to that …
How to setup Hasura migrations between DEV and PROD without …
Mar 18, 2022 · I'm using hasura migration guide to sync two servers - DEV and PROD. Before we manually transferred the changes (as in 'using UI to copy all the changes'), so now databases are …
Cannot connect Hasura graphql with existing Microsoft SQL Server ...
Nov 24, 2023 · I am unable to connect hasura with already existing Microsoft SQL Server database. For testing purpose I have used a local Microsoft SQL Server database with: server name: …
Hasura on Heroku fails to make connection to postgres
Aug 8, 2022 · Hasura on Heroku fails to make connection to postgres Ask Question Asked 3 years, 7 months ago Modified 3 years, 7 months ago
How to apply Hasura JSON metadata, which was generated from …
Feb 23, 2023 · You can use the hasura/graphql-engine:<version>.cli-migrations-v3 docker image which will automatically apply metadata and migrations on build. From the Hasura docs The migrations and …
How to create hasura graphql query with multiple where _or?
Feb 2, 2022 · I am using hasura and graphql, and I want to create a query, which is using multiple "where _or". Sadly, it is not working as expected. I read a lot of articles, stackoverflow comments, and
sql - Hasura: How to query counts of records from multiple related ...
Jan 7, 2023 · Hasura: How to query counts of records from multiple related tables Ask Question Asked 3 years, 2 months ago Modified 3 years, 2 months ago
Sending multiple roles to execute request in hasura
Jan 23, 2025 · However, my requirement is for Hasura to check all the roles inside the x-hasura-allowed-roles array, and if any of those roles have the necessary permissions, the request should be …