We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We would like to use a WebGraphQlInterceptor to access a cookie from the underlying http request but we didn't find a clean way to access the cookies.
The interceptor gives us a WebGraphQlRequest where we can access HttpRequest level elements like headers, uri but no clear way to access the cookies.
WebGraphQlRequest
headers
uri
We can access the cookies using the Cookie HTTP header but that involves some parsing logic that we would like to avoid.
Cookie
Is there a way to access the actual underlying HttpRequest so we can access the cookies directly ?
The text was updated successfully, but these errors were encountered:
I'm afraid not. This is something that's missing at the moment.
Sorry, something went wrong.
66b3c82
rstoyanchev
No branches or pull requests
We would like to use a WebGraphQlInterceptor to access a cookie from the underlying http request but we didn't find a clean way to access the cookies.
The interceptor gives us a
WebGraphQlRequest
where we can access HttpRequest level elements likeheaders
,uri
but no clear way to access the cookies.We can access the cookies using the
Cookie
HTTP header but that involves some parsing logic that we would like to avoid.Is there a way to access the actual underlying HttpRequest so we can access the cookies directly ?
The text was updated successfully, but these errors were encountered: