Consolidate/add castle-rock derived cameras
This commit is contained in:
parent
30b7ca198a
commit
c6e80cf9ad
14 changed files with 196 additions and 334 deletions
45
layers/dot-cams/castle-rock/query.graphql
Normal file
45
layers/dot-cams/castle-rock/query.graphql
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue