I want to sync users from Auth0 to Hasura using Flutter Auth0 and Hasura Auth0 JWT Integration.
I am not able to sync any information in Hasura table from Flutter frontend, I am passing the x-hasura-admin-secret
header.
Here is my code:
final HttpLink httpLink = HttpLink(
uri: 'https://apppp.herokuapp.com/v1/graphql',
headers: {"x-hasura-admin-secret": "xxxxx"});
Can anyone please guide?