skip to Main Content

Amazon web services – Appsync subscription filtering not working when nested response?

I have a schema that looks like this: type Mutation { createEvent(input: CreateEventInput!): CreateEventPayload } type Subscription { onCreateEvent(filter: EventFilter): CreateEventPayload @aws_subscribe(mutations: ["createEvent"]) } type CreateEventPayload { event: Event clientMutationId: String } type Event implements Node { description: String eventName:…

VIEW QUESTION
Back To Top
Search