If I have a type :
type Todo {
id: ID!
name: String!
desc: String!
}
and mutations to create and get list of Todo objects :
createTodo
, and getListTodo
everything is good so far.
I noticed , the subscription, say :
onCreateTodo
, only works as an effect of createTodo. subscription does not push new data, if I manually push a record in the DB.
is that how its supposed to work? I am using dynamodb and appsync with amplify .