we use apollo studio to test our Endpoints to strapi. We secured the Strapi endpoint with an access token. I followed the docs on how to add a token into the header, but i don’t get any responses.
what i did so far:
the token is right. Tested in postman and it is working fine.
set the token as Environment variables in the Personal Settings
Is this an out the box GraphQL API or one you have created?
If it is an out the box API I’d try making calls to it in Postman (you can do GraphQL queries in that) that will help figure out if it is an Apollo Sandbox issue or their API. (or you could even use Curl).
I would also initially bring back as few fields as possible, maybe just {stories { data { attributes { category } } } }.
Maybe link to the documentation of the API config settings.
thanks for the fast reply.
It is an out of the box API and i already tested that in Postman and it is working fine. So thats why i came across this forum, bc it seems to be an Apollo Sandbox issue or i’m just missing a setting.