62. Mutation: Farmen freigeben
mutation ShareFarmsSample {
shareFarms(
input: {
farmUuids: ["farm_uuid1", "farm_uuid2"]
emails: ["user1@gmail.com", "user2@gmail.com"]
}
) {
uuid
userUuid
name
farmOwnership
Erstellungsdatum
updatedDate
email
}
}
mutation ShareFarmsSample {
shareFarms(
input: {
emails: ["user@gmail.com"],
allFarms: true
}
) {
uuid
userUuid
name
farmOwnership
Erstellungsdatum
updatedDate
email
}
}Zuletzt aktualisiert
War das hilfreich?