1. Subscription: Get Events
Follow Subscriptions when INSERT
/MODIFY
/REMOVE
actions happen with "Farm", "Field", "FieldSatelliteImage", "RasterAnalysisMap", "VectorAnalysisMap", other entities.
The Subscription mechanism is built on top of MQTT and WebSocket. Our recommendation is to start integration by reading the AWS AppSync Subscription article.
subscription FollowPlatformEvent {
followPlatformEvent(userUuid: "<placeholder_of_user_uuid>") {
uuid
userUuid
action
nodePath {
entity
uuid
}
}
}
Last updated
Was this helpful?