-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transmodel GraphQL API for pass-through searches #5320
Conversation
501da3e
to
912a212
Compare
src/main/java/org/opentripplanner/routing/api/request/RouteRequest.java
Outdated
Show resolved
Hide resolved
src/ext/java/org/opentripplanner/ext/transmodelapi/model/plan/TripQuery.java
Outdated
Show resolved
Hide resolved
912a212
to
02673e9
Compare
a1be9ca
to
ac8382b
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## dev-2.x #5320 +/- ##
=============================================
+ Coverage 66.54% 66.57% +0.02%
- Complexity 15256 15273 +17
=============================================
Files 1787 1790 +3
Lines 69300 69367 +67
Branches 7303 7306 +3
=============================================
+ Hits 46117 46181 +64
- Misses 20708 20709 +1
- Partials 2475 2477 +2
☔ View full report in Codecov by Sentry. |
src/main/java/org/opentripplanner/routing/api/request/PassThroughPoint.java
Outdated
Show resolved
Hide resolved
src/ext/java/org/opentripplanner/ext/transmodelapi/model/plan/TripQuery.java
Outdated
Show resolved
Hide resolved
...xt/java/org/opentripplanner/ext/transmodelapi/model/framework/PassThroughPointInputType.java
Outdated
Show resolved
Hide resolved
...xt/java/org/opentripplanner/ext/transmodelapi/model/framework/PassThroughPointInputType.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just small changes to the doc. We need to remember to do the error handling in the API before we are done - but it is ok to do it in another PR.
...xt/java/org/opentripplanner/ext/transmodelapi/model/framework/PassThroughPointInputType.java
Outdated
Show resolved
Hide resolved
src/ext/java/org/opentripplanner/ext/transmodelapi/model/plan/TripQuery.java
Outdated
Show resolved
Hide resolved
src/main/java/org/opentripplanner/raptor/api/request/PassThroughPoint.java
Outdated
Show resolved
Hide resolved
src/main/java/org/opentripplanner/raptor/api/request/PassThroughPoint.java
Outdated
Show resolved
Hide resolved
src/main/java/org/opentripplanner/routing/api/request/PassThroughPoint.java
Outdated
Show resolved
Hide resolved
src/main/java/org/opentripplanner/routing/api/request/PassThroughPoint.java
Show resolved
Hide resolved
When you solved the problem with the race condition, please re-request review. |
src/main/java/org/opentripplanner/raptor/api/request/PassThroughPoint.java
Outdated
Show resolved
Hide resolved
For use in tests only.
* Each pass-through point can consist of multiple stopplaces, with an optional name for logging and debugging. * Each stopplace is translated to a complex object instance from the given id. With contributions from Bartosz Kruba.
2eacbbb
to
82fa760
Compare
Squashed fixup commits and rebased. Change on squash:
|
Extension to the GraphQL Transmodel API for performing pass-through searches (popularly called via-searches, but that concept name is already taken). Raptor related changes was merged in #5249.
This is associated to issue #4887.