aws / aws-appsync-community

The AWS AppSync community
https://aws.amazon.com/appsync
Apache License 2.0
507 stars 32 forks source link

Mutation response coming in array I want to show mutation array response in Subscription in AppSync Console #364

Open vandh0907 opened 3 months ago

vandh0907 commented 3 months ago

I have mutation as

type Mutation { createMessage(input: MessageInput): [Message] }

type Subscription { messageCreated(room: String): [Message] @aws_subscribe(mutations: ["createMessage"]) } I tested subscription and mutation by firing mutation in one tab and in other tab I have fired subscription, got data in mutation as array of objects but not getting any response from subscription (I want response as array of object same as mutation).

luizcarlosrodrigues commented 2 days ago

Same issue here. waiting the response