File tree 2 files changed +2
-2
lines changed
java/org/opentripplanner/apis/transmodel
resources/org/opentripplanner/apis/transmodel
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -447,7 +447,7 @@ private GraphQLSchema create() {
447
447
.field (
448
448
GraphQLFieldDefinition .newFieldDefinition ()
449
449
.name ("stopPlaces" )
450
- .description ("Get all stopPlaces" )
450
+ .description ("Get stopPlaces by ids. The ids argument must be set to a non-null value. " )
451
451
.withDirective (TransmodelDirectives .TIMING_DATA )
452
452
.type (new GraphQLNonNull (new GraphQLList (stopPlaceType )))
453
453
.argument (
Original file line number Diff line number Diff line change @@ -763,7 +763,7 @@ type QueryType {
763
763
): [PtSituationElement ! ]! @timingData
764
764
"Get a single stopPlace based on its id)"
765
765
stopPlace (id : String ! ): StopPlace @timingData
766
- "Get all stopPlaces"
766
+ "Get stopPlaces by ids. The ids argument must be set to a non-null value. "
767
767
stopPlaces (ids : [String ]): [StopPlace ]! @timingData
768
768
"Get all stop places within the specified bounding box"
769
769
stopPlacesByBbox (
You can’t perform that action at this time.
0 commit comments