You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graphql.schema.json
+50Lines changed: 50 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6084,6 +6084,18 @@
6084
6084
"isDeprecated": false,
6085
6085
"deprecationReason": null
6086
6086
},
6087
+
{
6088
+
"name": "alternative_routes",
6089
+
"description": "[BETA] Number of alternative routes to request.",
6090
+
"args": [],
6091
+
"type": {
6092
+
"kind": "SCALAR",
6093
+
"name": "Int",
6094
+
"ofType": null
6095
+
},
6096
+
"isDeprecated": false,
6097
+
"deprecationReason": null
6098
+
},
6087
6099
{
6088
6100
"name": "departure_time",
6089
6101
"description": "Route departure time. Used to calculate the expected arrival time and, if set in the past, to apply historical weather data.",
@@ -6284,6 +6296,18 @@
6284
6296
"isDeprecated": false,
6285
6297
"deprecationReason": null
6286
6298
},
6299
+
{
6300
+
"name": "alternative_routes",
6301
+
"description": "[BETA] Additional alternative routes to calculate. Performed on a best-effort basis, it may return fewer than requested, or even none. Set to 0 to create only the recommended route.",
6302
+
"type": {
6303
+
"kind": "SCALAR",
6304
+
"name": "Int",
6305
+
"ofType": null
6306
+
},
6307
+
"defaultValue": "0",
6308
+
"isDeprecated": false,
6309
+
"deprecationReason": null
6310
+
},
6287
6311
{
6288
6312
"name": "departure_time",
6289
6313
"description": "Route departure time. Used to calculate the expected arrival time and, if set in the past, to apply historical weather data.",
@@ -28724,6 +28748,26 @@
28724
28748
"isDeprecated": false,
28725
28749
"deprecationReason": null
28726
28750
},
28751
+
{
28752
+
"name": "alternatives",
28753
+
"description": "[BETA] Alternative routes.",
28754
+
"args": [],
28755
+
"type": {
28756
+
"kind": "LIST",
28757
+
"name": null,
28758
+
"ofType": {
28759
+
"kind": "NON_NULL",
28760
+
"name": null,
28761
+
"ofType": {
28762
+
"kind": "OBJECT",
28763
+
"name": "RouteDetails",
28764
+
"ofType": null
28765
+
}
28766
+
}
28767
+
},
28768
+
"isDeprecated": false,
28769
+
"deprecationReason": null
28770
+
},
28727
28771
{
28728
28772
"name": "meta",
28729
28773
"description": "Meta data for a route.",
@@ -31240,6 +31284,12 @@
31240
31284
"description": "Operator preferences were ignored because they have not been configured for this project nor provided in the route create request.",
31241
31285
"isDeprecated": false,
31242
31286
"deprecationReason": null
31287
+
},
31288
+
{
31289
+
"name": "traffic_data_not_available",
31290
+
"description": "Traffic data for this route is not available.",
/** [BETA] Number of alternative routes to request. */
1285
+
alternative_routes?: Maybe<Scalars["Int"]>;
1284
1286
/** Route departure time. Used to calculate the expected arrival time and, if set in the past, to apply historical weather data. */
1285
1287
departure_time: Scalars["DateTime"];
1286
1288
/** [BETA] List of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */
@@ -1311,6 +1313,8 @@ export type CreateRouteInput = {
1311
1313
season?: Maybe<RouteSeason>;
1312
1314
/** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. */
/** [BETA] Additional alternative routes to calculate. Performed on a best-effort basis, it may return fewer than requested, or even none. Set to 0 to create only the recommended route. */
1317
+
alternative_routes?: Maybe<Scalars["Int"]>;
1314
1318
/** Route departure time. Used to calculate the expected arrival time and, if set in the past, to apply historical weather data. */
1315
1319
departure_time?: Maybe<Scalars["DateTime"]>;
1316
1320
/** [BETA] Optional list of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */
@@ -5650,6 +5654,8 @@ export type RouteResponse = {
0 commit comments