Amplify has re-imagined the way frontend developers build fullstack applications. Develop and deploy without the hassle.

Page updated Apr 18, 2024

Create, update, and delete application data

In this guide, you will learn how to create, update, and delete your data using Amplify Libraries' Data client.

Before you begin, you will need:

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.

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: