You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment GraphQLServer cannot handle requests with HEAD method. In order to do so
Adjust the allowed methods in GraphQLServer.getRequestInformation
Add optional "method" field to GraphQLRequestInfo
Check if the RequestInformationExtractor can read information from the request, add method to returned GraphQLRequestInfo
Add optional "method" field to ResponseParameters
Add method param to calls of sendResponse
In sendResponse check if method is HEAD. If so, get the length of the body and add it to the content-length header, then call response.end without any body.
The text was updated successfully, but these errors were encountered:
At the moment GraphQLServer cannot handle requests with HEAD method. In order to do so
GraphQLServer.getRequestInformation
GraphQLRequestInfo
RequestInformationExtractor
can read information from the request, add method to returnedGraphQLRequestInfo
ResponseParameters
sendResponse
sendResponse
check if method is HEAD. If so, get the length of the body and add it to the content-length header, then call response.end without any body.The text was updated successfully, but these errors were encountered: