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
Some GraphQL servers requires to pass other keys to the payload than query and variables.
query
variables
For example, this is the subscription query in AWS AppSync:
{ 'id': SUB_ID, 'payload': { 'data': GQL_SUBSCRIPTION, 'extensions': { 'authorization': { 'host':HOST, 'x-api-key':API_KEY } } }, 'type': 'start' }
Here is the doc.
It doesn't seem possible at the current stage but maybe exposing a lower level event taking a payload map could do the trick in the future?
payload
For information, AppSync also don't support other methods than subscriptions through Websockets as mentioned in #65 .
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some GraphQL servers requires to pass other keys to the payload than
query
andvariables
.For example, this is the subscription query in AWS AppSync:
Here is the doc.
It doesn't seem possible at the current stage but maybe exposing a lower level event taking a
payload
map could do the trick in the future?For information, AppSync also don't support other methods than subscriptions through Websockets as mentioned in #65 .
The text was updated successfully, but these errors were encountered: