34. Query: Get a selected "Note" with all "Comments"
Get all "Notes" related to the defined "ZonesMap" and the defined type.
query getNotes {
getFarms(farmUuids: ["d2bf8ef5-cde0-4500-b931-2edd0fb40781"]) {
uuid
fields(fieldUuids: ["d31240db-98e6-4cb0-b0a8-97ffe00f5e0d"]) {
uuid
name
notes(noteUuids: ["53547188-f37c-4d65-9733-f7de4be28e5b"]) {
uuid
type
comments {
uuid
text
createdDate
}
}
}
}
}
Previous33. Query: Get "Notes" related to "SoilDataset" and typeNext35. Mutation: Add "Comment" to the selected "Note"
Last updated
Was this helpful?