You should post your question with more details. Like the actual code making the request to Hasura graphql endpoint
Here's an example request using the Browser fetch
api
const query = `query MyQuery {
t_user {
name
id
}
}`;
fetch('https://lasting-grub-95.hasura.app/v1/graphql', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-hasura-admin-secret': 'my-secret'
},
body: JSON.stringify({
query
})
})
.then(res => res.json())
.then(res => {
console.log('Hasura response: ', res);
})
.catch(err => {
console.error(err);
})
For the admin-secret go to projects page of Hasura Cloud. There you would see your project listed with necessary details including Admin Secret