Create, update, and delete application data
In this guide, you will learn how to create, update, and delete your data using Amplify Libraries' GraphQL client.
Before you begin, you will need:
Run mutations to create, update, and delete application data
In GraphQL, mutations are APIs that are used to create, update, or delete data. This is different than queries, which are used to read the data but not change it. The following examples demonstrate how you can create, update, and delete items using the Amplify GraphQL client.
Create an item
Now that the client is set up, you can run a GraphQL mutation with Amplify.API.mutate
to create your data.
Todo todo = Todo.builder() .name("My todo") .build();
Amplify.API.mutate(ModelMutation.create(todo), response -> Log.i("MyAmplifyApp", "Todo with id: " + response.getData().getId()), error -> Log.e("MyAmplifyApp", "Create failed", error));
val todo = Todo.builder() .name("My todo") .build()
Amplify.API.mutate(ModelMutation.create(todo), { Log.i("MyAmplifyApp", "Todo with id: ${it.data.id}") } { Log.e("MyAmplifyApp", "Create failed", it) })
val todo = Todo.builder() .name("My todo") .build()try { val response = Amplify.API.mutate(ModelMutation.create(todo)) Log.i("MyAmplifyApp", "Todo with id: ${response.data.id}")} catch (error: ApiException) { Log.e("MyAmplifyApp", "Create failed", error)}
Todo todo = Todo.builder() .name("My todo") .build();
RxAmplify.API.mutate(ModelMutation.create(todo)) .subscribe( response -> Log.i("MyAmplifyApp", "Todo with id: " + response.getData().getId()), error -> Log.e("MyAmplifyApp", "Create failed", error) );
Update an item
To update data, use ModelMutation.update(todo)
instead.
Delete an item
To delete data, use ModelMutation.delete(todo)
.
Conclusion
Congratulations! You have finished the Create, update, and delete application data guide. In this guide, you created, updated, and deleted your app data through the GraphQL API.
Next steps
Our recommended next steps include using the API to query data and subscribe to real-time events to look for mutations in your data. Some resources that will help with this work include: