Easily restore your project to a previous version with our new Instant One-click Backup Recovery
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.