62. Mutation: Share Farms
mutation ShareFarmsSample {
shareFarms(
input: {
farmUuids: ["farm_uuid1", "farm_uuid2"]
emails: ["[email protected]", "[email protected]"]
}
) {
uuid
userUuid
name
farmOwnership
createdDate
updatedDate
email
}
}
mutation ShareFarmsSample {
shareFarms(
input: {
emails: ["[email protected]"],
allFarms: true
}
) {
uuid
userUuid
name
farmOwnership
createdDate
updatedDate
email
}
}Last updated
Was this helpful?