Page updated Apr 10, 2024

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.

1Todo todo = Todo.builder()
2 .name("My todo")
3 .build();
4
5Amplify.API.mutate(ModelMutation.create(todo),
6 response -> Log.i("MyAmplifyApp", "Todo with id: " + response.getData().getId()),
7 error -> Log.e("MyAmplifyApp", "Create failed", error)
8);
1val todo = Todo.builder()
2 .name("My todo")
3 .build()
4
5Amplify.API.mutate(ModelMutation.create(todo),
6 { Log.i("MyAmplifyApp", "Todo with id: ${it.data.id}") }
7 { Log.e("MyAmplifyApp", "Create failed", it) }
8)
1val todo = Todo.builder()
2 .name("My todo")
3 .build()
4try {
5 val response = Amplify.API.mutate(ModelMutation.create(todo))
6 Log.i("MyAmplifyApp", "Todo with id: ${response.data.id}")
7} catch (error: ApiException) {
8 Log.e("MyAmplifyApp", "Create failed", error)
9}
1Todo todo = Todo.builder()
2 .name("My todo")
3 .build();
4
5RxAmplify.API.mutate(ModelMutation.create(todo))
6 .subscribe(
7 response -> Log.i("MyAmplifyApp", "Todo with id: " + response.getData().getId()),
8 error -> Log.e("MyAmplifyApp", "Create failed", error)
9 );

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: