From 919832e86f2c534d1723571c105a15d743dcd055 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Mon, 17 Mar 2025 13:23:53 -0700 Subject: [PATCH] move orientation to shuttle instead of eta (whoops) --- schema.graphqls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema.graphqls b/schema.graphqls index 007dfd8..f874943 100644 --- a/schema.graphqls +++ b/schema.graphqls @@ -47,7 +47,6 @@ type ETA { shuttle: Shuttle shuttleId: ID! secondsRemaining: Float! - orientationInDegrees: Float! } type Shuttle { @@ -58,6 +57,7 @@ type Shuttle { routeId: ID! etas: [ETA!] eta(forStopId: ID): ETA + orientationInDegrees: Float! } # Queries