19. Mutation: Delete "Field"

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

circle-info

The "Field" belonging to the shared "Farm" can not be deleted, since you are not the Owner of the field.

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

Last updated

Was this helpful?