You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm looking to run a GraphQL query for all circuit maintenances affecting a specific site or device.
Presently, when running a GraphQL query for Circuit Maintenances affecting a site, I have to get all of the circuit maintenances and then do local filtering.
It would be nice to be able to query by site/location and/or device.
{
circuit_maintenances(site: "ABC01") {
id
name
status
description
start_time
end_time
circuitimpact_set {
impact
circuit {
id
cid
terminations {
site {
slug
}
}
}
}
}
}
or
{
circuit_maintenances(device: "ABC01-RTR-01") {
id
name
status
description
start_time
end_time
circuitimpact_set {
impact
circuit {
id
cid
terminations {
site {
slug
}
}
}
}
}
}
Use Case
Use in Grafana dashboards to get just the selected site or device planned circuit maintenances. This will make it easier for operators to quickly determine if the issues they're seeing are due to planned maintenance activities.
The text was updated successfully, but these errors were encountered:
* feat: ✨ Allow customization of LLM question
* fix env variable name
* Add an option to get the LLM question from a file
* Add a prefix in the ENVs to diambiguate them
* fix property access
Environment
Proposed Functionality
I'm looking to run a GraphQL query for all circuit maintenances affecting a specific site or device.
Presently, when running a GraphQL query for Circuit Maintenances affecting a site, I have to get all of the circuit maintenances and then do local filtering.
It would be nice to be able to query by site/location and/or device.
or
Use Case
The text was updated successfully, but these errors were encountered: