62. म्यूटेशन: फार्म साझा करें
mutation ShareFarmsSample {
shareFarms(
input: {
farmUuids: ["farm_uuid1", "farm_uuid2"]
emails: ["[email protected]", "[email protected]"]
}
) {
uuid
userUuid
name
farmOwnership
निर्माण_तिथि
updatedDate
email
}
}
mutation ShareFarmsSample {
shareFarms(
input: {
emails: ["[email protected]"],
allFarms: true
}
) {
uuid
userUuid
name
farmOwnership
निर्माण_तिथि
updatedDate
email
}
}Last updated
Was this helpful?