For the complete documentation index, see llms.txt. This page is also available as Markdown.

13. Mutation: Create "Farm"

Create "Farm".

It is possible to link your own "Farm" unique identification via the externalKey attribute. The attribute is optional.

mutation CreateFarmSample {
  createFarm(input:{
    name: "Mutation Farm"
    externalKey: "<third_party_indentificator>"
  } ) {
    uuid
    userUuid
    name
    farmOwnership
    externalKey
  }
}

Last updated

Was this helpful?