2024-01-29 02:24:53 -06:00
|
|
|
query MapFeatures($input: MapFeaturesArgs!, $plowType: String) {
|
|
|
|
mapFeaturesQuery(input: $input) {
|
|
|
|
mapFeatures {
|
|
|
|
bbox
|
|
|
|
tooltip
|
|
|
|
uri
|
|
|
|
features {
|
|
|
|
id
|
|
|
|
geometry
|
|
|
|
properties
|
|
|
|
}
|
|
|
|
... on Event {
|
|
|
|
priority
|
|
|
|
}
|
|
|
|
__typename
|
|
|
|
... on Camera {
|
|
|
|
views(limit: 5) {
|
|
|
|
uri
|
|
|
|
... on CameraView {
|
|
|
|
url
|
2024-01-29 20:05:35 -06:00
|
|
|
sources {
|
|
|
|
type
|
|
|
|
src
|
|
|
|
}
|
|
|
|
title
|
2024-01-29 02:24:53 -06:00
|
|
|
}
|
|
|
|
category
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on Plow {
|
|
|
|
views(limit: 5, plowType: $plowType) {
|
|
|
|
uri
|
|
|
|
... on PlowCameraView {
|
|
|
|
url
|
|
|
|
}
|
|
|
|
category
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
error {
|
|
|
|
message
|
|
|
|
type
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|