Here's a quick summary of everything we released in Q1 2024.

Hygraph
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.