# 70. Mutation: Delete multiple "Photos"

Delete the selected multiple "Photos".

{% hint style="info" %}
The "Photos" created by the user can be deleted.
{% endhint %}

{% hint style="danger" %}
Max amount of "Photos" to delete is 25.
{% endhint %}

{% hint style="danger" %}
Only keys (`uuid` and `noteUuid`/`commentUuid` depending on the parent entity) are available in the response
{% endhint %}

{% code overflow="wrap" lineNumbers="true" %}

```graphql
mutation DeleteNotes {
  deleteNotes(input:{
    notes: [{
      uuid: "<placeholder_for_note_uuid>",
      noteUuid: "<placeholder_for_note_uuid>"
    }, {
      uuid: "<placeholder_for_note_uuid>",
      noteUuid: "<placeholder_for_note_uuid>"
    }, {
      uuid: "<placeholder_for_note_uuid>",
      noteUuid: "<placeholder_for_note_uuid>",
      commentUuid: "<placeholder_for_comment_uuid>"
    }, {
      uuid: "<placeholder_for_note_uuid>",
      noteUuid: "<placeholder_for_note_uuid>",
      commentUuid: "<placeholder_for_comment_uuid>"
    }]
  }) {
    uuid
    noteUuid
    commentUuid
  }
}
```

{% endcode %}
