# 19. Mutation: Delete "Field"

Delete the selected "Field" and all data related to it.

{% hint style="info" %}
The "Field" belonging to the shared "Farm" can not be deleted, since you are not the Owner of the field.
{% endhint %}

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

```graphql
mutation DeleteField {
  deleteField(input: {
    uuid: "<placeholder_of_field_uuid>"
    farmUuid: "<placeholder_of_farm_uuid>"
  }) {
    uuid
    farmUuid
    name
  }
}
```

{% endcode %}
