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}}
Deleting assets is a permanent change, and cannot be rolled back.
Learn more about Mutations.