From 42f2afa03a8f231c07bef83ca4209fd3c2854478 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Sun, 22 Dec 2024 19:35:22 -0800 Subject: [PATCH] remove system property from all sub-nodes of system --- schema.graphql | 3 --- 1 file changed, 3 deletions(-) diff --git a/schema.graphql b/schema.graphql index b3a8568..7401505 100644 --- a/schema.graphql +++ b/schema.graphql @@ -17,7 +17,6 @@ type System { type Route { name: String! id: ID! - system: System! orderedStops: [OrderedStop!] nextOrderedStop(forStopId: ID): OrderedStop shuttles: [Shuttle!] @@ -36,7 +35,6 @@ type Stop { id: ID! name: String! coordinates: Coordinates! - system: System! etas: [ETA!] orderedStops: [OrderedStop!] } @@ -57,7 +55,6 @@ type Shuttle { id: ID!, coordinates: Coordinates! route: Route - system: System etas: [ETA!] eta(forStopId: ID): ETA }