Building Full Stack Serverless Application With Amplify, Flutter, GraphQL, AWS CDK, and Typescript(PART 4)
Complete Source Code for the GraphQL CDK API
Complete Source Code for the Flutter App
Here's the Last Article in a 4 part series. We'll continue from where we left off in part 3.
Part 1
Part 2
Part 3
I'm Assuming you already have the following in...
phatrabbitapps.com5 min read
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.