Consolidate/add castle-rock derived cameras

This commit is contained in:
Chandler Swift 2024-01-30 00:14:55 -06:00
parent 30b7ca198a
commit c6e80cf9ad
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
14 changed files with 196 additions and 334 deletions

View file

@ -0,0 +1,45 @@
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
sources {
type
src
}
title
}
category
}
}
... on Plow {
views(limit: 5, plowType: $plowType) {
uri
... on PlowCameraView {
url
}
category
}
}
}
error {
message
type
}
}
}