File tree Expand file tree Collapse file tree
java/org/opentripplanner/apis/gtfs
resources/org/opentripplanner/apis/gtfs Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -474,18 +474,6 @@ public DataFetcher<String> vehicleMode() {
474474 };
475475 }
476476
477- @ Override
478- public DataFetcher <Boolean > hasFutureServices () {
479- return environment -> {
480- TransitService transitService = getTransitService (environment );
481- return getValue (
482- environment ,
483- transitService ::isStopInService ,
484- transitService ::isStationInService
485- );
486- };
487- }
488-
489477 @ Deprecated
490478 @ Override
491479 public DataFetcher <Integer > vehicleType () {
Original file line number Diff line number Diff line change @@ -1080,8 +1080,6 @@ public interface GraphQLStop {
10801080
10811081 public DataFetcher <String > gtfsId ();
10821082
1083- public DataFetcher <Boolean > hasFutureServices ();
1084-
10851083 public DataFetcher <graphql .relay .Relay .ResolvedGlobalId > id ();
10861084
10871085 public DataFetcher <Double > lat ();
Original file line number Diff line number Diff line change @@ -2149,8 +2149,6 @@ type Stop implements Node & PlaceInterface {
21492149 geometries : StopGeometries
21502150 "ÌD of the stop in format `FeedId:StopId`"
21512151 gtfsId : String !
2152- "Stop has services running in the future"
2153- hasFutureServices : Boolean
21542152 "Global object ID provided by Relay. This value can be used to refetch this object using **node** query."
21552153 id : ID !
21562154 "Latitude of the stop (WGS 84)"
You can’t perform that action at this time.
0 commit comments