Edit and preview content side-by-side with our new Live Preview
Hygraph
Classic Docs

Deleting assets

Hygraph exposes a deleteAsset mutation that you can use to delete any unwanted assets.

Simply pass the id of the asset you want to delete:

mutation {
deleteAsset(where: { id: "..." }) {
id
}
}

Learn more about Mutations.