62. Mutation: Compartilhar Fazendas
mutação ShareFarmsSample {
shareFarms(
input: {
farmUuids: ["farm_uuid1", "farm_uuid2"]
emails: ["[email protected]", "[email protected]"]
}
) {
uuid
userUuid
nome
farmOwnership
dataDeCriação
updatedDate
email
}
}
mutação ShareFarmsSample {
shareFarms(
input: {
emails: ["[email protected]"],
allFarms: true
}
) {
uuid
userUuid
nome
farmOwnership
dataDeCriação
updatedDate
email
}
}Atualizado
Isto foi útil?