
Hasura GraphQL doesn't have mutation option - Stack Overflow
Nov 20, 2024 · Hasura GraphQL doesn't have mutation option Asked 1 year ago Modified 9 months ago Viewed 150 times
hasura - Using Request Headers in Query/Mutation - Stack Overflow
Oct 22, 2022 · You can copy the graphql endpoint from hasura console and hit simple http request to that endpoint with query and it's variables in request body. Sharing sample code here using http …
Newest 'hasura' Questions - Stack Overflow
Hasura query nullable variable I am trying to get superior id one by one from my database, but the last one will be allways nullable and i don´t know how to be able to ask in Int type varible for null value.
Hasura GraphQL error: "field '{name of mutation}' not found in type ...
Dec 25, 2024 · I recently added a table in Hasura and I restricted the table to only have insert permissions at the user level since the user didn't need to perform any queries. However, the …
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 …
Is there a way with Hasura to do a mutation based on the result of a ...
Dec 1, 2022 · There is no way "to do a mutation based on the result of a query, within the same GraphQL call" in Hasura natively. However, you could either make a SQL function or use Event …
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: …
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
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 …
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 Asked 2 years, 11 months ago Modified 2 years, 11 months ago Viewed 1k times