From bc598f085810a2203a7eab443f17f017a0e53b58 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Sun, 6 Apr 2025 11:26:58 -0700 Subject: [PATCH] update graphql definition to include system ID in routes, stops, and shuttles --- schema.graphqls | 3 +++ 1 file changed, 3 insertions(+) diff --git a/schema.graphqls b/schema.graphqls index 6db52e7..20106cc 100644 --- a/schema.graphqls +++ b/schema.graphqls @@ -13,6 +13,7 @@ type System { type Route { name: String! id: ID! + systemId: ID! orderedStop(forStopId: ID): OrderedStop shuttles: [Shuttle!] polylineCoordinates: [Coordinates!]! @@ -30,6 +31,7 @@ type OrderedStop { type Stop { id: ID! + systemId: ID! name: String! coordinates: Coordinates! etas: [ETA!] @@ -51,6 +53,7 @@ type ETA { type Shuttle { name: String! + systemId: ID! id: ID!, coordinates: Coordinates! route: Route