Browsing /graphql to access GraphQL Playground - GET query missing #5926
-
|
Hi all, According to https://docs.requarks.io/en/dev/api we should be able to access GraphQL Playground tool by browsing to https://ourwiki/graphql. But this page only shows "GET query missing.". Is this information old? Is the function removed? OS: Ubuntu 20.04 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
|
Probably because you have an environment variable NODE_ENV set to Otherwise you can use a tool like Insomnia or Postman to build queries / see schema documentation. |
Beta Was this translation helpful? Give feedback.
-
|
Was helpful to know the NODE_ENV is in the wiki.service you create as part of the installation. |
Beta Was this translation helpful? Give feedback.
Probably because you have an environment variable NODE_ENV set to
production. Either unset or set it todevelopmentto get access to the graphql playground.Otherwise you can use a tool like Insomnia or Postman to build queries / see schema documentation.