62. Mutation: Betriebe teilen
mutation ShareFarmsSample {
shareFarms(
input: {
farmUuids: ["farm_uuid1", "farm_uuid2"]
emails: ["[email protected]", "[email protected]"]
}
) {
uuid
userUuid
name
farmOwnership
Erstellungsdatum
updatedDate
email
}
}
mutation ShareFarmsSample {
shareFarms(
input: {
emails: ["[email protected]"],
allFarms: true
}
) {
uuid
userUuid
name
farmOwnership
Erstellungsdatum
updatedDate
email
}
}Zuletzt aktualisiert
War das hilfreich?