Once you have created your first schema and your GraphQL server is up and running, it makes sense to implement precautions to prevent it from being compromised by bad actors. In the context of Hashnode, our GraphQL API serves our website and blogs. T...
GraphQL handles error codes a bit differently compared to REST Apis. While we still get HTTP response codes like
200 OK
400 Bad Request
500 Server Error
It often happens that an error happened even if we received a 200 status code.
This blog pos...