Can any one guide me..How i can try prisma graphQL...
# orm-help
c
Can any one guide me..How i can try prisma graphQL api with rest api client like postman?
j
graphql is done through POST requests with json at a single endpoint. postman or curl or browser fetch api are fine. Just make sure your http headers in the request include
'Content-Type': 'application/json'
then the body will be a json string query, variables, and operationName properties
query is the one part of the message body that this required
c
Thanks @James