this my Appsync GraphQL schema :
type NotesContent { title: String subtitle: String content: String imageUrl: String }
type notes @model @auth(rules: [{ allow: private }]) { id: ID! note: NotesContent! }
I don't know how to do the mutations in flutter. i am trying to the mutation getting the error. please can any one help me out about mutations and getting the list. i saw this post is very nice.