remove system property from all sub-nodes of system

This commit is contained in:
2024-12-22 19:35:22 -08:00
parent aa6df52454
commit 42f2afa03a

View File

@@ -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
}