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