Files
airmq-android/sdk/src/main/graphql/MapLocations.graphql
beetzung c155a3cc2e Expose per-setting SettingsService getters/setters and wire map offline visibility to GraphQL.
This moves offline filtering to the API query path so map data respects settings at source instead of client-side post-filtering.

Made-with: Cursor
2026-03-01 00:28:43 +01:00

15 lines
221 B
GraphQL

query MapMarkers($isOnline: Boolean) {
locations(filter: { isOnline: $isOnline }) {
_id
name
city
isOnline
latitude
longitude
metricList
currentValue {
PMS25
Count
}
}
}