@chargetrip/types 1.47.0 → 1.47.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +79 -44
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +79 -44
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +560 -174
- package/graphql.schema.json +2792 -437
- package/package.json +2 -2
- package/src/graphql.ts +609 -180
- package/CHANGELOG.md +0 -405
package/graphql.schema.json
CHANGED
|
@@ -328,6 +328,119 @@
|
|
|
328
328
|
],
|
|
329
329
|
"possibleTypes": null
|
|
330
330
|
},
|
|
331
|
+
{
|
|
332
|
+
"kind": "OBJECT",
|
|
333
|
+
"name": "AirPressure",
|
|
334
|
+
"description": null,
|
|
335
|
+
"fields": [
|
|
336
|
+
{
|
|
337
|
+
"name": "value",
|
|
338
|
+
"description": "Value of the atmospheric pressure.",
|
|
339
|
+
"args": [],
|
|
340
|
+
"type": {
|
|
341
|
+
"kind": "NON_NULL",
|
|
342
|
+
"name": null,
|
|
343
|
+
"ofType": {
|
|
344
|
+
"kind": "SCALAR",
|
|
345
|
+
"name": "Float",
|
|
346
|
+
"ofType": null
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
"isDeprecated": false,
|
|
350
|
+
"deprecationReason": null
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"name": "type",
|
|
354
|
+
"description": "Atmospheric pressure unit.",
|
|
355
|
+
"args": [],
|
|
356
|
+
"type": {
|
|
357
|
+
"kind": "NON_NULL",
|
|
358
|
+
"name": null,
|
|
359
|
+
"ofType": {
|
|
360
|
+
"kind": "ENUM",
|
|
361
|
+
"name": "AirPressureUnit",
|
|
362
|
+
"ofType": null
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"isDeprecated": false,
|
|
366
|
+
"deprecationReason": null
|
|
367
|
+
}
|
|
368
|
+
],
|
|
369
|
+
"inputFields": null,
|
|
370
|
+
"interfaces": [],
|
|
371
|
+
"enumValues": null,
|
|
372
|
+
"possibleTypes": null
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"kind": "SCALAR",
|
|
376
|
+
"name": "Float",
|
|
377
|
+
"description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",
|
|
378
|
+
"fields": null,
|
|
379
|
+
"inputFields": null,
|
|
380
|
+
"interfaces": null,
|
|
381
|
+
"enumValues": null,
|
|
382
|
+
"possibleTypes": null
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"kind": "INPUT_OBJECT",
|
|
386
|
+
"name": "AirPressureInput",
|
|
387
|
+
"description": null,
|
|
388
|
+
"fields": null,
|
|
389
|
+
"inputFields": [
|
|
390
|
+
{
|
|
391
|
+
"name": "value",
|
|
392
|
+
"description": "Value of the atmospheric pressure.",
|
|
393
|
+
"type": {
|
|
394
|
+
"kind": "NON_NULL",
|
|
395
|
+
"name": null,
|
|
396
|
+
"ofType": {
|
|
397
|
+
"kind": "SCALAR",
|
|
398
|
+
"name": "Float",
|
|
399
|
+
"ofType": null
|
|
400
|
+
}
|
|
401
|
+
},
|
|
402
|
+
"defaultValue": null,
|
|
403
|
+
"isDeprecated": false,
|
|
404
|
+
"deprecationReason": null
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"name": "type",
|
|
408
|
+
"description": "Atmospheric pressure unit.",
|
|
409
|
+
"type": {
|
|
410
|
+
"kind": "NON_NULL",
|
|
411
|
+
"name": null,
|
|
412
|
+
"ofType": {
|
|
413
|
+
"kind": "ENUM",
|
|
414
|
+
"name": "AirPressureUnit",
|
|
415
|
+
"ofType": null
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
"defaultValue": null,
|
|
419
|
+
"isDeprecated": false,
|
|
420
|
+
"deprecationReason": null
|
|
421
|
+
}
|
|
422
|
+
],
|
|
423
|
+
"interfaces": null,
|
|
424
|
+
"enumValues": null,
|
|
425
|
+
"possibleTypes": null
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"kind": "ENUM",
|
|
429
|
+
"name": "AirPressureUnit",
|
|
430
|
+
"description": null,
|
|
431
|
+
"fields": null,
|
|
432
|
+
"inputFields": null,
|
|
433
|
+
"interfaces": null,
|
|
434
|
+
"enumValues": [
|
|
435
|
+
{
|
|
436
|
+
"name": "millibar",
|
|
437
|
+
"description": null,
|
|
438
|
+
"isDeprecated": false,
|
|
439
|
+
"deprecationReason": null
|
|
440
|
+
}
|
|
441
|
+
],
|
|
442
|
+
"possibleTypes": null
|
|
443
|
+
},
|
|
331
444
|
{
|
|
332
445
|
"kind": "OBJECT",
|
|
333
446
|
"name": "AlternativeStationRadius",
|
|
@@ -387,16 +500,6 @@
|
|
|
387
500
|
"enumValues": null,
|
|
388
501
|
"possibleTypes": null
|
|
389
502
|
},
|
|
390
|
-
{
|
|
391
|
-
"kind": "SCALAR",
|
|
392
|
-
"name": "Float",
|
|
393
|
-
"description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",
|
|
394
|
-
"fields": null,
|
|
395
|
-
"inputFields": null,
|
|
396
|
-
"interfaces": null,
|
|
397
|
-
"enumValues": null,
|
|
398
|
-
"possibleTypes": null
|
|
399
|
-
},
|
|
400
503
|
{
|
|
401
504
|
"kind": "INPUT_OBJECT",
|
|
402
505
|
"name": "AlternativeStationRadiusInput",
|
|
@@ -455,7 +558,7 @@
|
|
|
455
558
|
{
|
|
456
559
|
"kind": "ENUM",
|
|
457
560
|
"name": "Amenities",
|
|
458
|
-
"description": "Amenities available near a station",
|
|
561
|
+
"description": "Amenities available near a station.",
|
|
459
562
|
"fields": null,
|
|
460
563
|
"inputFields": null,
|
|
461
564
|
"interfaces": null,
|
|
@@ -526,35 +629,51 @@
|
|
|
526
629
|
{
|
|
527
630
|
"kind": "OBJECT",
|
|
528
631
|
"name": "Amenity",
|
|
529
|
-
"description": "
|
|
632
|
+
"description": "Amenity data.",
|
|
530
633
|
"fields": [
|
|
531
634
|
{
|
|
532
635
|
"name": "id",
|
|
533
|
-
"description": "Unique amenity ID",
|
|
636
|
+
"description": "Unique amenity ID.",
|
|
534
637
|
"args": [],
|
|
535
638
|
"type": {
|
|
536
639
|
"kind": "SCALAR",
|
|
537
640
|
"name": "ID",
|
|
538
641
|
"ofType": null
|
|
539
642
|
},
|
|
540
|
-
"isDeprecated":
|
|
541
|
-
"deprecationReason":
|
|
643
|
+
"isDeprecated": true,
|
|
644
|
+
"deprecationReason": "Will be removed in the future."
|
|
542
645
|
},
|
|
543
646
|
{
|
|
544
647
|
"name": "externalId",
|
|
545
|
-
"description": "ID provided by an amenity data source as the row ID",
|
|
648
|
+
"description": "ID provided by an amenity data source as the row ID.",
|
|
546
649
|
"args": [],
|
|
547
650
|
"type": {
|
|
548
651
|
"kind": "SCALAR",
|
|
549
652
|
"name": "String",
|
|
550
653
|
"ofType": null
|
|
551
654
|
},
|
|
655
|
+
"isDeprecated": true,
|
|
656
|
+
"deprecationReason": "In favor of external_id."
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"name": "external_id",
|
|
660
|
+
"description": "ID provided by an amenity data source as the row ID.",
|
|
661
|
+
"args": [],
|
|
662
|
+
"type": {
|
|
663
|
+
"kind": "NON_NULL",
|
|
664
|
+
"name": null,
|
|
665
|
+
"ofType": {
|
|
666
|
+
"kind": "SCALAR",
|
|
667
|
+
"name": "String",
|
|
668
|
+
"ofType": null
|
|
669
|
+
}
|
|
670
|
+
},
|
|
552
671
|
"isDeprecated": false,
|
|
553
672
|
"deprecationReason": null
|
|
554
673
|
},
|
|
555
674
|
{
|
|
556
675
|
"name": "name",
|
|
557
|
-
"description": "Name of
|
|
676
|
+
"description": "Name of the amenity.",
|
|
558
677
|
"args": [],
|
|
559
678
|
"type": {
|
|
560
679
|
"kind": "SCALAR",
|
|
@@ -566,19 +685,23 @@
|
|
|
566
685
|
},
|
|
567
686
|
{
|
|
568
687
|
"name": "location",
|
|
569
|
-
"description": "Geo location coordinates. This is a GeoJSON Point",
|
|
688
|
+
"description": "Geo location coordinates. This is a GeoJSON Point.",
|
|
570
689
|
"args": [],
|
|
571
690
|
"type": {
|
|
572
|
-
"kind": "
|
|
573
|
-
"name":
|
|
574
|
-
"ofType":
|
|
691
|
+
"kind": "NON_NULL",
|
|
692
|
+
"name": null,
|
|
693
|
+
"ofType": {
|
|
694
|
+
"kind": "OBJECT",
|
|
695
|
+
"name": "Point",
|
|
696
|
+
"ofType": null
|
|
697
|
+
}
|
|
575
698
|
},
|
|
576
699
|
"isDeprecated": false,
|
|
577
700
|
"deprecationReason": null
|
|
578
701
|
},
|
|
579
702
|
{
|
|
580
703
|
"name": "address",
|
|
581
|
-
"description": "
|
|
704
|
+
"description": "Address of the amenity.",
|
|
582
705
|
"args": [],
|
|
583
706
|
"type": {
|
|
584
707
|
"kind": "OBJECT",
|
|
@@ -590,14 +713,59 @@
|
|
|
590
713
|
},
|
|
591
714
|
{
|
|
592
715
|
"name": "type",
|
|
593
|
-
"description": "Type of amenity. An amenity can belong to multiple categories",
|
|
716
|
+
"description": "Type of amenity. An amenity can belong to multiple categories.",
|
|
594
717
|
"args": [],
|
|
595
718
|
"type": {
|
|
596
|
-
"kind": "
|
|
719
|
+
"kind": "NON_NULL",
|
|
720
|
+
"name": null,
|
|
721
|
+
"ofType": {
|
|
722
|
+
"kind": "LIST",
|
|
723
|
+
"name": null,
|
|
724
|
+
"ofType": {
|
|
725
|
+
"kind": "SCALAR",
|
|
726
|
+
"name": "String",
|
|
727
|
+
"ofType": null
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
"isDeprecated": false,
|
|
732
|
+
"deprecationReason": null
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"name": "distance",
|
|
736
|
+
"description": "Computed distance between station and amenity.",
|
|
737
|
+
"args": [],
|
|
738
|
+
"type": {
|
|
739
|
+
"kind": "SCALAR",
|
|
740
|
+
"name": "Int",
|
|
741
|
+
"ofType": null
|
|
742
|
+
},
|
|
743
|
+
"isDeprecated": true,
|
|
744
|
+
"deprecationReason": "In favor of station_distance."
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"name": "station_distance",
|
|
748
|
+
"description": "Computed distance between station and amenity.",
|
|
749
|
+
"args": [
|
|
750
|
+
{
|
|
751
|
+
"name": "unit",
|
|
752
|
+
"description": "Distance unit.",
|
|
753
|
+
"type": {
|
|
754
|
+
"kind": "ENUM",
|
|
755
|
+
"name": "DistanceUnit",
|
|
756
|
+
"ofType": null
|
|
757
|
+
},
|
|
758
|
+
"defaultValue": "meter",
|
|
759
|
+
"isDeprecated": false,
|
|
760
|
+
"deprecationReason": null
|
|
761
|
+
}
|
|
762
|
+
],
|
|
763
|
+
"type": {
|
|
764
|
+
"kind": "NON_NULL",
|
|
597
765
|
"name": null,
|
|
598
766
|
"ofType": {
|
|
599
767
|
"kind": "SCALAR",
|
|
600
|
-
"name": "
|
|
768
|
+
"name": "Float",
|
|
601
769
|
"ofType": null
|
|
602
770
|
}
|
|
603
771
|
},
|
|
@@ -605,36 +773,72 @@
|
|
|
605
773
|
"deprecationReason": null
|
|
606
774
|
},
|
|
607
775
|
{
|
|
608
|
-
"name": "
|
|
609
|
-
"description": "
|
|
776
|
+
"name": "foursquareUrl",
|
|
777
|
+
"description": "Full path URL to amenity foursquare page.",
|
|
610
778
|
"args": [],
|
|
611
779
|
"type": {
|
|
612
780
|
"kind": "SCALAR",
|
|
613
|
-
"name": "
|
|
781
|
+
"name": "String",
|
|
782
|
+
"ofType": null
|
|
783
|
+
},
|
|
784
|
+
"isDeprecated": true,
|
|
785
|
+
"deprecationReason": "Will be removed in the future."
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"name": "opening_hours",
|
|
789
|
+
"description": "Opening hours of the amenity.",
|
|
790
|
+
"args": [],
|
|
791
|
+
"type": {
|
|
792
|
+
"kind": "OBJECT",
|
|
793
|
+
"name": "AmenityOpeningHours",
|
|
614
794
|
"ofType": null
|
|
615
795
|
},
|
|
616
796
|
"isDeprecated": false,
|
|
617
797
|
"deprecationReason": null
|
|
618
798
|
},
|
|
619
799
|
{
|
|
620
|
-
"name": "
|
|
621
|
-
"description": "
|
|
800
|
+
"name": "pets_allowed",
|
|
801
|
+
"description": "Indicates whether pets are allowed. This does not apply to assistance dogs, which may have legal access.",
|
|
622
802
|
"args": [],
|
|
623
803
|
"type": {
|
|
624
804
|
"kind": "SCALAR",
|
|
625
|
-
"name": "
|
|
805
|
+
"name": "Boolean",
|
|
626
806
|
"ofType": null
|
|
627
807
|
},
|
|
628
808
|
"isDeprecated": false,
|
|
629
809
|
"deprecationReason": null
|
|
630
810
|
},
|
|
631
811
|
{
|
|
632
|
-
"name": "
|
|
633
|
-
"description": "
|
|
812
|
+
"name": "accessibility",
|
|
813
|
+
"description": "Accessibility options at the amenity.",
|
|
814
|
+
"args": [],
|
|
815
|
+
"type": {
|
|
816
|
+
"kind": "OBJECT",
|
|
817
|
+
"name": "AmenityAccessibility",
|
|
818
|
+
"ofType": null
|
|
819
|
+
},
|
|
820
|
+
"isDeprecated": false,
|
|
821
|
+
"deprecationReason": null
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"name": "contact",
|
|
825
|
+
"description": "Contact information for the amenity.",
|
|
826
|
+
"args": [],
|
|
827
|
+
"type": {
|
|
828
|
+
"kind": "OBJECT",
|
|
829
|
+
"name": "AmenityContact",
|
|
830
|
+
"ofType": null
|
|
831
|
+
},
|
|
832
|
+
"isDeprecated": false,
|
|
833
|
+
"deprecationReason": null
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"name": "rating",
|
|
837
|
+
"description": "Rating of an amenity, the value will be between 0.0 and 10.0. If no rating has been given, the value will be set to null.",
|
|
634
838
|
"args": [],
|
|
635
839
|
"type": {
|
|
636
840
|
"kind": "SCALAR",
|
|
637
|
-
"name": "
|
|
841
|
+
"name": "Float",
|
|
638
842
|
"ofType": null
|
|
639
843
|
},
|
|
640
844
|
"isDeprecated": false,
|
|
@@ -642,25 +846,41 @@
|
|
|
642
846
|
},
|
|
643
847
|
{
|
|
644
848
|
"name": "createdAt",
|
|
645
|
-
"description": "Date and time when an amenity was created",
|
|
849
|
+
"description": "Date and time when an amenity was created.",
|
|
646
850
|
"args": [],
|
|
647
851
|
"type": {
|
|
648
852
|
"kind": "SCALAR",
|
|
649
853
|
"name": "String",
|
|
650
854
|
"ofType": null
|
|
651
855
|
},
|
|
652
|
-
"isDeprecated":
|
|
653
|
-
"deprecationReason":
|
|
856
|
+
"isDeprecated": true,
|
|
857
|
+
"deprecationReason": "Will be removed in the future."
|
|
654
858
|
},
|
|
655
859
|
{
|
|
656
860
|
"name": "updatedAt",
|
|
657
|
-
"description": "Date and time when an amenity was last updated",
|
|
861
|
+
"description": "Date and time when an amenity was last updated.",
|
|
658
862
|
"args": [],
|
|
659
863
|
"type": {
|
|
660
864
|
"kind": "SCALAR",
|
|
661
865
|
"name": "String",
|
|
662
866
|
"ofType": null
|
|
663
867
|
},
|
|
868
|
+
"isDeprecated": true,
|
|
869
|
+
"deprecationReason": "In favor of last_updated."
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"name": "last_updated",
|
|
873
|
+
"description": "Date and time when an amenity was last updated.",
|
|
874
|
+
"args": [],
|
|
875
|
+
"type": {
|
|
876
|
+
"kind": "NON_NULL",
|
|
877
|
+
"name": null,
|
|
878
|
+
"ofType": {
|
|
879
|
+
"kind": "SCALAR",
|
|
880
|
+
"name": "DateTime",
|
|
881
|
+
"ofType": null
|
|
882
|
+
}
|
|
883
|
+
},
|
|
664
884
|
"isDeprecated": false,
|
|
665
885
|
"deprecationReason": null
|
|
666
886
|
}
|
|
@@ -690,6 +910,144 @@
|
|
|
690
910
|
"enumValues": null,
|
|
691
911
|
"possibleTypes": null
|
|
692
912
|
},
|
|
913
|
+
{
|
|
914
|
+
"kind": "SCALAR",
|
|
915
|
+
"name": "Boolean",
|
|
916
|
+
"description": "The `Boolean` scalar type represents `true` or `false`.",
|
|
917
|
+
"fields": null,
|
|
918
|
+
"inputFields": null,
|
|
919
|
+
"interfaces": null,
|
|
920
|
+
"enumValues": null,
|
|
921
|
+
"possibleTypes": null
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"kind": "OBJECT",
|
|
925
|
+
"name": "AmenityAccessibility",
|
|
926
|
+
"description": "Accessibility options at the amenity.",
|
|
927
|
+
"fields": [
|
|
928
|
+
{
|
|
929
|
+
"name": "wheelchair",
|
|
930
|
+
"description": "Type of wheelchair accessibility at the amenity.",
|
|
931
|
+
"args": [],
|
|
932
|
+
"type": {
|
|
933
|
+
"kind": "ENUM",
|
|
934
|
+
"name": "AmenityWheelchairAccessibilityType",
|
|
935
|
+
"ofType": null
|
|
936
|
+
},
|
|
937
|
+
"isDeprecated": false,
|
|
938
|
+
"deprecationReason": null
|
|
939
|
+
}
|
|
940
|
+
],
|
|
941
|
+
"inputFields": null,
|
|
942
|
+
"interfaces": [],
|
|
943
|
+
"enumValues": null,
|
|
944
|
+
"possibleTypes": null
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"kind": "OBJECT",
|
|
948
|
+
"name": "AmenityContact",
|
|
949
|
+
"description": "Contact information for the amenity.",
|
|
950
|
+
"fields": [
|
|
951
|
+
{
|
|
952
|
+
"name": "phone",
|
|
953
|
+
"description": "Phone number to contact the amenity.",
|
|
954
|
+
"args": [],
|
|
955
|
+
"type": {
|
|
956
|
+
"kind": "SCALAR",
|
|
957
|
+
"name": "String",
|
|
958
|
+
"ofType": null
|
|
959
|
+
},
|
|
960
|
+
"isDeprecated": false,
|
|
961
|
+
"deprecationReason": null
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"name": "website",
|
|
965
|
+
"description": "Website of the amenity.",
|
|
966
|
+
"args": [],
|
|
967
|
+
"type": {
|
|
968
|
+
"kind": "SCALAR",
|
|
969
|
+
"name": "String",
|
|
970
|
+
"ofType": null
|
|
971
|
+
},
|
|
972
|
+
"isDeprecated": false,
|
|
973
|
+
"deprecationReason": null
|
|
974
|
+
}
|
|
975
|
+
],
|
|
976
|
+
"inputFields": null,
|
|
977
|
+
"interfaces": [],
|
|
978
|
+
"enumValues": null,
|
|
979
|
+
"possibleTypes": null
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"kind": "INPUT_OBJECT",
|
|
983
|
+
"name": "AmenityListFilter",
|
|
984
|
+
"description": "Filter that can be applied to retrieve the amenity list.",
|
|
985
|
+
"fields": null,
|
|
986
|
+
"inputFields": [
|
|
987
|
+
{
|
|
988
|
+
"name": "type",
|
|
989
|
+
"description": "Type of amenity. An amenity can belong to multiple categories.",
|
|
990
|
+
"type": {
|
|
991
|
+
"kind": "LIST",
|
|
992
|
+
"name": null,
|
|
993
|
+
"ofType": {
|
|
994
|
+
"kind": "NON_NULL",
|
|
995
|
+
"name": null,
|
|
996
|
+
"ofType": {
|
|
997
|
+
"kind": "ENUM",
|
|
998
|
+
"name": "Amenities",
|
|
999
|
+
"ofType": null
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
"defaultValue": null,
|
|
1004
|
+
"isDeprecated": false,
|
|
1005
|
+
"deprecationReason": null
|
|
1006
|
+
}
|
|
1007
|
+
],
|
|
1008
|
+
"interfaces": null,
|
|
1009
|
+
"enumValues": null,
|
|
1010
|
+
"possibleTypes": null
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"kind": "OBJECT",
|
|
1014
|
+
"name": "AmenityOpeningHours",
|
|
1015
|
+
"description": "Opening and access hours of the location.",
|
|
1016
|
+
"fields": [
|
|
1017
|
+
{
|
|
1018
|
+
"name": "twentyfourseven",
|
|
1019
|
+
"description": "True to represent 24 hours a day and 7 days a week.",
|
|
1020
|
+
"args": [],
|
|
1021
|
+
"type": {
|
|
1022
|
+
"kind": "SCALAR",
|
|
1023
|
+
"name": "Boolean",
|
|
1024
|
+
"ofType": null
|
|
1025
|
+
},
|
|
1026
|
+
"isDeprecated": false,
|
|
1027
|
+
"deprecationReason": null
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
"name": "regular_hours",
|
|
1031
|
+
"description": "Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object.",
|
|
1032
|
+
"args": [],
|
|
1033
|
+
"type": {
|
|
1034
|
+
"kind": "LIST",
|
|
1035
|
+
"name": null,
|
|
1036
|
+
"ofType": {
|
|
1037
|
+
"kind": "OBJECT",
|
|
1038
|
+
"name": "AmenityRegularHours",
|
|
1039
|
+
"ofType": null
|
|
1040
|
+
}
|
|
1041
|
+
},
|
|
1042
|
+
"isDeprecated": false,
|
|
1043
|
+
"deprecationReason": null
|
|
1044
|
+
}
|
|
1045
|
+
],
|
|
1046
|
+
"inputFields": null,
|
|
1047
|
+
"interfaces": [],
|
|
1048
|
+
"enumValues": null,
|
|
1049
|
+
"possibleTypes": null
|
|
1050
|
+
},
|
|
693
1051
|
{
|
|
694
1052
|
"kind": "INPUT_OBJECT",
|
|
695
1053
|
"name": "AmenityPreferencesInput",
|
|
@@ -741,6 +1099,53 @@
|
|
|
741
1099
|
"enumValues": null,
|
|
742
1100
|
"possibleTypes": null
|
|
743
1101
|
},
|
|
1102
|
+
{
|
|
1103
|
+
"kind": "OBJECT",
|
|
1104
|
+
"name": "AmenityRegularHours",
|
|
1105
|
+
"description": "Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object.",
|
|
1106
|
+
"fields": [
|
|
1107
|
+
{
|
|
1108
|
+
"name": "weekday",
|
|
1109
|
+
"description": "Number of days in the week, from Monday (1) till Sunday (7).",
|
|
1110
|
+
"args": [],
|
|
1111
|
+
"type": {
|
|
1112
|
+
"kind": "SCALAR",
|
|
1113
|
+
"name": "Int",
|
|
1114
|
+
"ofType": null
|
|
1115
|
+
},
|
|
1116
|
+
"isDeprecated": false,
|
|
1117
|
+
"deprecationReason": null
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"name": "period_begin",
|
|
1121
|
+
"description": "Beginning of the regular period, in local time, given in hours and minutes. Must be in 24h format with leading zeros. Example: \"18:15\". Hour/Minute separator: \":\" Regex: ([0-1][0-9]|2[1-3]):[0-5][0-9].",
|
|
1122
|
+
"args": [],
|
|
1123
|
+
"type": {
|
|
1124
|
+
"kind": "SCALAR",
|
|
1125
|
+
"name": "String",
|
|
1126
|
+
"ofType": null
|
|
1127
|
+
},
|
|
1128
|
+
"isDeprecated": false,
|
|
1129
|
+
"deprecationReason": null
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"name": "period_end",
|
|
1133
|
+
"description": "End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin.",
|
|
1134
|
+
"args": [],
|
|
1135
|
+
"type": {
|
|
1136
|
+
"kind": "SCALAR",
|
|
1137
|
+
"name": "String",
|
|
1138
|
+
"ofType": null
|
|
1139
|
+
},
|
|
1140
|
+
"isDeprecated": false,
|
|
1141
|
+
"deprecationReason": null
|
|
1142
|
+
}
|
|
1143
|
+
],
|
|
1144
|
+
"inputFields": null,
|
|
1145
|
+
"interfaces": [],
|
|
1146
|
+
"enumValues": null,
|
|
1147
|
+
"possibleTypes": null
|
|
1148
|
+
},
|
|
744
1149
|
{
|
|
745
1150
|
"kind": "ENUM",
|
|
746
1151
|
"name": "AmenityType",
|
|
@@ -812,6 +1217,41 @@
|
|
|
812
1217
|
],
|
|
813
1218
|
"possibleTypes": null
|
|
814
1219
|
},
|
|
1220
|
+
{
|
|
1221
|
+
"kind": "ENUM",
|
|
1222
|
+
"name": "AmenityWheelchairAccessibilityType",
|
|
1223
|
+
"description": "Type of wheelchair accessibility at the amenity.",
|
|
1224
|
+
"fields": null,
|
|
1225
|
+
"inputFields": null,
|
|
1226
|
+
"interfaces": null,
|
|
1227
|
+
"enumValues": [
|
|
1228
|
+
{
|
|
1229
|
+
"name": "yes",
|
|
1230
|
+
"description": "Wheelchairs have full unrestricted access.",
|
|
1231
|
+
"isDeprecated": false,
|
|
1232
|
+
"deprecationReason": null
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"name": "limited",
|
|
1236
|
+
"description": "Wheelchairs have partial access (e.g some areas can be accessed and others not, areas requiring assistance by someone pushing up a steep gradient).",
|
|
1237
|
+
"isDeprecated": false,
|
|
1238
|
+
"deprecationReason": null
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"name": "no",
|
|
1242
|
+
"description": "Wheelchairs have no unrestricted access (e.g. stair only access).",
|
|
1243
|
+
"isDeprecated": false,
|
|
1244
|
+
"deprecationReason": null
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
"name": "designated",
|
|
1248
|
+
"description": "The amenity is designated or purpose-built for wheelchairs (e.g. bathroom designed for wheelchair access only).",
|
|
1249
|
+
"isDeprecated": false,
|
|
1250
|
+
"deprecationReason": null
|
|
1251
|
+
}
|
|
1252
|
+
],
|
|
1253
|
+
"possibleTypes": null
|
|
1254
|
+
},
|
|
815
1255
|
{
|
|
816
1256
|
"kind": "INPUT_OBJECT",
|
|
817
1257
|
"name": "AuthorizeConnectedVehicleInput",
|
|
@@ -1326,7 +1766,7 @@
|
|
|
1326
1766
|
{
|
|
1327
1767
|
"kind": "ENUM",
|
|
1328
1768
|
"name": "ChargeSpeedUnit",
|
|
1329
|
-
"description":
|
|
1769
|
+
"description": null,
|
|
1330
1770
|
"fields": null,
|
|
1331
1771
|
"inputFields": null,
|
|
1332
1772
|
"interfaces": null,
|
|
@@ -1493,7 +1933,7 @@
|
|
|
1493
1933
|
{
|
|
1494
1934
|
"kind": "ENUM",
|
|
1495
1935
|
"name": "ChargerStatus",
|
|
1496
|
-
"description":
|
|
1936
|
+
"description": null,
|
|
1497
1937
|
"fields": null,
|
|
1498
1938
|
"inputFields": null,
|
|
1499
1939
|
"interfaces": null,
|
|
@@ -1924,16 +2364,6 @@
|
|
|
1924
2364
|
"enumValues": null,
|
|
1925
2365
|
"possibleTypes": null
|
|
1926
2366
|
},
|
|
1927
|
-
{
|
|
1928
|
-
"kind": "SCALAR",
|
|
1929
|
-
"name": "Boolean",
|
|
1930
|
-
"description": "The `Boolean` scalar type represents `true` or `false`.",
|
|
1931
|
-
"fields": null,
|
|
1932
|
-
"inputFields": null,
|
|
1933
|
-
"interfaces": null,
|
|
1934
|
-
"enumValues": null,
|
|
1935
|
-
"possibleTypes": null
|
|
1936
|
-
},
|
|
1937
2367
|
{
|
|
1938
2368
|
"kind": "INPUT_OBJECT",
|
|
1939
2369
|
"name": "ConnectFilter",
|
|
@@ -3687,6 +4117,18 @@
|
|
|
3687
4117
|
"description": "The connector type is NEMA 14-50, 3 pins, rating of 50 A.",
|
|
3688
4118
|
"isDeprecated": false,
|
|
3689
4119
|
"deprecationReason": null
|
|
4120
|
+
},
|
|
4121
|
+
{
|
|
4122
|
+
"name": "GBT_AC",
|
|
4123
|
+
"description": "Guobiao GB/T 20234.2 AC socket/connector.",
|
|
4124
|
+
"isDeprecated": false,
|
|
4125
|
+
"deprecationReason": null
|
|
4126
|
+
},
|
|
4127
|
+
{
|
|
4128
|
+
"name": "GBT_DC",
|
|
4129
|
+
"description": "Guobiao GB/T 20234.3 DC connector.",
|
|
4130
|
+
"isDeprecated": false,
|
|
4131
|
+
"deprecationReason": null
|
|
3690
4132
|
}
|
|
3691
4133
|
],
|
|
3692
4134
|
"possibleTypes": null
|
|
@@ -3829,6 +4271,12 @@
|
|
|
3829
4271
|
"inputFields": null,
|
|
3830
4272
|
"interfaces": null,
|
|
3831
4273
|
"enumValues": [
|
|
4274
|
+
{
|
|
4275
|
+
"name": "AA",
|
|
4276
|
+
"description": null,
|
|
4277
|
+
"isDeprecated": false,
|
|
4278
|
+
"deprecationReason": null
|
|
4279
|
+
},
|
|
3832
4280
|
{
|
|
3833
4281
|
"name": "AD",
|
|
3834
4282
|
"description": null,
|
|
@@ -5554,16 +6002,12 @@
|
|
|
5554
6002
|
"description": "Season of a route.",
|
|
5555
6003
|
"args": [],
|
|
5556
6004
|
"type": {
|
|
5557
|
-
"kind": "
|
|
5558
|
-
"name":
|
|
5559
|
-
"ofType":
|
|
5560
|
-
"kind": "ENUM",
|
|
5561
|
-
"name": "RouteSeason",
|
|
5562
|
-
"ofType": null
|
|
5563
|
-
}
|
|
6005
|
+
"kind": "ENUM",
|
|
6006
|
+
"name": "RouteSeason",
|
|
6007
|
+
"ofType": null
|
|
5564
6008
|
},
|
|
5565
|
-
"isDeprecated":
|
|
5566
|
-
"deprecationReason":
|
|
6009
|
+
"isDeprecated": true,
|
|
6010
|
+
"deprecationReason": "In favor of weather."
|
|
5567
6011
|
},
|
|
5568
6012
|
{
|
|
5569
6013
|
"name": "alternative_station_radius",
|
|
@@ -5614,12 +6058,36 @@
|
|
|
5614
6058
|
"deprecationReason": null
|
|
5615
6059
|
},
|
|
5616
6060
|
{
|
|
5617
|
-
"name": "
|
|
5618
|
-
"description": "[BETA]
|
|
6061
|
+
"name": "driving_preferences",
|
|
6062
|
+
"description": "[BETA] Configuration options for the route's driving conditions. Includes factors to adjust average speed, set a maximum speed, and define a base driving style. If not specified, no adjustments are applied.",
|
|
5619
6063
|
"args": [],
|
|
5620
6064
|
"type": {
|
|
5621
6065
|
"kind": "OBJECT",
|
|
5622
|
-
"name": "
|
|
6066
|
+
"name": "RouteDrivingPreferences",
|
|
6067
|
+
"ofType": null
|
|
6068
|
+
},
|
|
6069
|
+
"isDeprecated": false,
|
|
6070
|
+
"deprecationReason": null
|
|
6071
|
+
},
|
|
6072
|
+
{
|
|
6073
|
+
"name": "weather",
|
|
6074
|
+
"description": "Weather configuration for the route. Defined by a preset or custom weather conditions.",
|
|
6075
|
+
"args": [],
|
|
6076
|
+
"type": {
|
|
6077
|
+
"kind": "OBJECT",
|
|
6078
|
+
"name": "RouteWeather",
|
|
6079
|
+
"ofType": null
|
|
6080
|
+
},
|
|
6081
|
+
"isDeprecated": false,
|
|
6082
|
+
"deprecationReason": null
|
|
6083
|
+
},
|
|
6084
|
+
{
|
|
6085
|
+
"name": "station_preferences",
|
|
6086
|
+
"description": "Charging stations preferences for route calculation.",
|
|
6087
|
+
"args": [],
|
|
6088
|
+
"type": {
|
|
6089
|
+
"kind": "OBJECT",
|
|
6090
|
+
"name": "RouteStationPreferences",
|
|
5623
6091
|
"ofType": null
|
|
5624
6092
|
},
|
|
5625
6093
|
"isDeprecated": false,
|
|
@@ -5707,7 +6175,7 @@
|
|
|
5707
6175
|
},
|
|
5708
6176
|
{
|
|
5709
6177
|
"name": "operators",
|
|
5710
|
-
"description": "
|
|
6178
|
+
"description": "Operator preferences and restrictions for route calculation. If not specified, excludes operators per project settings, but applies no operator ranking.",
|
|
5711
6179
|
"type": {
|
|
5712
6180
|
"kind": "INPUT_OBJECT",
|
|
5713
6181
|
"name": "RouteOperatorPreferencesInput",
|
|
@@ -5725,7 +6193,7 @@
|
|
|
5725
6193
|
"name": "RouteSeason",
|
|
5726
6194
|
"ofType": null
|
|
5727
6195
|
},
|
|
5728
|
-
"defaultValue":
|
|
6196
|
+
"defaultValue": null,
|
|
5729
6197
|
"isDeprecated": false,
|
|
5730
6198
|
"deprecationReason": null
|
|
5731
6199
|
},
|
|
@@ -5774,11 +6242,35 @@
|
|
|
5774
6242
|
"deprecationReason": null
|
|
5775
6243
|
},
|
|
5776
6244
|
{
|
|
5777
|
-
"name": "
|
|
5778
|
-
"description": "
|
|
6245
|
+
"name": "weather",
|
|
6246
|
+
"description": "Weather configuration for the route. Defined by a preset or custom weather conditions.",
|
|
5779
6247
|
"type": {
|
|
5780
6248
|
"kind": "INPUT_OBJECT",
|
|
5781
|
-
"name": "
|
|
6249
|
+
"name": "RouteWeatherInput",
|
|
6250
|
+
"ofType": null
|
|
6251
|
+
},
|
|
6252
|
+
"defaultValue": null,
|
|
6253
|
+
"isDeprecated": false,
|
|
6254
|
+
"deprecationReason": null
|
|
6255
|
+
},
|
|
6256
|
+
{
|
|
6257
|
+
"name": "station_preferences",
|
|
6258
|
+
"description": "Charging stations preferences for route calculation.",
|
|
6259
|
+
"type": {
|
|
6260
|
+
"kind": "INPUT_OBJECT",
|
|
6261
|
+
"name": "RouteStationPreferencesInput",
|
|
6262
|
+
"ofType": null
|
|
6263
|
+
},
|
|
6264
|
+
"defaultValue": null,
|
|
6265
|
+
"isDeprecated": false,
|
|
6266
|
+
"deprecationReason": null
|
|
6267
|
+
},
|
|
6268
|
+
{
|
|
6269
|
+
"name": "driving_preferences",
|
|
6270
|
+
"description": "[BETA] Configuration options for the route's driving conditions. Includes factors to adjust average speed, set a maximum speed, and define a base driving style. If not specified, no adjustments are applied.",
|
|
6271
|
+
"type": {
|
|
6272
|
+
"kind": "INPUT_OBJECT",
|
|
6273
|
+
"name": "RouteDrivingPreferencesInput",
|
|
5782
6274
|
"ofType": null
|
|
5783
6275
|
},
|
|
5784
6276
|
"defaultValue": null,
|
|
@@ -7788,35 +8280,78 @@
|
|
|
7788
8280
|
],
|
|
7789
8281
|
"possibleTypes": null
|
|
7790
8282
|
},
|
|
8283
|
+
{
|
|
8284
|
+
"kind": "INPUT_OBJECT",
|
|
8285
|
+
"name": "DistanceInput",
|
|
8286
|
+
"description": null,
|
|
8287
|
+
"fields": null,
|
|
8288
|
+
"inputFields": [
|
|
8289
|
+
{
|
|
8290
|
+
"name": "value",
|
|
8291
|
+
"description": "Value of the distance.",
|
|
8292
|
+
"type": {
|
|
8293
|
+
"kind": "NON_NULL",
|
|
8294
|
+
"name": null,
|
|
8295
|
+
"ofType": {
|
|
8296
|
+
"kind": "SCALAR",
|
|
8297
|
+
"name": "Float",
|
|
8298
|
+
"ofType": null
|
|
8299
|
+
}
|
|
8300
|
+
},
|
|
8301
|
+
"defaultValue": null,
|
|
8302
|
+
"isDeprecated": false,
|
|
8303
|
+
"deprecationReason": null
|
|
8304
|
+
},
|
|
8305
|
+
{
|
|
8306
|
+
"name": "unit",
|
|
8307
|
+
"description": "Unit of distance.",
|
|
8308
|
+
"type": {
|
|
8309
|
+
"kind": "NON_NULL",
|
|
8310
|
+
"name": null,
|
|
8311
|
+
"ofType": {
|
|
8312
|
+
"kind": "ENUM",
|
|
8313
|
+
"name": "DistanceUnit",
|
|
8314
|
+
"ofType": null
|
|
8315
|
+
}
|
|
8316
|
+
},
|
|
8317
|
+
"defaultValue": null,
|
|
8318
|
+
"isDeprecated": false,
|
|
8319
|
+
"deprecationReason": null
|
|
8320
|
+
}
|
|
8321
|
+
],
|
|
8322
|
+
"interfaces": null,
|
|
8323
|
+
"enumValues": null,
|
|
8324
|
+
"possibleTypes": null
|
|
8325
|
+
},
|
|
7791
8326
|
{
|
|
7792
8327
|
"kind": "ENUM",
|
|
7793
8328
|
"name": "DistanceUnit",
|
|
7794
|
-
"description":
|
|
8329
|
+
"description": null,
|
|
7795
8330
|
"fields": null,
|
|
7796
8331
|
"inputFields": null,
|
|
7797
8332
|
"interfaces": null,
|
|
7798
8333
|
"enumValues": [
|
|
7799
8334
|
{
|
|
7800
8335
|
"name": "meter",
|
|
7801
|
-
"description": "
|
|
8336
|
+
"description": "Distance in meters.",
|
|
7802
8337
|
"isDeprecated": false,
|
|
7803
8338
|
"deprecationReason": null
|
|
7804
8339
|
},
|
|
7805
8340
|
{
|
|
7806
8341
|
"name": "foot",
|
|
7807
|
-
"description": "
|
|
8342
|
+
"description": "Distance in feet.",
|
|
7808
8343
|
"isDeprecated": false,
|
|
7809
8344
|
"deprecationReason": null
|
|
7810
8345
|
},
|
|
7811
8346
|
{
|
|
7812
8347
|
"name": "kilometer",
|
|
7813
|
-
"description": "
|
|
8348
|
+
"description": "Distance in kilometers.",
|
|
7814
8349
|
"isDeprecated": false,
|
|
7815
8350
|
"deprecationReason": null
|
|
7816
8351
|
},
|
|
7817
8352
|
{
|
|
7818
8353
|
"name": "mile",
|
|
7819
|
-
"description": "
|
|
8354
|
+
"description": "Distance in miles.",
|
|
7820
8355
|
"isDeprecated": false,
|
|
7821
8356
|
"deprecationReason": null
|
|
7822
8357
|
}
|
|
@@ -9238,29 +9773,6 @@
|
|
|
9238
9773
|
],
|
|
9239
9774
|
"possibleTypes": null
|
|
9240
9775
|
},
|
|
9241
|
-
{
|
|
9242
|
-
"kind": "ENUM",
|
|
9243
|
-
"name": "InstructionsFormat",
|
|
9244
|
-
"description": "Navigation service providers available",
|
|
9245
|
-
"fields": null,
|
|
9246
|
-
"inputFields": null,
|
|
9247
|
-
"interfaces": null,
|
|
9248
|
-
"enumValues": [
|
|
9249
|
-
{
|
|
9250
|
-
"name": "Chargetrip",
|
|
9251
|
-
"description": "Chargetrip raw instructions",
|
|
9252
|
-
"isDeprecated": false,
|
|
9253
|
-
"deprecationReason": null
|
|
9254
|
-
},
|
|
9255
|
-
{
|
|
9256
|
-
"name": "MapboxV5",
|
|
9257
|
-
"description": "Mapbox instructions mapping",
|
|
9258
|
-
"isDeprecated": false,
|
|
9259
|
-
"deprecationReason": null
|
|
9260
|
-
}
|
|
9261
|
-
],
|
|
9262
|
-
"possibleTypes": null
|
|
9263
|
-
},
|
|
9264
9776
|
{
|
|
9265
9777
|
"kind": "OBJECT",
|
|
9266
9778
|
"name": "Isoline",
|
|
@@ -9298,6 +9810,31 @@
|
|
|
9298
9810
|
"isDeprecated": false,
|
|
9299
9811
|
"deprecationReason": null
|
|
9300
9812
|
},
|
|
9813
|
+
{
|
|
9814
|
+
"name": "maximum_distance",
|
|
9815
|
+
"description": "Distance from the origin to the furthest reachable point within the isoline. Represents the longest drivable distance, not a straight-line or vehicle range.",
|
|
9816
|
+
"args": [
|
|
9817
|
+
{
|
|
9818
|
+
"name": "unit",
|
|
9819
|
+
"description": null,
|
|
9820
|
+
"type": {
|
|
9821
|
+
"kind": "ENUM",
|
|
9822
|
+
"name": "DistanceUnit",
|
|
9823
|
+
"ofType": null
|
|
9824
|
+
},
|
|
9825
|
+
"defaultValue": "meter",
|
|
9826
|
+
"isDeprecated": false,
|
|
9827
|
+
"deprecationReason": null
|
|
9828
|
+
}
|
|
9829
|
+
],
|
|
9830
|
+
"type": {
|
|
9831
|
+
"kind": "SCALAR",
|
|
9832
|
+
"name": "Float",
|
|
9833
|
+
"ofType": null
|
|
9834
|
+
},
|
|
9835
|
+
"isDeprecated": false,
|
|
9836
|
+
"deprecationReason": null
|
|
9837
|
+
},
|
|
9301
9838
|
{
|
|
9302
9839
|
"name": "polygons",
|
|
9303
9840
|
"description": "Shape of the isoline consisting in a list of multipolygons.",
|
|
@@ -9647,6 +10184,18 @@
|
|
|
9647
10184
|
"defaultValue": null,
|
|
9648
10185
|
"isDeprecated": false,
|
|
9649
10186
|
"deprecationReason": null
|
|
10187
|
+
},
|
|
10188
|
+
{
|
|
10189
|
+
"name": "maximum_speed",
|
|
10190
|
+
"description": "[BETA] User-defined maximum speed used for the isoline.",
|
|
10191
|
+
"type": {
|
|
10192
|
+
"kind": "INPUT_OBJECT",
|
|
10193
|
+
"name": "MaximumSpeedInput",
|
|
10194
|
+
"ofType": null
|
|
10195
|
+
},
|
|
10196
|
+
"defaultValue": null,
|
|
10197
|
+
"isDeprecated": false,
|
|
10198
|
+
"deprecationReason": null
|
|
9650
10199
|
}
|
|
9651
10200
|
],
|
|
9652
10201
|
"interfaces": null,
|
|
@@ -9928,6 +10477,18 @@
|
|
|
9928
10477
|
},
|
|
9929
10478
|
"isDeprecated": false,
|
|
9930
10479
|
"deprecationReason": null
|
|
10480
|
+
},
|
|
10481
|
+
{
|
|
10482
|
+
"name": "maximum_speed",
|
|
10483
|
+
"description": "[BETA] Maximum speed to consider when generating the isoline. In the segments where legal speed is lower than this value, the legal speed will be used instead.",
|
|
10484
|
+
"args": [],
|
|
10485
|
+
"type": {
|
|
10486
|
+
"kind": "OBJECT",
|
|
10487
|
+
"name": "MaximumSpeed",
|
|
10488
|
+
"ofType": null
|
|
10489
|
+
},
|
|
10490
|
+
"isDeprecated": false,
|
|
10491
|
+
"deprecationReason": null
|
|
9931
10492
|
}
|
|
9932
10493
|
],
|
|
9933
10494
|
"inputFields": null,
|
|
@@ -10093,46 +10654,6 @@
|
|
|
10093
10654
|
],
|
|
10094
10655
|
"possibleTypes": null
|
|
10095
10656
|
},
|
|
10096
|
-
{
|
|
10097
|
-
"kind": "ENUM",
|
|
10098
|
-
"name": "MappingLanguage",
|
|
10099
|
-
"description": "Preferred language for the mapping",
|
|
10100
|
-
"fields": null,
|
|
10101
|
-
"inputFields": null,
|
|
10102
|
-
"interfaces": null,
|
|
10103
|
-
"enumValues": [
|
|
10104
|
-
{
|
|
10105
|
-
"name": "en",
|
|
10106
|
-
"description": "English(US)",
|
|
10107
|
-
"isDeprecated": false,
|
|
10108
|
-
"deprecationReason": null
|
|
10109
|
-
}
|
|
10110
|
-
],
|
|
10111
|
-
"possibleTypes": null
|
|
10112
|
-
},
|
|
10113
|
-
{
|
|
10114
|
-
"kind": "ENUM",
|
|
10115
|
-
"name": "MappingProvider",
|
|
10116
|
-
"description": "Navigation service providers available",
|
|
10117
|
-
"fields": null,
|
|
10118
|
-
"inputFields": null,
|
|
10119
|
-
"interfaces": null,
|
|
10120
|
-
"enumValues": [
|
|
10121
|
-
{
|
|
10122
|
-
"name": "Chargetrip",
|
|
10123
|
-
"description": "Chargetrip raw instructions",
|
|
10124
|
-
"isDeprecated": false,
|
|
10125
|
-
"deprecationReason": null
|
|
10126
|
-
},
|
|
10127
|
-
{
|
|
10128
|
-
"name": "MapboxV5",
|
|
10129
|
-
"description": "Mapbox instructions mapping",
|
|
10130
|
-
"isDeprecated": false,
|
|
10131
|
-
"deprecationReason": null
|
|
10132
|
-
}
|
|
10133
|
-
],
|
|
10134
|
-
"possibleTypes": null
|
|
10135
|
-
},
|
|
10136
10657
|
{
|
|
10137
10658
|
"kind": "OBJECT",
|
|
10138
10659
|
"name": "MaximumSpeed",
|
|
@@ -10668,8 +11189,8 @@
|
|
|
10668
11189
|
"name": "ID",
|
|
10669
11190
|
"ofType": null
|
|
10670
11191
|
},
|
|
10671
|
-
"isDeprecated":
|
|
10672
|
-
"deprecationReason":
|
|
11192
|
+
"isDeprecated": true,
|
|
11193
|
+
"deprecationReason": "In favor of `createRoute`."
|
|
10673
11194
|
},
|
|
10674
11195
|
{
|
|
10675
11196
|
"name": "createRoute",
|
|
@@ -10713,11 +11234,11 @@
|
|
|
10713
11234
|
{
|
|
10714
11235
|
"kind": "OBJECT",
|
|
10715
11236
|
"name": "Navigation",
|
|
10716
|
-
"description": "The navigation session data",
|
|
11237
|
+
"description": "The navigation session data.",
|
|
10717
11238
|
"fields": [
|
|
10718
11239
|
{
|
|
10719
11240
|
"name": "id",
|
|
10720
|
-
"description": "ID of the navigation session",
|
|
11241
|
+
"description": "ID of the navigation session.",
|
|
10721
11242
|
"args": [],
|
|
10722
11243
|
"type": {
|
|
10723
11244
|
"kind": "NON_NULL",
|
|
@@ -10732,15 +11253,15 @@
|
|
|
10732
11253
|
"deprecationReason": null
|
|
10733
11254
|
},
|
|
10734
11255
|
{
|
|
10735
|
-
"name": "
|
|
10736
|
-
"description": "
|
|
11256
|
+
"name": "overview",
|
|
11257
|
+
"description": "Navigation session details overview.",
|
|
10737
11258
|
"args": [],
|
|
10738
11259
|
"type": {
|
|
10739
11260
|
"kind": "NON_NULL",
|
|
10740
11261
|
"name": null,
|
|
10741
11262
|
"ofType": {
|
|
10742
|
-
"kind": "
|
|
10743
|
-
"name": "
|
|
11263
|
+
"kind": "OBJECT",
|
|
11264
|
+
"name": "NavigationOverview",
|
|
10744
11265
|
"ofType": null
|
|
10745
11266
|
}
|
|
10746
11267
|
},
|
|
@@ -10748,9 +11269,48 @@
|
|
|
10748
11269
|
"deprecationReason": null
|
|
10749
11270
|
},
|
|
10750
11271
|
{
|
|
10751
|
-
"name": "
|
|
10752
|
-
"description": "The
|
|
11272
|
+
"name": "status",
|
|
11273
|
+
"description": "The status of a navigation session. The status can be driving, charging, finished, or error.",
|
|
11274
|
+
"args": [],
|
|
11275
|
+
"type": {
|
|
11276
|
+
"kind": "NON_NULL",
|
|
11277
|
+
"name": null,
|
|
11278
|
+
"ofType": {
|
|
11279
|
+
"kind": "ENUM",
|
|
11280
|
+
"name": "NavigationStatus",
|
|
11281
|
+
"ofType": null
|
|
11282
|
+
}
|
|
11283
|
+
},
|
|
11284
|
+
"isDeprecated": false,
|
|
11285
|
+
"deprecationReason": null
|
|
11286
|
+
},
|
|
11287
|
+
{
|
|
11288
|
+
"name": "meta",
|
|
11289
|
+
"description": "Navigation meta information.",
|
|
10753
11290
|
"args": [],
|
|
11291
|
+
"type": {
|
|
11292
|
+
"kind": "OBJECT",
|
|
11293
|
+
"name": "NavigationMeta",
|
|
11294
|
+
"ofType": null
|
|
11295
|
+
},
|
|
11296
|
+
"isDeprecated": false,
|
|
11297
|
+
"deprecationReason": null
|
|
11298
|
+
}
|
|
11299
|
+
],
|
|
11300
|
+
"inputFields": null,
|
|
11301
|
+
"interfaces": [],
|
|
11302
|
+
"enumValues": null,
|
|
11303
|
+
"possibleTypes": null
|
|
11304
|
+
},
|
|
11305
|
+
{
|
|
11306
|
+
"kind": "INPUT_OBJECT",
|
|
11307
|
+
"name": "NavigationFinishInput",
|
|
11308
|
+
"description": "Input for the navigation recalculate.",
|
|
11309
|
+
"fields": null,
|
|
11310
|
+
"inputFields": [
|
|
11311
|
+
{
|
|
11312
|
+
"name": "id",
|
|
11313
|
+
"description": "ID of the navigation session.",
|
|
10754
11314
|
"type": {
|
|
10755
11315
|
"kind": "NON_NULL",
|
|
10756
11316
|
"name": null,
|
|
@@ -10760,28 +11320,82 @@
|
|
|
10760
11320
|
"ofType": null
|
|
10761
11321
|
}
|
|
10762
11322
|
},
|
|
11323
|
+
"defaultValue": null,
|
|
10763
11324
|
"isDeprecated": false,
|
|
10764
11325
|
"deprecationReason": null
|
|
10765
11326
|
},
|
|
10766
11327
|
{
|
|
10767
|
-
"name": "
|
|
10768
|
-
"description": "
|
|
11328
|
+
"name": "current_location",
|
|
11329
|
+
"description": "Current coordinates.",
|
|
11330
|
+
"type": {
|
|
11331
|
+
"kind": "NON_NULL",
|
|
11332
|
+
"name": null,
|
|
11333
|
+
"ofType": {
|
|
11334
|
+
"kind": "INPUT_OBJECT",
|
|
11335
|
+
"name": "PointInput",
|
|
11336
|
+
"ofType": null
|
|
11337
|
+
}
|
|
11338
|
+
},
|
|
11339
|
+
"defaultValue": null,
|
|
11340
|
+
"isDeprecated": false,
|
|
11341
|
+
"deprecationReason": null
|
|
11342
|
+
}
|
|
11343
|
+
],
|
|
11344
|
+
"interfaces": null,
|
|
11345
|
+
"enumValues": null,
|
|
11346
|
+
"possibleTypes": null
|
|
11347
|
+
},
|
|
11348
|
+
{
|
|
11349
|
+
"kind": "OBJECT",
|
|
11350
|
+
"name": "NavigationMeta",
|
|
11351
|
+
"description": "Navigation meta information.",
|
|
11352
|
+
"fields": [
|
|
11353
|
+
{
|
|
11354
|
+
"name": "created_at",
|
|
11355
|
+
"description": "Creation time of the navigation session.",
|
|
10769
11356
|
"args": [],
|
|
10770
11357
|
"type": {
|
|
10771
11358
|
"kind": "NON_NULL",
|
|
10772
11359
|
"name": null,
|
|
10773
11360
|
"ofType": {
|
|
10774
|
-
"kind": "
|
|
10775
|
-
"name": "
|
|
11361
|
+
"kind": "SCALAR",
|
|
11362
|
+
"name": "DateTime",
|
|
10776
11363
|
"ofType": null
|
|
10777
11364
|
}
|
|
10778
11365
|
},
|
|
10779
11366
|
"isDeprecated": false,
|
|
10780
11367
|
"deprecationReason": null
|
|
10781
11368
|
},
|
|
11369
|
+
{
|
|
11370
|
+
"name": "updated_at",
|
|
11371
|
+
"description": "Last updated time of the navigation session.",
|
|
11372
|
+
"args": [],
|
|
11373
|
+
"type": {
|
|
11374
|
+
"kind": "NON_NULL",
|
|
11375
|
+
"name": null,
|
|
11376
|
+
"ofType": {
|
|
11377
|
+
"kind": "SCALAR",
|
|
11378
|
+
"name": "DateTime",
|
|
11379
|
+
"ofType": null
|
|
11380
|
+
}
|
|
11381
|
+
},
|
|
11382
|
+
"isDeprecated": false,
|
|
11383
|
+
"deprecationReason": null
|
|
11384
|
+
}
|
|
11385
|
+
],
|
|
11386
|
+
"inputFields": null,
|
|
11387
|
+
"interfaces": [],
|
|
11388
|
+
"enumValues": null,
|
|
11389
|
+
"possibleTypes": null
|
|
11390
|
+
},
|
|
11391
|
+
{
|
|
11392
|
+
"kind": "OBJECT",
|
|
11393
|
+
"name": "NavigationOverview",
|
|
11394
|
+
"description": "The navigation session overview details.",
|
|
11395
|
+
"fields": [
|
|
10782
11396
|
{
|
|
10783
11397
|
"name": "state_of_charge",
|
|
10784
|
-
"description": "State of charge at the last known location",
|
|
11398
|
+
"description": "State of charge at the last known location.",
|
|
10785
11399
|
"args": [
|
|
10786
11400
|
{
|
|
10787
11401
|
"name": "unit",
|
|
@@ -10810,7 +11424,7 @@
|
|
|
10810
11424
|
},
|
|
10811
11425
|
{
|
|
10812
11426
|
"name": "last_known_location",
|
|
10813
|
-
"description": "Last known location",
|
|
11427
|
+
"description": "Last known location.",
|
|
10814
11428
|
"args": [],
|
|
10815
11429
|
"type": {
|
|
10816
11430
|
"kind": "NON_NULL",
|
|
@@ -10826,7 +11440,7 @@
|
|
|
10826
11440
|
},
|
|
10827
11441
|
{
|
|
10828
11442
|
"name": "next_station",
|
|
10829
|
-
"description": "Next charging station",
|
|
11443
|
+
"description": "Next charging station.",
|
|
10830
11444
|
"args": [],
|
|
10831
11445
|
"type": {
|
|
10832
11446
|
"kind": "OBJECT",
|
|
@@ -10838,7 +11452,7 @@
|
|
|
10838
11452
|
},
|
|
10839
11453
|
{
|
|
10840
11454
|
"name": "alternative_stations",
|
|
10841
|
-
"description": "A set of alternative charging stations to next station",
|
|
11455
|
+
"description": "A set of alternative charging stations to next station.",
|
|
10842
11456
|
"args": [],
|
|
10843
11457
|
"type": {
|
|
10844
11458
|
"kind": "NON_NULL",
|
|
@@ -10862,154 +11476,66 @@
|
|
|
10862
11476
|
},
|
|
10863
11477
|
{
|
|
10864
11478
|
"name": "instructions",
|
|
10865
|
-
"description": "Navigation instructions",
|
|
11479
|
+
"description": "Navigation route instructions.",
|
|
10866
11480
|
"args": [],
|
|
10867
|
-
"type": {
|
|
10868
|
-
"kind": "SCALAR",
|
|
10869
|
-
"name": "JSON",
|
|
10870
|
-
"ofType": null
|
|
10871
|
-
},
|
|
10872
|
-
"isDeprecated": false,
|
|
10873
|
-
"deprecationReason": null
|
|
10874
|
-
},
|
|
10875
|
-
{
|
|
10876
|
-
"name": "meta",
|
|
10877
|
-
"description": "Navigation meta information.",
|
|
10878
|
-
"args": [],
|
|
10879
|
-
"type": {
|
|
10880
|
-
"kind": "OBJECT",
|
|
10881
|
-
"name": "NavigationMeta",
|
|
10882
|
-
"ofType": null
|
|
10883
|
-
},
|
|
10884
|
-
"isDeprecated": false,
|
|
10885
|
-
"deprecationReason": null
|
|
10886
|
-
}
|
|
10887
|
-
],
|
|
10888
|
-
"inputFields": null,
|
|
10889
|
-
"interfaces": [],
|
|
10890
|
-
"enumValues": null,
|
|
10891
|
-
"possibleTypes": null
|
|
10892
|
-
},
|
|
10893
|
-
{
|
|
10894
|
-
"kind": "INPUT_OBJECT",
|
|
10895
|
-
"name": "NavigationFinishInput",
|
|
10896
|
-
"description": "Input for the navigation recalculate",
|
|
10897
|
-
"fields": null,
|
|
10898
|
-
"inputFields": [
|
|
10899
|
-
{
|
|
10900
|
-
"name": "id",
|
|
10901
|
-
"description": "ID of the navigation session",
|
|
10902
11481
|
"type": {
|
|
10903
11482
|
"kind": "NON_NULL",
|
|
10904
11483
|
"name": null,
|
|
10905
11484
|
"ofType": {
|
|
10906
|
-
"kind": "
|
|
10907
|
-
"name":
|
|
10908
|
-
"ofType":
|
|
11485
|
+
"kind": "LIST",
|
|
11486
|
+
"name": null,
|
|
11487
|
+
"ofType": {
|
|
11488
|
+
"kind": "OBJECT",
|
|
11489
|
+
"name": "RouteInstruction",
|
|
11490
|
+
"ofType": null
|
|
11491
|
+
}
|
|
10909
11492
|
}
|
|
10910
11493
|
},
|
|
10911
|
-
"defaultValue": null,
|
|
10912
11494
|
"isDeprecated": false,
|
|
10913
11495
|
"deprecationReason": null
|
|
10914
11496
|
},
|
|
10915
11497
|
{
|
|
10916
|
-
"name": "
|
|
10917
|
-
"description": "
|
|
11498
|
+
"name": "live_route_request",
|
|
11499
|
+
"description": "Continuously updated route request input.",
|
|
11500
|
+
"args": [],
|
|
10918
11501
|
"type": {
|
|
10919
11502
|
"kind": "NON_NULL",
|
|
10920
11503
|
"name": null,
|
|
10921
11504
|
"ofType": {
|
|
10922
|
-
"kind": "
|
|
10923
|
-
"name": "
|
|
11505
|
+
"kind": "OBJECT",
|
|
11506
|
+
"name": "CreateRoute",
|
|
10924
11507
|
"ofType": null
|
|
10925
11508
|
}
|
|
10926
11509
|
},
|
|
10927
|
-
"defaultValue": null,
|
|
10928
11510
|
"isDeprecated": false,
|
|
10929
11511
|
"deprecationReason": null
|
|
10930
|
-
}
|
|
10931
|
-
],
|
|
10932
|
-
"interfaces": null,
|
|
10933
|
-
"enumValues": null,
|
|
10934
|
-
"possibleTypes": null
|
|
10935
|
-
},
|
|
10936
|
-
{
|
|
10937
|
-
"kind": "INPUT_OBJECT",
|
|
10938
|
-
"name": "NavigationInstructionsInput",
|
|
10939
|
-
"description": null,
|
|
10940
|
-
"fields": null,
|
|
10941
|
-
"inputFields": [
|
|
11512
|
+
},
|
|
10942
11513
|
{
|
|
10943
|
-
"name": "
|
|
10944
|
-
"description": "
|
|
11514
|
+
"name": "polyline",
|
|
11515
|
+
"description": "Polyline containing encoded coordinates.",
|
|
11516
|
+
"args": [
|
|
11517
|
+
{
|
|
11518
|
+
"name": "decimals",
|
|
11519
|
+
"description": "Polyline decimals",
|
|
11520
|
+
"type": {
|
|
11521
|
+
"kind": "ENUM",
|
|
11522
|
+
"name": "PolylineInputDecimals",
|
|
11523
|
+
"ofType": null
|
|
11524
|
+
},
|
|
11525
|
+
"defaultValue": "five",
|
|
11526
|
+
"isDeprecated": false,
|
|
11527
|
+
"deprecationReason": null
|
|
11528
|
+
}
|
|
11529
|
+
],
|
|
10945
11530
|
"type": {
|
|
10946
11531
|
"kind": "NON_NULL",
|
|
10947
11532
|
"name": null,
|
|
10948
11533
|
"ofType": {
|
|
10949
|
-
"kind": "
|
|
10950
|
-
"name": "
|
|
11534
|
+
"kind": "SCALAR",
|
|
11535
|
+
"name": "String",
|
|
10951
11536
|
"ofType": null
|
|
10952
11537
|
}
|
|
10953
11538
|
},
|
|
10954
|
-
"defaultValue": null,
|
|
10955
|
-
"isDeprecated": false,
|
|
10956
|
-
"deprecationReason": null
|
|
10957
|
-
},
|
|
10958
|
-
{
|
|
10959
|
-
"name": "language",
|
|
10960
|
-
"description": "Preferred navigation instructions language. Default: en",
|
|
10961
|
-
"type": {
|
|
10962
|
-
"kind": "ENUM",
|
|
10963
|
-
"name": "MappingLanguage",
|
|
10964
|
-
"ofType": null
|
|
10965
|
-
},
|
|
10966
|
-
"defaultValue": "en",
|
|
10967
|
-
"isDeprecated": false,
|
|
10968
|
-
"deprecationReason": null
|
|
10969
|
-
},
|
|
10970
|
-
{
|
|
10971
|
-
"name": "precision",
|
|
10972
|
-
"description": "Number of decimals used for the Google Polyline encoding Algorithm. Allowed values are 5 or 6.",
|
|
10973
|
-
"type": {
|
|
10974
|
-
"kind": "SCALAR",
|
|
10975
|
-
"name": "Int",
|
|
10976
|
-
"ofType": null
|
|
10977
|
-
},
|
|
10978
|
-
"defaultValue": "5",
|
|
10979
|
-
"isDeprecated": false,
|
|
10980
|
-
"deprecationReason": null
|
|
10981
|
-
}
|
|
10982
|
-
],
|
|
10983
|
-
"interfaces": null,
|
|
10984
|
-
"enumValues": null,
|
|
10985
|
-
"possibleTypes": null
|
|
10986
|
-
},
|
|
10987
|
-
{
|
|
10988
|
-
"kind": "OBJECT",
|
|
10989
|
-
"name": "NavigationMeta",
|
|
10990
|
-
"description": "Navigation meta information.",
|
|
10991
|
-
"fields": [
|
|
10992
|
-
{
|
|
10993
|
-
"name": "created_at",
|
|
10994
|
-
"description": "Creation time of the navigation session.",
|
|
10995
|
-
"args": [],
|
|
10996
|
-
"type": {
|
|
10997
|
-
"kind": "SCALAR",
|
|
10998
|
-
"name": "DateTime",
|
|
10999
|
-
"ofType": null
|
|
11000
|
-
},
|
|
11001
|
-
"isDeprecated": false,
|
|
11002
|
-
"deprecationReason": null
|
|
11003
|
-
},
|
|
11004
|
-
{
|
|
11005
|
-
"name": "updated_at",
|
|
11006
|
-
"description": "Last updated time of the navigation session.",
|
|
11007
|
-
"args": [],
|
|
11008
|
-
"type": {
|
|
11009
|
-
"kind": "SCALAR",
|
|
11010
|
-
"name": "DateTime",
|
|
11011
|
-
"ofType": null
|
|
11012
|
-
},
|
|
11013
11539
|
"isDeprecated": false,
|
|
11014
11540
|
"deprecationReason": null
|
|
11015
11541
|
}
|
|
@@ -11022,12 +11548,12 @@
|
|
|
11022
11548
|
{
|
|
11023
11549
|
"kind": "INPUT_OBJECT",
|
|
11024
11550
|
"name": "NavigationRecalculateInput",
|
|
11025
|
-
"description": "Input for the navigation recalculate",
|
|
11551
|
+
"description": "Input for the navigation recalculate.",
|
|
11026
11552
|
"fields": null,
|
|
11027
11553
|
"inputFields": [
|
|
11028
11554
|
{
|
|
11029
11555
|
"name": "id",
|
|
11030
|
-
"description": "ID of the navigation session",
|
|
11556
|
+
"description": "ID of the navigation session.",
|
|
11031
11557
|
"type": {
|
|
11032
11558
|
"kind": "NON_NULL",
|
|
11033
11559
|
"name": null,
|
|
@@ -11043,7 +11569,7 @@
|
|
|
11043
11569
|
},
|
|
11044
11570
|
{
|
|
11045
11571
|
"name": "state_of_charge",
|
|
11046
|
-
"description": "State of charge at origin",
|
|
11572
|
+
"description": "State of charge at origin.",
|
|
11047
11573
|
"type": {
|
|
11048
11574
|
"kind": "INPUT_OBJECT",
|
|
11049
11575
|
"name": "StateOfChargeInput",
|
|
@@ -11055,7 +11581,7 @@
|
|
|
11055
11581
|
},
|
|
11056
11582
|
{
|
|
11057
11583
|
"name": "current_location",
|
|
11058
|
-
"description": "Origin location of a new route",
|
|
11584
|
+
"description": "Origin location of a new route.",
|
|
11059
11585
|
"type": {
|
|
11060
11586
|
"kind": "NON_NULL",
|
|
11061
11587
|
"name": null,
|
|
@@ -11071,7 +11597,7 @@
|
|
|
11071
11597
|
},
|
|
11072
11598
|
{
|
|
11073
11599
|
"name": "via",
|
|
11074
|
-
"description": "Via points of a new route. If this field is not sent, the original via points will be used",
|
|
11600
|
+
"description": "Via points of a new route. If this field is not sent, the original via points will be used.",
|
|
11075
11601
|
"type": {
|
|
11076
11602
|
"kind": "LIST",
|
|
11077
11603
|
"name": null,
|
|
@@ -11091,7 +11617,7 @@
|
|
|
11091
11617
|
},
|
|
11092
11618
|
{
|
|
11093
11619
|
"name": "telemetry",
|
|
11094
|
-
"description": "Telemetry data input",
|
|
11620
|
+
"description": "Telemetry data input.",
|
|
11095
11621
|
"type": {
|
|
11096
11622
|
"kind": "INPUT_OBJECT",
|
|
11097
11623
|
"name": "TelemetryInput",
|
|
@@ -11109,12 +11635,12 @@
|
|
|
11109
11635
|
{
|
|
11110
11636
|
"kind": "INPUT_OBJECT",
|
|
11111
11637
|
"name": "NavigationStartInput",
|
|
11112
|
-
"description": "Input for the navigation start",
|
|
11638
|
+
"description": "Input for the navigation start.",
|
|
11113
11639
|
"fields": null,
|
|
11114
11640
|
"inputFields": [
|
|
11115
11641
|
{
|
|
11116
11642
|
"name": "route_id",
|
|
11117
|
-
"description": "ID of the route of the navigation session",
|
|
11643
|
+
"description": "ID of the route of the navigation session.",
|
|
11118
11644
|
"type": {
|
|
11119
11645
|
"kind": "NON_NULL",
|
|
11120
11646
|
"name": null,
|
|
@@ -11128,21 +11654,9 @@
|
|
|
11128
11654
|
"isDeprecated": false,
|
|
11129
11655
|
"deprecationReason": null
|
|
11130
11656
|
},
|
|
11131
|
-
{
|
|
11132
|
-
"name": "route_alternative_id",
|
|
11133
|
-
"description": "ID of the route alternative of the navigation session",
|
|
11134
|
-
"type": {
|
|
11135
|
-
"kind": "SCALAR",
|
|
11136
|
-
"name": "ID",
|
|
11137
|
-
"ofType": null
|
|
11138
|
-
},
|
|
11139
|
-
"defaultValue": null,
|
|
11140
|
-
"isDeprecated": false,
|
|
11141
|
-
"deprecationReason": null
|
|
11142
|
-
},
|
|
11143
11657
|
{
|
|
11144
11658
|
"name": "current_location",
|
|
11145
|
-
"description": "Current coordinates",
|
|
11659
|
+
"description": "Current coordinates.",
|
|
11146
11660
|
"type": {
|
|
11147
11661
|
"kind": "NON_NULL",
|
|
11148
11662
|
"name": null,
|
|
@@ -11155,71 +11669,20 @@
|
|
|
11155
11669
|
"defaultValue": null,
|
|
11156
11670
|
"isDeprecated": false,
|
|
11157
11671
|
"deprecationReason": null
|
|
11158
|
-
},
|
|
11159
|
-
{
|
|
11160
|
-
"name": "instructions",
|
|
11161
|
-
"description": "Instruction input format",
|
|
11162
|
-
"type": {
|
|
11163
|
-
"kind": "NON_NULL",
|
|
11164
|
-
"name": null,
|
|
11165
|
-
"ofType": {
|
|
11166
|
-
"kind": "INPUT_OBJECT",
|
|
11167
|
-
"name": "NavigationInstructionsInput",
|
|
11168
|
-
"ofType": null
|
|
11169
|
-
}
|
|
11170
|
-
},
|
|
11171
|
-
"defaultValue": null,
|
|
11172
|
-
"isDeprecated": false,
|
|
11173
|
-
"deprecationReason": null
|
|
11174
11672
|
}
|
|
11175
11673
|
],
|
|
11176
11674
|
"interfaces": null,
|
|
11177
11675
|
"enumValues": null,
|
|
11178
11676
|
"possibleTypes": null
|
|
11179
11677
|
},
|
|
11180
|
-
{
|
|
11181
|
-
"kind": "ENUM",
|
|
11182
|
-
"name": "NavigationState",
|
|
11183
|
-
"description": "State of navigation session",
|
|
11184
|
-
"fields": null,
|
|
11185
|
-
"inputFields": null,
|
|
11186
|
-
"interfaces": null,
|
|
11187
|
-
"enumValues": [
|
|
11188
|
-
{
|
|
11189
|
-
"name": "driving",
|
|
11190
|
-
"description": "Vehicle is driving",
|
|
11191
|
-
"isDeprecated": false,
|
|
11192
|
-
"deprecationReason": null
|
|
11193
|
-
},
|
|
11194
|
-
{
|
|
11195
|
-
"name": "charging",
|
|
11196
|
-
"description": "Vehicle is charging",
|
|
11197
|
-
"isDeprecated": false,
|
|
11198
|
-
"deprecationReason": null
|
|
11199
|
-
},
|
|
11200
|
-
{
|
|
11201
|
-
"name": "finished",
|
|
11202
|
-
"description": "Navigation session is completed (either manually or automatically 48 hours after the last update)",
|
|
11203
|
-
"isDeprecated": false,
|
|
11204
|
-
"deprecationReason": null
|
|
11205
|
-
},
|
|
11206
|
-
{
|
|
11207
|
-
"name": "error",
|
|
11208
|
-
"description": "Failed to update navigation session due to route error or not found",
|
|
11209
|
-
"isDeprecated": false,
|
|
11210
|
-
"deprecationReason": null
|
|
11211
|
-
}
|
|
11212
|
-
],
|
|
11213
|
-
"possibleTypes": null
|
|
11214
|
-
},
|
|
11215
11678
|
{
|
|
11216
11679
|
"kind": "OBJECT",
|
|
11217
11680
|
"name": "NavigationStation",
|
|
11218
|
-
"description": "Navigation session station type",
|
|
11681
|
+
"description": "Navigation session station type.",
|
|
11219
11682
|
"fields": [
|
|
11220
11683
|
{
|
|
11221
11684
|
"name": "station_id",
|
|
11222
|
-
"description": "The ID as string of the charging station",
|
|
11685
|
+
"description": "The ID as string of the charging station.",
|
|
11223
11686
|
"args": [],
|
|
11224
11687
|
"type": {
|
|
11225
11688
|
"kind": "NON_NULL",
|
|
@@ -11235,7 +11698,7 @@
|
|
|
11235
11698
|
},
|
|
11236
11699
|
{
|
|
11237
11700
|
"name": "station_location",
|
|
11238
|
-
"description": "GPS location of the charging station",
|
|
11701
|
+
"description": "GPS location of the charging station.",
|
|
11239
11702
|
"args": [],
|
|
11240
11703
|
"type": {
|
|
11241
11704
|
"kind": "NON_NULL",
|
|
@@ -11251,7 +11714,7 @@
|
|
|
11251
11714
|
},
|
|
11252
11715
|
{
|
|
11253
11716
|
"name": "via",
|
|
11254
|
-
"description": "An array with all GPS locations of via points until the next charging station",
|
|
11717
|
+
"description": "An array with all GPS locations of via points until the next charging station.",
|
|
11255
11718
|
"args": [],
|
|
11256
11719
|
"type": {
|
|
11257
11720
|
"kind": "NON_NULL",
|
|
@@ -11275,7 +11738,7 @@
|
|
|
11275
11738
|
},
|
|
11276
11739
|
{
|
|
11277
11740
|
"name": "estimated_state_of_charge",
|
|
11278
|
-
"description": "Estimated state of charge, at arrival on the next charging station",
|
|
11741
|
+
"description": "Estimated state of charge, at arrival on the next charging station.",
|
|
11279
11742
|
"args": [
|
|
11280
11743
|
{
|
|
11281
11744
|
"name": "unit",
|
|
@@ -11304,7 +11767,7 @@
|
|
|
11304
11767
|
},
|
|
11305
11768
|
{
|
|
11306
11769
|
"name": "estimated_consumption",
|
|
11307
|
-
"description": "Estimated consumption, in kWh, from last the known location until the next charging station",
|
|
11770
|
+
"description": "Estimated consumption, in kWh, from last the known location until the next charging station.",
|
|
11308
11771
|
"args": [],
|
|
11309
11772
|
"type": {
|
|
11310
11773
|
"kind": "NON_NULL",
|
|
@@ -11320,19 +11783,109 @@
|
|
|
11320
11783
|
},
|
|
11321
11784
|
{
|
|
11322
11785
|
"name": "estimated_duration",
|
|
11323
|
-
"description": "Estimated duration, in seconds, from the last known location until the next charging station",
|
|
11786
|
+
"description": "Estimated duration, in seconds, from the last known location until the next charging station.",
|
|
11324
11787
|
"args": [],
|
|
11325
11788
|
"type": {
|
|
11326
11789
|
"kind": "NON_NULL",
|
|
11327
11790
|
"name": null,
|
|
11328
11791
|
"ofType": {
|
|
11329
11792
|
"kind": "SCALAR",
|
|
11330
|
-
"name": "
|
|
11793
|
+
"name": "Float",
|
|
11794
|
+
"ofType": null
|
|
11795
|
+
}
|
|
11796
|
+
},
|
|
11797
|
+
"isDeprecated": false,
|
|
11798
|
+
"deprecationReason": null
|
|
11799
|
+
}
|
|
11800
|
+
],
|
|
11801
|
+
"inputFields": null,
|
|
11802
|
+
"interfaces": [],
|
|
11803
|
+
"enumValues": null,
|
|
11804
|
+
"possibleTypes": null
|
|
11805
|
+
},
|
|
11806
|
+
{
|
|
11807
|
+
"kind": "ENUM",
|
|
11808
|
+
"name": "NavigationStatus",
|
|
11809
|
+
"description": "State of navigation session.",
|
|
11810
|
+
"fields": null,
|
|
11811
|
+
"inputFields": null,
|
|
11812
|
+
"interfaces": null,
|
|
11813
|
+
"enumValues": [
|
|
11814
|
+
{
|
|
11815
|
+
"name": "driving",
|
|
11816
|
+
"description": "Vehicle is driving.",
|
|
11817
|
+
"isDeprecated": false,
|
|
11818
|
+
"deprecationReason": null
|
|
11819
|
+
},
|
|
11820
|
+
{
|
|
11821
|
+
"name": "charging",
|
|
11822
|
+
"description": "Vehicle is charging.",
|
|
11823
|
+
"isDeprecated": false,
|
|
11824
|
+
"deprecationReason": null
|
|
11825
|
+
},
|
|
11826
|
+
{
|
|
11827
|
+
"name": "finished",
|
|
11828
|
+
"description": "Navigation session is completed (either manually or automatically 48 hours after the last update).",
|
|
11829
|
+
"isDeprecated": false,
|
|
11830
|
+
"deprecationReason": null
|
|
11831
|
+
},
|
|
11832
|
+
{
|
|
11833
|
+
"name": "error",
|
|
11834
|
+
"description": "Failed to update navigation session due to route error or not found.",
|
|
11835
|
+
"isDeprecated": false,
|
|
11836
|
+
"deprecationReason": null
|
|
11837
|
+
}
|
|
11838
|
+
],
|
|
11839
|
+
"possibleTypes": null
|
|
11840
|
+
},
|
|
11841
|
+
{
|
|
11842
|
+
"kind": "OBJECT",
|
|
11843
|
+
"name": "NavigationSubscription",
|
|
11844
|
+
"description": "The navigation session subscription data",
|
|
11845
|
+
"fields": [
|
|
11846
|
+
{
|
|
11847
|
+
"name": "id",
|
|
11848
|
+
"description": "ID of the navigation session.",
|
|
11849
|
+
"args": [],
|
|
11850
|
+
"type": {
|
|
11851
|
+
"kind": "NON_NULL",
|
|
11852
|
+
"name": null,
|
|
11853
|
+
"ofType": {
|
|
11854
|
+
"kind": "SCALAR",
|
|
11855
|
+
"name": "ID",
|
|
11856
|
+
"ofType": null
|
|
11857
|
+
}
|
|
11858
|
+
},
|
|
11859
|
+
"isDeprecated": false,
|
|
11860
|
+
"deprecationReason": null
|
|
11861
|
+
},
|
|
11862
|
+
{
|
|
11863
|
+
"name": "status",
|
|
11864
|
+
"description": "The status of a navigation session. The status can be driving, charging, finished, or error.",
|
|
11865
|
+
"args": [],
|
|
11866
|
+
"type": {
|
|
11867
|
+
"kind": "NON_NULL",
|
|
11868
|
+
"name": null,
|
|
11869
|
+
"ofType": {
|
|
11870
|
+
"kind": "ENUM",
|
|
11871
|
+
"name": "NavigationStatus",
|
|
11331
11872
|
"ofType": null
|
|
11332
11873
|
}
|
|
11333
11874
|
},
|
|
11334
11875
|
"isDeprecated": false,
|
|
11335
11876
|
"deprecationReason": null
|
|
11877
|
+
},
|
|
11878
|
+
{
|
|
11879
|
+
"name": "meta",
|
|
11880
|
+
"description": "Navigation meta information.",
|
|
11881
|
+
"args": [],
|
|
11882
|
+
"type": {
|
|
11883
|
+
"kind": "OBJECT",
|
|
11884
|
+
"name": "NavigationMeta",
|
|
11885
|
+
"ofType": null
|
|
11886
|
+
},
|
|
11887
|
+
"isDeprecated": false,
|
|
11888
|
+
"deprecationReason": null
|
|
11336
11889
|
}
|
|
11337
11890
|
],
|
|
11338
11891
|
"inputFields": null,
|
|
@@ -11343,12 +11896,12 @@
|
|
|
11343
11896
|
{
|
|
11344
11897
|
"kind": "INPUT_OBJECT",
|
|
11345
11898
|
"name": "NavigationUpdateInput",
|
|
11346
|
-
"description": "Input for the navigation update",
|
|
11899
|
+
"description": "Input for the navigation update.",
|
|
11347
11900
|
"fields": null,
|
|
11348
11901
|
"inputFields": [
|
|
11349
11902
|
{
|
|
11350
11903
|
"name": "id",
|
|
11351
|
-
"description": "ID of the navigation session",
|
|
11904
|
+
"description": "ID of the navigation session.",
|
|
11352
11905
|
"type": {
|
|
11353
11906
|
"kind": "NON_NULL",
|
|
11354
11907
|
"name": null,
|
|
@@ -11364,7 +11917,7 @@
|
|
|
11364
11917
|
},
|
|
11365
11918
|
{
|
|
11366
11919
|
"name": "location_data",
|
|
11367
|
-
"description": "A list of locations that were collected since the last update",
|
|
11920
|
+
"description": "A list of locations that were collected since the last update.",
|
|
11368
11921
|
"type": {
|
|
11369
11922
|
"kind": "NON_NULL",
|
|
11370
11923
|
"name": null,
|
|
@@ -11388,7 +11941,7 @@
|
|
|
11388
11941
|
},
|
|
11389
11942
|
{
|
|
11390
11943
|
"name": "telemetry",
|
|
11391
|
-
"description": "Telemetry data input",
|
|
11944
|
+
"description": "Telemetry data input.",
|
|
11392
11945
|
"type": {
|
|
11393
11946
|
"kind": "INPUT_OBJECT",
|
|
11394
11947
|
"name": "TelemetryInput",
|
|
@@ -11406,12 +11959,12 @@
|
|
|
11406
11959
|
{
|
|
11407
11960
|
"kind": "INPUT_OBJECT",
|
|
11408
11961
|
"name": "NavigationUpdateLocationPropertiesInput",
|
|
11409
|
-
"description": "Properties of the location",
|
|
11962
|
+
"description": "Properties of the location.",
|
|
11410
11963
|
"fields": null,
|
|
11411
11964
|
"inputFields": [
|
|
11412
11965
|
{
|
|
11413
11966
|
"name": "route_leg",
|
|
11414
|
-
"description": "Current route leg index corresponding to a location",
|
|
11967
|
+
"description": "Current route leg index corresponding to a location.",
|
|
11415
11968
|
"type": {
|
|
11416
11969
|
"kind": "NON_NULL",
|
|
11417
11970
|
"name": null,
|
|
@@ -11427,7 +11980,7 @@
|
|
|
11427
11980
|
},
|
|
11428
11981
|
{
|
|
11429
11982
|
"name": "speed",
|
|
11430
|
-
"description": "Speed at a location",
|
|
11983
|
+
"description": "Speed at a location.",
|
|
11431
11984
|
"type": {
|
|
11432
11985
|
"kind": "INPUT_OBJECT",
|
|
11433
11986
|
"name": "VehicleSpeedInput",
|
|
@@ -11439,7 +11992,7 @@
|
|
|
11439
11992
|
},
|
|
11440
11993
|
{
|
|
11441
11994
|
"name": "timestamp",
|
|
11442
|
-
"description": "UNIX timestamp at location, in seconds",
|
|
11995
|
+
"description": "UNIX timestamp at location, in seconds.",
|
|
11443
11996
|
"type": {
|
|
11444
11997
|
"kind": "NON_NULL",
|
|
11445
11998
|
"name": null,
|
|
@@ -11455,7 +12008,7 @@
|
|
|
11455
12008
|
},
|
|
11456
12009
|
{
|
|
11457
12010
|
"name": "elevation",
|
|
11458
|
-
"description": "Elevation information",
|
|
12011
|
+
"description": "Elevation information.",
|
|
11459
12012
|
"type": {
|
|
11460
12013
|
"kind": "INPUT_OBJECT",
|
|
11461
12014
|
"name": "ElevationInput",
|
|
@@ -11473,12 +12026,12 @@
|
|
|
11473
12026
|
{
|
|
11474
12027
|
"kind": "INPUT_OBJECT",
|
|
11475
12028
|
"name": "NavigationUpdateLocationsInput",
|
|
11476
|
-
"description": "Input for the navigation update locations",
|
|
12029
|
+
"description": "Input for the navigation update locations.",
|
|
11477
12030
|
"fields": null,
|
|
11478
12031
|
"inputFields": [
|
|
11479
12032
|
{
|
|
11480
12033
|
"name": "geometry",
|
|
11481
|
-
"description": "GPS location",
|
|
12034
|
+
"description": "GPS location.",
|
|
11482
12035
|
"type": {
|
|
11483
12036
|
"kind": "NON_NULL",
|
|
11484
12037
|
"name": null,
|
|
@@ -11494,7 +12047,7 @@
|
|
|
11494
12047
|
},
|
|
11495
12048
|
{
|
|
11496
12049
|
"name": "properties",
|
|
11497
|
-
"description": "Extra information about the location",
|
|
12050
|
+
"description": "Extra information about the location.",
|
|
11498
12051
|
"type": {
|
|
11499
12052
|
"kind": "NON_NULL",
|
|
11500
12053
|
"name": null,
|
|
@@ -11923,6 +12476,18 @@
|
|
|
11923
12476
|
"description": "The connector type is NEMA 14-50, 3 pins, rating of 50 A",
|
|
11924
12477
|
"isDeprecated": false,
|
|
11925
12478
|
"deprecationReason": null
|
|
12479
|
+
},
|
|
12480
|
+
{
|
|
12481
|
+
"name": "GBT_AC",
|
|
12482
|
+
"description": "Guobiao GB/T 20234.2 AC socket/connector.",
|
|
12483
|
+
"isDeprecated": false,
|
|
12484
|
+
"deprecationReason": null
|
|
12485
|
+
},
|
|
12486
|
+
{
|
|
12487
|
+
"name": "GBT_DC",
|
|
12488
|
+
"description": "Guobiao GB/T 20234.3 DC connector.",
|
|
12489
|
+
"isDeprecated": false,
|
|
12490
|
+
"deprecationReason": null
|
|
11926
12491
|
}
|
|
11927
12492
|
],
|
|
11928
12493
|
"possibleTypes": null
|
|
@@ -14282,6 +14847,26 @@
|
|
|
14282
14847
|
},
|
|
14283
14848
|
"isDeprecated": false,
|
|
14284
14849
|
"deprecationReason": null
|
|
14850
|
+
},
|
|
14851
|
+
{
|
|
14852
|
+
"name": "avoided_countries",
|
|
14853
|
+
"description": "List of countries where the operator is avoided. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request.",
|
|
14854
|
+
"args": [],
|
|
14855
|
+
"type": {
|
|
14856
|
+
"kind": "LIST",
|
|
14857
|
+
"name": null,
|
|
14858
|
+
"ofType": {
|
|
14859
|
+
"kind": "NON_NULL",
|
|
14860
|
+
"name": null,
|
|
14861
|
+
"ofType": {
|
|
14862
|
+
"kind": "ENUM",
|
|
14863
|
+
"name": "CountryCodeAlpha2",
|
|
14864
|
+
"ofType": null
|
|
14865
|
+
}
|
|
14866
|
+
}
|
|
14867
|
+
},
|
|
14868
|
+
"isDeprecated": false,
|
|
14869
|
+
"deprecationReason": null
|
|
14285
14870
|
}
|
|
14286
14871
|
],
|
|
14287
14872
|
"inputFields": null,
|
|
@@ -14315,6 +14900,38 @@
|
|
|
14315
14900
|
"isDeprecated": false,
|
|
14316
14901
|
"deprecationReason": null
|
|
14317
14902
|
},
|
|
14903
|
+
{
|
|
14904
|
+
"name": "ranking",
|
|
14905
|
+
"description": "List of ranking level(s) to be retrieved. Valid values are 1 to 10. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request.",
|
|
14906
|
+
"type": {
|
|
14907
|
+
"kind": "LIST",
|
|
14908
|
+
"name": null,
|
|
14909
|
+
"ofType": {
|
|
14910
|
+
"kind": "NON_NULL",
|
|
14911
|
+
"name": null,
|
|
14912
|
+
"ofType": {
|
|
14913
|
+
"kind": "SCALAR",
|
|
14914
|
+
"name": "Int",
|
|
14915
|
+
"ofType": null
|
|
14916
|
+
}
|
|
14917
|
+
}
|
|
14918
|
+
},
|
|
14919
|
+
"defaultValue": null,
|
|
14920
|
+
"isDeprecated": false,
|
|
14921
|
+
"deprecationReason": null
|
|
14922
|
+
},
|
|
14923
|
+
{
|
|
14924
|
+
"name": "excluded",
|
|
14925
|
+
"description": "Only retrieve operators that are in the excluded list. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request.",
|
|
14926
|
+
"type": {
|
|
14927
|
+
"kind": "SCALAR",
|
|
14928
|
+
"name": "Boolean",
|
|
14929
|
+
"ofType": null
|
|
14930
|
+
},
|
|
14931
|
+
"defaultValue": null,
|
|
14932
|
+
"isDeprecated": false,
|
|
14933
|
+
"deprecationReason": null
|
|
14934
|
+
},
|
|
14318
14935
|
{
|
|
14319
14936
|
"name": "ranking_levels",
|
|
14320
14937
|
"description": "List of ranking level(s) to be retrieved. An operator can be ranked on different levels in different countries. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request.",
|
|
@@ -14411,6 +15028,41 @@
|
|
|
14411
15028
|
"enumValues": null,
|
|
14412
15029
|
"possibleTypes": null
|
|
14413
15030
|
},
|
|
15031
|
+
{
|
|
15032
|
+
"kind": "ENUM",
|
|
15033
|
+
"name": "OperatorPreferenceType",
|
|
15034
|
+
"description": null,
|
|
15035
|
+
"fields": null,
|
|
15036
|
+
"inputFields": null,
|
|
15037
|
+
"interfaces": null,
|
|
15038
|
+
"enumValues": [
|
|
15039
|
+
{
|
|
15040
|
+
"name": "ranked",
|
|
15041
|
+
"description": "Operators that have been set as preferred or required.",
|
|
15042
|
+
"isDeprecated": false,
|
|
15043
|
+
"deprecationReason": null
|
|
15044
|
+
},
|
|
15045
|
+
{
|
|
15046
|
+
"name": "unranked",
|
|
15047
|
+
"description": "Operators that have not been set as neither preferred or required or avoided nor excluded.",
|
|
15048
|
+
"isDeprecated": false,
|
|
15049
|
+
"deprecationReason": null
|
|
15050
|
+
},
|
|
15051
|
+
{
|
|
15052
|
+
"name": "avoided",
|
|
15053
|
+
"description": "Operators that have been set to be avoided.",
|
|
15054
|
+
"isDeprecated": false,
|
|
15055
|
+
"deprecationReason": null
|
|
15056
|
+
},
|
|
15057
|
+
{
|
|
15058
|
+
"name": "excluded",
|
|
15059
|
+
"description": "Operators that have been set to be excluded.",
|
|
15060
|
+
"isDeprecated": false,
|
|
15061
|
+
"deprecationReason": null
|
|
15062
|
+
}
|
|
15063
|
+
],
|
|
15064
|
+
"possibleTypes": null
|
|
15065
|
+
},
|
|
14414
15066
|
{
|
|
14415
15067
|
"kind": "ENUM",
|
|
14416
15068
|
"name": "OperatorRankingLevel",
|
|
@@ -14751,6 +15403,73 @@
|
|
|
14751
15403
|
"enumValues": null,
|
|
14752
15404
|
"possibleTypes": null
|
|
14753
15405
|
},
|
|
15406
|
+
{
|
|
15407
|
+
"kind": "OBJECT",
|
|
15408
|
+
"name": "PageInfo",
|
|
15409
|
+
"description": "Information about the list page.",
|
|
15410
|
+
"fields": [
|
|
15411
|
+
{
|
|
15412
|
+
"name": "has_next_page",
|
|
15413
|
+
"description": "Flag that indicates if it has a next page.",
|
|
15414
|
+
"args": [],
|
|
15415
|
+
"type": {
|
|
15416
|
+
"kind": "NON_NULL",
|
|
15417
|
+
"name": null,
|
|
15418
|
+
"ofType": {
|
|
15419
|
+
"kind": "SCALAR",
|
|
15420
|
+
"name": "Boolean",
|
|
15421
|
+
"ofType": null
|
|
15422
|
+
}
|
|
15423
|
+
},
|
|
15424
|
+
"isDeprecated": false,
|
|
15425
|
+
"deprecationReason": null
|
|
15426
|
+
},
|
|
15427
|
+
{
|
|
15428
|
+
"name": "has_previous_page",
|
|
15429
|
+
"description": "Flag that indicates if it has a previous page.",
|
|
15430
|
+
"args": [],
|
|
15431
|
+
"type": {
|
|
15432
|
+
"kind": "NON_NULL",
|
|
15433
|
+
"name": null,
|
|
15434
|
+
"ofType": {
|
|
15435
|
+
"kind": "SCALAR",
|
|
15436
|
+
"name": "Boolean",
|
|
15437
|
+
"ofType": null
|
|
15438
|
+
}
|
|
15439
|
+
},
|
|
15440
|
+
"isDeprecated": false,
|
|
15441
|
+
"deprecationReason": null
|
|
15442
|
+
},
|
|
15443
|
+
{
|
|
15444
|
+
"name": "start_cursor",
|
|
15445
|
+
"description": "Cursor of the first connection of the page. If the page is empty, this is null.",
|
|
15446
|
+
"args": [],
|
|
15447
|
+
"type": {
|
|
15448
|
+
"kind": "SCALAR",
|
|
15449
|
+
"name": "String",
|
|
15450
|
+
"ofType": null
|
|
15451
|
+
},
|
|
15452
|
+
"isDeprecated": false,
|
|
15453
|
+
"deprecationReason": null
|
|
15454
|
+
},
|
|
15455
|
+
{
|
|
15456
|
+
"name": "end_cursor",
|
|
15457
|
+
"description": "Cursor of the last connection of the page. If the page is empty, this is null.",
|
|
15458
|
+
"args": [],
|
|
15459
|
+
"type": {
|
|
15460
|
+
"kind": "SCALAR",
|
|
15461
|
+
"name": "String",
|
|
15462
|
+
"ofType": null
|
|
15463
|
+
},
|
|
15464
|
+
"isDeprecated": false,
|
|
15465
|
+
"deprecationReason": null
|
|
15466
|
+
}
|
|
15467
|
+
],
|
|
15468
|
+
"inputFields": null,
|
|
15469
|
+
"interfaces": [],
|
|
15470
|
+
"enumValues": null,
|
|
15471
|
+
"possibleTypes": null
|
|
15472
|
+
},
|
|
14754
15473
|
{
|
|
14755
15474
|
"kind": "ENUM",
|
|
14756
15475
|
"name": "ParkingCost",
|
|
@@ -15164,7 +15883,7 @@
|
|
|
15164
15883
|
{
|
|
15165
15884
|
"kind": "ENUM",
|
|
15166
15885
|
"name": "PressureUnit",
|
|
15167
|
-
"description":
|
|
15886
|
+
"description": null,
|
|
15168
15887
|
"fields": null,
|
|
15169
15888
|
"inputFields": null,
|
|
15170
15889
|
"interfaces": null,
|
|
@@ -15434,11 +16153,11 @@
|
|
|
15434
16153
|
"fields": [
|
|
15435
16154
|
{
|
|
15436
16155
|
"name": "amenityList",
|
|
15437
|
-
"description": "Get a full list of amenities around a station",
|
|
16156
|
+
"description": "Get a full list of amenities around a station.",
|
|
15438
16157
|
"args": [
|
|
15439
16158
|
{
|
|
15440
16159
|
"name": "stationId",
|
|
15441
|
-
"description": "
|
|
16160
|
+
"description": "ID of the station.",
|
|
15442
16161
|
"type": {
|
|
15443
16162
|
"kind": "NON_NULL",
|
|
15444
16163
|
"name": null,
|
|
@@ -15451,6 +16170,42 @@
|
|
|
15451
16170
|
"defaultValue": null,
|
|
15452
16171
|
"isDeprecated": false,
|
|
15453
16172
|
"deprecationReason": null
|
|
16173
|
+
},
|
|
16174
|
+
{
|
|
16175
|
+
"name": "filter",
|
|
16176
|
+
"description": "Criteria to filter amenities.",
|
|
16177
|
+
"type": {
|
|
16178
|
+
"kind": "INPUT_OBJECT",
|
|
16179
|
+
"name": "AmenityListFilter",
|
|
16180
|
+
"ofType": null
|
|
16181
|
+
},
|
|
16182
|
+
"defaultValue": null,
|
|
16183
|
+
"isDeprecated": false,
|
|
16184
|
+
"deprecationReason": null
|
|
16185
|
+
},
|
|
16186
|
+
{
|
|
16187
|
+
"name": "size",
|
|
16188
|
+
"description": "Number of elements (count) to return.",
|
|
16189
|
+
"type": {
|
|
16190
|
+
"kind": "SCALAR",
|
|
16191
|
+
"name": "Int",
|
|
16192
|
+
"ofType": null
|
|
16193
|
+
},
|
|
16194
|
+
"defaultValue": "10",
|
|
16195
|
+
"isDeprecated": false,
|
|
16196
|
+
"deprecationReason": null
|
|
16197
|
+
},
|
|
16198
|
+
{
|
|
16199
|
+
"name": "page",
|
|
16200
|
+
"description": "Page number to return.",
|
|
16201
|
+
"type": {
|
|
16202
|
+
"kind": "SCALAR",
|
|
16203
|
+
"name": "Int",
|
|
16204
|
+
"ofType": null
|
|
16205
|
+
},
|
|
16206
|
+
"defaultValue": "0",
|
|
16207
|
+
"isDeprecated": false,
|
|
16208
|
+
"deprecationReason": null
|
|
15454
16209
|
}
|
|
15455
16210
|
],
|
|
15456
16211
|
"type": {
|
|
@@ -15888,8 +16643,8 @@
|
|
|
15888
16643
|
"ofType": null
|
|
15889
16644
|
}
|
|
15890
16645
|
},
|
|
15891
|
-
"isDeprecated":
|
|
15892
|
-
"deprecationReason":
|
|
16646
|
+
"isDeprecated": true,
|
|
16647
|
+
"deprecationReason": "In favor of `getRouteEmissions`."
|
|
15893
16648
|
},
|
|
15894
16649
|
{
|
|
15895
16650
|
"name": "route",
|
|
@@ -15917,8 +16672,8 @@
|
|
|
15917
16672
|
"name": "Route",
|
|
15918
16673
|
"ofType": null
|
|
15919
16674
|
},
|
|
15920
|
-
"isDeprecated":
|
|
15921
|
-
"deprecationReason":
|
|
16675
|
+
"isDeprecated": true,
|
|
16676
|
+
"deprecationReason": "In favor of `getRoute`."
|
|
15922
16677
|
},
|
|
15923
16678
|
{
|
|
15924
16679
|
"name": "routePath",
|
|
@@ -15974,6 +16729,55 @@
|
|
|
15974
16729
|
"name": "RoutePath",
|
|
15975
16730
|
"ofType": null
|
|
15976
16731
|
},
|
|
16732
|
+
"isDeprecated": true,
|
|
16733
|
+
"deprecationReason": "In favor of `RouteDetails.path_plot`."
|
|
16734
|
+
},
|
|
16735
|
+
{
|
|
16736
|
+
"name": "getRouteEmissions",
|
|
16737
|
+
"description": "Get emissions for a route.",
|
|
16738
|
+
"args": [
|
|
16739
|
+
{
|
|
16740
|
+
"name": "route_id",
|
|
16741
|
+
"description": "ID of the route for which we retrieve the emissions profile.",
|
|
16742
|
+
"type": {
|
|
16743
|
+
"kind": "NON_NULL",
|
|
16744
|
+
"name": null,
|
|
16745
|
+
"ofType": {
|
|
16746
|
+
"kind": "SCALAR",
|
|
16747
|
+
"name": "ID",
|
|
16748
|
+
"ofType": null
|
|
16749
|
+
}
|
|
16750
|
+
},
|
|
16751
|
+
"defaultValue": null,
|
|
16752
|
+
"isDeprecated": false,
|
|
16753
|
+
"deprecationReason": null
|
|
16754
|
+
},
|
|
16755
|
+
{
|
|
16756
|
+
"name": "route_details_id",
|
|
16757
|
+
"description": "ID of the route details for which we retrieve the emissions profile.",
|
|
16758
|
+
"type": {
|
|
16759
|
+
"kind": "NON_NULL",
|
|
16760
|
+
"name": null,
|
|
16761
|
+
"ofType": {
|
|
16762
|
+
"kind": "SCALAR",
|
|
16763
|
+
"name": "ID",
|
|
16764
|
+
"ofType": null
|
|
16765
|
+
}
|
|
16766
|
+
},
|
|
16767
|
+
"defaultValue": null,
|
|
16768
|
+
"isDeprecated": false,
|
|
16769
|
+
"deprecationReason": null
|
|
16770
|
+
}
|
|
16771
|
+
],
|
|
16772
|
+
"type": {
|
|
16773
|
+
"kind": "NON_NULL",
|
|
16774
|
+
"name": null,
|
|
16775
|
+
"ofType": {
|
|
16776
|
+
"kind": "OBJECT",
|
|
16777
|
+
"name": "RouteDetailsEmissions",
|
|
16778
|
+
"ofType": null
|
|
16779
|
+
}
|
|
16780
|
+
},
|
|
15977
16781
|
"isDeprecated": false,
|
|
15978
16782
|
"deprecationReason": null
|
|
15979
16783
|
},
|
|
@@ -16011,12 +16815,12 @@
|
|
|
16011
16815
|
"deprecationReason": null
|
|
16012
16816
|
},
|
|
16013
16817
|
{
|
|
16014
|
-
"name": "
|
|
16015
|
-
"description": "
|
|
16818
|
+
"name": "getRouteStationsWithAmenities",
|
|
16819
|
+
"description": "[BETA] Search for stations with amenities within a specific time window and distance of a previously calculated route.",
|
|
16016
16820
|
"args": [
|
|
16017
16821
|
{
|
|
16018
16822
|
"name": "route_id",
|
|
16019
|
-
"description": "ID of the route
|
|
16823
|
+
"description": "ID of the route request.",
|
|
16020
16824
|
"type": {
|
|
16021
16825
|
"kind": "NON_NULL",
|
|
16022
16826
|
"name": null,
|
|
@@ -16032,7 +16836,7 @@
|
|
|
16032
16836
|
},
|
|
16033
16837
|
{
|
|
16034
16838
|
"name": "route_details_id",
|
|
16035
|
-
"description": "ID of the route
|
|
16839
|
+
"description": "ID of the route.",
|
|
16036
16840
|
"type": {
|
|
16037
16841
|
"kind": "NON_NULL",
|
|
16038
16842
|
"name": null,
|
|
@@ -16045,6 +16849,82 @@
|
|
|
16045
16849
|
"defaultValue": null,
|
|
16046
16850
|
"isDeprecated": false,
|
|
16047
16851
|
"deprecationReason": null
|
|
16852
|
+
},
|
|
16853
|
+
{
|
|
16854
|
+
"name": "time_window",
|
|
16855
|
+
"description": "Time window along the route to search for stations with amenities.",
|
|
16856
|
+
"type": {
|
|
16857
|
+
"kind": "NON_NULL",
|
|
16858
|
+
"name": null,
|
|
16859
|
+
"ofType": {
|
|
16860
|
+
"kind": "INPUT_OBJECT",
|
|
16861
|
+
"name": "RouteTimeWindow",
|
|
16862
|
+
"ofType": null
|
|
16863
|
+
}
|
|
16864
|
+
},
|
|
16865
|
+
"defaultValue": null,
|
|
16866
|
+
"isDeprecated": false,
|
|
16867
|
+
"deprecationReason": null
|
|
16868
|
+
},
|
|
16869
|
+
{
|
|
16870
|
+
"name": "amenity_types",
|
|
16871
|
+
"description": "Type of amenity to search along the route. Behaves as logical OR when multiple values are provided.",
|
|
16872
|
+
"type": {
|
|
16873
|
+
"kind": "NON_NULL",
|
|
16874
|
+
"name": null,
|
|
16875
|
+
"ofType": {
|
|
16876
|
+
"kind": "LIST",
|
|
16877
|
+
"name": null,
|
|
16878
|
+
"ofType": {
|
|
16879
|
+
"kind": "NON_NULL",
|
|
16880
|
+
"name": null,
|
|
16881
|
+
"ofType": {
|
|
16882
|
+
"kind": "ENUM",
|
|
16883
|
+
"name": "AmenityType",
|
|
16884
|
+
"ofType": null
|
|
16885
|
+
}
|
|
16886
|
+
}
|
|
16887
|
+
}
|
|
16888
|
+
},
|
|
16889
|
+
"defaultValue": null,
|
|
16890
|
+
"isDeprecated": false,
|
|
16891
|
+
"deprecationReason": null
|
|
16892
|
+
},
|
|
16893
|
+
{
|
|
16894
|
+
"name": "filter",
|
|
16895
|
+
"description": "Filter results by station or amenity properties.",
|
|
16896
|
+
"type": {
|
|
16897
|
+
"kind": "INPUT_OBJECT",
|
|
16898
|
+
"name": "RouteStationsWithAmenityFilter",
|
|
16899
|
+
"ofType": null
|
|
16900
|
+
},
|
|
16901
|
+
"defaultValue": null,
|
|
16902
|
+
"isDeprecated": false,
|
|
16903
|
+
"deprecationReason": null
|
|
16904
|
+
},
|
|
16905
|
+
{
|
|
16906
|
+
"name": "first",
|
|
16907
|
+
"description": "Maximum number of items to return per page, a value between 1 and 10.",
|
|
16908
|
+
"type": {
|
|
16909
|
+
"kind": "SCALAR",
|
|
16910
|
+
"name": "Int",
|
|
16911
|
+
"ofType": null
|
|
16912
|
+
},
|
|
16913
|
+
"defaultValue": "10",
|
|
16914
|
+
"isDeprecated": false,
|
|
16915
|
+
"deprecationReason": null
|
|
16916
|
+
},
|
|
16917
|
+
{
|
|
16918
|
+
"name": "after",
|
|
16919
|
+
"description": "Returns the items in the list that come after the specified cursor. For the first page, this field should not be specified.",
|
|
16920
|
+
"type": {
|
|
16921
|
+
"kind": "SCALAR",
|
|
16922
|
+
"name": "String",
|
|
16923
|
+
"ofType": null
|
|
16924
|
+
},
|
|
16925
|
+
"defaultValue": null,
|
|
16926
|
+
"isDeprecated": false,
|
|
16927
|
+
"deprecationReason": null
|
|
16048
16928
|
}
|
|
16049
16929
|
],
|
|
16050
16930
|
"type": {
|
|
@@ -16052,7 +16932,7 @@
|
|
|
16052
16932
|
"name": null,
|
|
16053
16933
|
"ofType": {
|
|
16054
16934
|
"kind": "OBJECT",
|
|
16055
|
-
"name": "
|
|
16935
|
+
"name": "RouteStationsWithAmenitiesConnection",
|
|
16056
16936
|
"ofType": null
|
|
16057
16937
|
}
|
|
16058
16938
|
},
|
|
@@ -16478,6 +17358,100 @@
|
|
|
16478
17358
|
},
|
|
16479
17359
|
"isDeprecated": false,
|
|
16480
17360
|
"deprecationReason": null
|
|
17361
|
+
},
|
|
17362
|
+
{
|
|
17363
|
+
"name": "vehicleMakes",
|
|
17364
|
+
"description": "[BETA] Get a full list of vehicle makes.",
|
|
17365
|
+
"args": [
|
|
17366
|
+
{
|
|
17367
|
+
"name": "country",
|
|
17368
|
+
"description": "ISO-3166 alpha-2 country code to apply localization on vehicle data if available.",
|
|
17369
|
+
"type": {
|
|
17370
|
+
"kind": "ENUM",
|
|
17371
|
+
"name": "CountryCodeAlpha2",
|
|
17372
|
+
"ofType": null
|
|
17373
|
+
},
|
|
17374
|
+
"defaultValue": null,
|
|
17375
|
+
"isDeprecated": false,
|
|
17376
|
+
"deprecationReason": null
|
|
17377
|
+
}
|
|
17378
|
+
],
|
|
17379
|
+
"type": {
|
|
17380
|
+
"kind": "NON_NULL",
|
|
17381
|
+
"name": null,
|
|
17382
|
+
"ofType": {
|
|
17383
|
+
"kind": "OBJECT",
|
|
17384
|
+
"name": "VehicleMakesConnection",
|
|
17385
|
+
"ofType": null
|
|
17386
|
+
}
|
|
17387
|
+
},
|
|
17388
|
+
"isDeprecated": false,
|
|
17389
|
+
"deprecationReason": null
|
|
17390
|
+
},
|
|
17391
|
+
{
|
|
17392
|
+
"name": "vehicleModels",
|
|
17393
|
+
"description": "[BETA] Get a full list of vehicle make models.",
|
|
17394
|
+
"args": [
|
|
17395
|
+
{
|
|
17396
|
+
"name": "filter",
|
|
17397
|
+
"description": "Filter vehicle models result.",
|
|
17398
|
+
"type": {
|
|
17399
|
+
"kind": "INPUT_OBJECT",
|
|
17400
|
+
"name": "VehicleModelsFilter",
|
|
17401
|
+
"ofType": null
|
|
17402
|
+
},
|
|
17403
|
+
"defaultValue": null,
|
|
17404
|
+
"isDeprecated": false,
|
|
17405
|
+
"deprecationReason": null
|
|
17406
|
+
},
|
|
17407
|
+
{
|
|
17408
|
+
"name": "country",
|
|
17409
|
+
"description": "ISO-3166 alpha-2 country code to apply localization on vehicle data if available.",
|
|
17410
|
+
"type": {
|
|
17411
|
+
"kind": "ENUM",
|
|
17412
|
+
"name": "CountryCodeAlpha2",
|
|
17413
|
+
"ofType": null
|
|
17414
|
+
},
|
|
17415
|
+
"defaultValue": null,
|
|
17416
|
+
"isDeprecated": false,
|
|
17417
|
+
"deprecationReason": null
|
|
17418
|
+
},
|
|
17419
|
+
{
|
|
17420
|
+
"name": "first",
|
|
17421
|
+
"description": "Maximum number of items to return per page, a value between 1 and 10.",
|
|
17422
|
+
"type": {
|
|
17423
|
+
"kind": "SCALAR",
|
|
17424
|
+
"name": "Int",
|
|
17425
|
+
"ofType": null
|
|
17426
|
+
},
|
|
17427
|
+
"defaultValue": "10",
|
|
17428
|
+
"isDeprecated": false,
|
|
17429
|
+
"deprecationReason": null
|
|
17430
|
+
},
|
|
17431
|
+
{
|
|
17432
|
+
"name": "after",
|
|
17433
|
+
"description": "Returns the items in the list that come after the specified cursor. For the first page, this field should not be specified.",
|
|
17434
|
+
"type": {
|
|
17435
|
+
"kind": "SCALAR",
|
|
17436
|
+
"name": "String",
|
|
17437
|
+
"ofType": null
|
|
17438
|
+
},
|
|
17439
|
+
"defaultValue": null,
|
|
17440
|
+
"isDeprecated": false,
|
|
17441
|
+
"deprecationReason": null
|
|
17442
|
+
}
|
|
17443
|
+
],
|
|
17444
|
+
"type": {
|
|
17445
|
+
"kind": "NON_NULL",
|
|
17446
|
+
"name": null,
|
|
17447
|
+
"ofType": {
|
|
17448
|
+
"kind": "OBJECT",
|
|
17449
|
+
"name": "VehicleModelsConnection",
|
|
17450
|
+
"ofType": null
|
|
17451
|
+
}
|
|
17452
|
+
},
|
|
17453
|
+
"isDeprecated": false,
|
|
17454
|
+
"deprecationReason": null
|
|
16481
17455
|
}
|
|
16482
17456
|
],
|
|
16483
17457
|
"inputFields": null,
|
|
@@ -17206,6 +18180,18 @@
|
|
|
17206
18180
|
"isDeprecated": false,
|
|
17207
18181
|
"deprecationReason": null
|
|
17208
18182
|
},
|
|
18183
|
+
{
|
|
18184
|
+
"name": "numberOfPassengers",
|
|
18185
|
+
"description": "Number of passengers on board.",
|
|
18186
|
+
"type": {
|
|
18187
|
+
"kind": "SCALAR",
|
|
18188
|
+
"name": "Int",
|
|
18189
|
+
"ofType": null
|
|
18190
|
+
},
|
|
18191
|
+
"defaultValue": null,
|
|
18192
|
+
"isDeprecated": false,
|
|
18193
|
+
"deprecationReason": null
|
|
18194
|
+
},
|
|
17209
18195
|
{
|
|
17210
18196
|
"name": "occupants",
|
|
17211
18197
|
"description": "Number of occupants.",
|
|
@@ -17244,7 +18230,7 @@
|
|
|
17244
18230
|
},
|
|
17245
18231
|
{
|
|
17246
18232
|
"name": "auxConsumption",
|
|
17247
|
-
"description": "
|
|
18233
|
+
"description": "In favor of `consumption`.",
|
|
17248
18234
|
"type": {
|
|
17249
18235
|
"kind": "SCALAR",
|
|
17250
18236
|
"name": "Float",
|
|
@@ -17256,7 +18242,7 @@
|
|
|
17256
18242
|
},
|
|
17257
18243
|
{
|
|
17258
18244
|
"name": "bmsConsumption",
|
|
17259
|
-
"description": "
|
|
18245
|
+
"description": "In favor of `consumption`.",
|
|
17260
18246
|
"type": {
|
|
17261
18247
|
"kind": "SCALAR",
|
|
17262
18248
|
"name": "Float",
|
|
@@ -17574,8 +18560,8 @@
|
|
|
17574
18560
|
"name": "Boolean",
|
|
17575
18561
|
"ofType": null
|
|
17576
18562
|
},
|
|
17577
|
-
"isDeprecated":
|
|
17578
|
-
"deprecationReason":
|
|
18563
|
+
"isDeprecated": true,
|
|
18564
|
+
"deprecationReason": "Deprecated: all routes will have turn-by-turn instructions prepared. Boolean will be ignored."
|
|
17579
18565
|
},
|
|
17580
18566
|
{
|
|
17581
18567
|
"name": "chargeMode",
|
|
@@ -18949,6 +19935,29 @@
|
|
|
18949
19935
|
],
|
|
18950
19936
|
"possibleTypes": null
|
|
18951
19937
|
},
|
|
19938
|
+
{
|
|
19939
|
+
"kind": "INPUT_OBJECT",
|
|
19940
|
+
"name": "RouteAmenityFilter",
|
|
19941
|
+
"description": null,
|
|
19942
|
+
"fields": null,
|
|
19943
|
+
"inputFields": [
|
|
19944
|
+
{
|
|
19945
|
+
"name": "maximum_distance_from_station",
|
|
19946
|
+
"description": "Maximum distance from the station to the amenity. The value must be between 0 and 1 000 meters. If not specified, defaults to 250 meters.",
|
|
19947
|
+
"type": {
|
|
19948
|
+
"kind": "INPUT_OBJECT",
|
|
19949
|
+
"name": "DistanceInput",
|
|
19950
|
+
"ofType": null
|
|
19951
|
+
},
|
|
19952
|
+
"defaultValue": null,
|
|
19953
|
+
"isDeprecated": false,
|
|
19954
|
+
"deprecationReason": null
|
|
19955
|
+
}
|
|
19956
|
+
],
|
|
19957
|
+
"interfaces": null,
|
|
19958
|
+
"enumValues": null,
|
|
19959
|
+
"possibleTypes": null
|
|
19960
|
+
},
|
|
18952
19961
|
{
|
|
18953
19962
|
"kind": "OBJECT",
|
|
18954
19963
|
"name": "RouteAmenityPreferences",
|
|
@@ -19084,20 +20093,16 @@
|
|
|
19084
20093
|
"description": "Geometry of the feature.",
|
|
19085
20094
|
"args": [],
|
|
19086
20095
|
"type": {
|
|
19087
|
-
"kind": "
|
|
19088
|
-
"name":
|
|
19089
|
-
"ofType":
|
|
19090
|
-
"kind": "OBJECT",
|
|
19091
|
-
"name": "Point",
|
|
19092
|
-
"ofType": null
|
|
19093
|
-
}
|
|
20096
|
+
"kind": "OBJECT",
|
|
20097
|
+
"name": "Point",
|
|
20098
|
+
"ofType": null
|
|
19094
20099
|
},
|
|
19095
20100
|
"isDeprecated": false,
|
|
19096
20101
|
"deprecationReason": null
|
|
19097
20102
|
},
|
|
19098
20103
|
{
|
|
19099
20104
|
"name": "properties",
|
|
19100
|
-
"description": "
|
|
20105
|
+
"description": "Additional feature properties.",
|
|
19101
20106
|
"args": [],
|
|
19102
20107
|
"type": {
|
|
19103
20108
|
"kind": "OBJECT",
|
|
@@ -19151,13 +20156,9 @@
|
|
|
19151
20156
|
"name": "geometry",
|
|
19152
20157
|
"description": "Geometry of the feature.",
|
|
19153
20158
|
"type": {
|
|
19154
|
-
"kind": "
|
|
19155
|
-
"name":
|
|
19156
|
-
"ofType":
|
|
19157
|
-
"kind": "INPUT_OBJECT",
|
|
19158
|
-
"name": "PointInput",
|
|
19159
|
-
"ofType": null
|
|
19160
|
-
}
|
|
20159
|
+
"kind": "INPUT_OBJECT",
|
|
20160
|
+
"name": "PointInput",
|
|
20161
|
+
"ofType": null
|
|
19161
20162
|
},
|
|
19162
20163
|
"defaultValue": null,
|
|
19163
20164
|
"isDeprecated": false,
|
|
@@ -19165,7 +20166,7 @@
|
|
|
19165
20166
|
},
|
|
19166
20167
|
{
|
|
19167
20168
|
"name": "properties",
|
|
19168
|
-
"description": "
|
|
20169
|
+
"description": "Additional feature properties.",
|
|
19169
20170
|
"type": {
|
|
19170
20171
|
"kind": "INPUT_OBJECT",
|
|
19171
20172
|
"name": "RouteDestinationPropertiesInput",
|
|
@@ -19235,7 +20236,7 @@
|
|
|
19235
20236
|
},
|
|
19236
20237
|
{
|
|
19237
20238
|
"name": "station",
|
|
19238
|
-
"description": "
|
|
20239
|
+
"description": "Specifies a charging station at the destination. If a known station is provided, it will be used as charging stop. Any configured operator preferences are ignored for this stop.",
|
|
19239
20240
|
"type": {
|
|
19240
20241
|
"kind": "INPUT_OBJECT",
|
|
19241
20242
|
"name": "RoutePropertiesStationInput",
|
|
@@ -19485,7 +20486,7 @@
|
|
|
19485
20486
|
},
|
|
19486
20487
|
{
|
|
19487
20488
|
"name": "alternative_stations",
|
|
19488
|
-
"description": "Alternative stations along a route within a specified radius
|
|
20489
|
+
"description": "Alternative stations along a route within a specified radius.\n\nIncludes stations from preferred/required/avoided operators but excludes stations from excluded operators.\nThis list is only populated if `alternative_station_radius` was specified in the `createRoute` mutation.",
|
|
19489
20490
|
"args": [],
|
|
19490
20491
|
"type": {
|
|
19491
20492
|
"kind": "NON_NULL",
|
|
@@ -19655,7 +20656,7 @@
|
|
|
19655
20656
|
{
|
|
19656
20657
|
"kind": "OBJECT",
|
|
19657
20658
|
"name": "RouteDetailsDurations",
|
|
19658
|
-
"description":
|
|
20659
|
+
"description": null,
|
|
19659
20660
|
"fields": [
|
|
19660
20661
|
{
|
|
19661
20662
|
"name": "total",
|
|
@@ -19707,7 +20708,7 @@
|
|
|
19707
20708
|
},
|
|
19708
20709
|
{
|
|
19709
20710
|
"name": "stopover",
|
|
19710
|
-
"description": "Total
|
|
20711
|
+
"description": "Total duration stopped at a location via or at a station via, excluding charging time and charging penalty, in seconds.",
|
|
19711
20712
|
"args": [],
|
|
19712
20713
|
"type": {
|
|
19713
20714
|
"kind": "NON_NULL",
|
|
@@ -20174,7 +21175,7 @@
|
|
|
20174
21175
|
},
|
|
20175
21176
|
{
|
|
20176
21177
|
"name": "station",
|
|
20177
|
-
"description": "Information about the station at the destination of a leg.
|
|
21178
|
+
"description": "Information about the station at the destination of a leg.",
|
|
20178
21179
|
"args": [],
|
|
20179
21180
|
"type": {
|
|
20180
21181
|
"kind": "OBJECT",
|
|
@@ -20457,8 +21458,8 @@
|
|
|
20457
21458
|
"name": "Int",
|
|
20458
21459
|
"ofType": null
|
|
20459
21460
|
},
|
|
20460
|
-
"isDeprecated":
|
|
20461
|
-
"deprecationReason":
|
|
21461
|
+
"isDeprecated": true,
|
|
21462
|
+
"deprecationReason": "In favor of legs.durations"
|
|
20462
21463
|
},
|
|
20463
21464
|
{
|
|
20464
21465
|
"name": "occupants",
|
|
@@ -21655,6 +22656,123 @@
|
|
|
21655
22656
|
],
|
|
21656
22657
|
"possibleTypes": null
|
|
21657
22658
|
},
|
|
22659
|
+
{
|
|
22660
|
+
"kind": "OBJECT",
|
|
22661
|
+
"name": "RouteDrivingPreferences",
|
|
22662
|
+
"description": null,
|
|
22663
|
+
"fields": [
|
|
22664
|
+
{
|
|
22665
|
+
"name": "speed_factor",
|
|
22666
|
+
"description": "[BETA] Factor to adjust the route's calculated average speed. Accepts values between 0.80 and 1.20. 1.0 is neutral. Values below 1.0 reduce speed (e.g. 0.95 is -5%), values above increase it. If provided in combination with style, this overrides the speed factor implied by the selected 'style'.",
|
|
22667
|
+
"args": [],
|
|
22668
|
+
"type": {
|
|
22669
|
+
"kind": "SCALAR",
|
|
22670
|
+
"name": "Float",
|
|
22671
|
+
"ofType": null
|
|
22672
|
+
},
|
|
22673
|
+
"isDeprecated": false,
|
|
22674
|
+
"deprecationReason": null
|
|
22675
|
+
},
|
|
22676
|
+
{
|
|
22677
|
+
"name": "maximum_speed",
|
|
22678
|
+
"description": "[BETA] Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. If provided in combination with 'style, this overrides the maximum speed implied by the selected 'style'.",
|
|
22679
|
+
"args": [],
|
|
22680
|
+
"type": {
|
|
22681
|
+
"kind": "OBJECT",
|
|
22682
|
+
"name": "MaximumSpeed",
|
|
22683
|
+
"ofType": null
|
|
22684
|
+
},
|
|
22685
|
+
"isDeprecated": false,
|
|
22686
|
+
"deprecationReason": null
|
|
22687
|
+
},
|
|
22688
|
+
{
|
|
22689
|
+
"name": "style",
|
|
22690
|
+
"description": "[BETA] Defines a driving style. If provided in combination with 'maximum_speed' or 'speed_factor', those values override the values defined by the selected 'style'.",
|
|
22691
|
+
"args": [],
|
|
22692
|
+
"type": {
|
|
22693
|
+
"kind": "ENUM",
|
|
22694
|
+
"name": "RouteDrivingStyle",
|
|
22695
|
+
"ofType": null
|
|
22696
|
+
},
|
|
22697
|
+
"isDeprecated": false,
|
|
22698
|
+
"deprecationReason": null
|
|
22699
|
+
}
|
|
22700
|
+
],
|
|
22701
|
+
"inputFields": null,
|
|
22702
|
+
"interfaces": [],
|
|
22703
|
+
"enumValues": null,
|
|
22704
|
+
"possibleTypes": null
|
|
22705
|
+
},
|
|
22706
|
+
{
|
|
22707
|
+
"kind": "INPUT_OBJECT",
|
|
22708
|
+
"name": "RouteDrivingPreferencesInput",
|
|
22709
|
+
"description": null,
|
|
22710
|
+
"fields": null,
|
|
22711
|
+
"inputFields": [
|
|
22712
|
+
{
|
|
22713
|
+
"name": "speed_factor",
|
|
22714
|
+
"description": "[BETA] Factor to adjust the route's calculated average speed. Accepts values between 0.80 and 1.20. 1.0 is neutral. Values below 1.0 reduce speed (e.g. 0.95 is -5%), values above increase it. If provided in combination with style, this overrides the speed factor implied by the selected 'style'.",
|
|
22715
|
+
"type": {
|
|
22716
|
+
"kind": "SCALAR",
|
|
22717
|
+
"name": "Float",
|
|
22718
|
+
"ofType": null
|
|
22719
|
+
},
|
|
22720
|
+
"defaultValue": null,
|
|
22721
|
+
"isDeprecated": false,
|
|
22722
|
+
"deprecationReason": null
|
|
22723
|
+
},
|
|
22724
|
+
{
|
|
22725
|
+
"name": "maximum_speed",
|
|
22726
|
+
"description": "[BETA] Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. If provided in combination with 'style, this overrides the maximum speed implied by the selected 'style'.",
|
|
22727
|
+
"type": {
|
|
22728
|
+
"kind": "INPUT_OBJECT",
|
|
22729
|
+
"name": "MaximumSpeedInput",
|
|
22730
|
+
"ofType": null
|
|
22731
|
+
},
|
|
22732
|
+
"defaultValue": null,
|
|
22733
|
+
"isDeprecated": false,
|
|
22734
|
+
"deprecationReason": null
|
|
22735
|
+
},
|
|
22736
|
+
{
|
|
22737
|
+
"name": "style",
|
|
22738
|
+
"description": "[BETA] Defines a driving style. If provided in combination with 'maximum_speed' or 'speed_factor', those values override the values defined by the selected 'style'.",
|
|
22739
|
+
"type": {
|
|
22740
|
+
"kind": "ENUM",
|
|
22741
|
+
"name": "RouteDrivingStyle",
|
|
22742
|
+
"ofType": null
|
|
22743
|
+
},
|
|
22744
|
+
"defaultValue": null,
|
|
22745
|
+
"isDeprecated": false,
|
|
22746
|
+
"deprecationReason": null
|
|
22747
|
+
}
|
|
22748
|
+
],
|
|
22749
|
+
"interfaces": null,
|
|
22750
|
+
"enumValues": null,
|
|
22751
|
+
"possibleTypes": null
|
|
22752
|
+
},
|
|
22753
|
+
{
|
|
22754
|
+
"kind": "ENUM",
|
|
22755
|
+
"name": "RouteDrivingStyle",
|
|
22756
|
+
"description": null,
|
|
22757
|
+
"fields": null,
|
|
22758
|
+
"inputFields": null,
|
|
22759
|
+
"interfaces": null,
|
|
22760
|
+
"enumValues": [
|
|
22761
|
+
{
|
|
22762
|
+
"name": "eco",
|
|
22763
|
+
"description": "Lower average driving speed and lower energy consumption. Applies a speed limit of 110 km/h to all segments where a higher legal limit is allowed and reduces by 5% the route's average driving speed.",
|
|
22764
|
+
"isDeprecated": false,
|
|
22765
|
+
"deprecationReason": null
|
|
22766
|
+
},
|
|
22767
|
+
{
|
|
22768
|
+
"name": "sport",
|
|
22769
|
+
"description": "Higher average driving speed and higher energy consumption. Applies no speed limit and increases by 5% the route's average driving speed.",
|
|
22770
|
+
"isDeprecated": false,
|
|
22771
|
+
"deprecationReason": null
|
|
22772
|
+
}
|
|
22773
|
+
],
|
|
22774
|
+
"possibleTypes": null
|
|
22775
|
+
},
|
|
21658
22776
|
{
|
|
21659
22777
|
"kind": "OBJECT",
|
|
21660
22778
|
"name": "RouteEmbeddedEmissions",
|
|
@@ -23712,6 +24830,22 @@
|
|
|
23712
24830
|
"isDeprecated": false,
|
|
23713
24831
|
"deprecationReason": null
|
|
23714
24832
|
},
|
|
24833
|
+
{
|
|
24834
|
+
"name": "energy_source_model",
|
|
24835
|
+
"description": "Model used to estimate the electricity mix.",
|
|
24836
|
+
"args": [],
|
|
24837
|
+
"type": {
|
|
24838
|
+
"kind": "NON_NULL",
|
|
24839
|
+
"name": null,
|
|
24840
|
+
"ofType": {
|
|
24841
|
+
"kind": "ENUM",
|
|
24842
|
+
"name": "RouteOperationalElectricityEnergySourceModel",
|
|
24843
|
+
"ofType": null
|
|
24844
|
+
}
|
|
24845
|
+
},
|
|
24846
|
+
"isDeprecated": false,
|
|
24847
|
+
"deprecationReason": null
|
|
24848
|
+
},
|
|
23715
24849
|
{
|
|
23716
24850
|
"name": "infrastructure",
|
|
23717
24851
|
"description": "Average emissions intensity of processing and transport of primary energy, power generation infrastructure, etc. in unit CO2e/kWh.",
|
|
@@ -24809,6 +25943,59 @@
|
|
|
24809
25943
|
"enumValues": null,
|
|
24810
25944
|
"possibleTypes": null
|
|
24811
25945
|
},
|
|
25946
|
+
{
|
|
25947
|
+
"kind": "ENUM",
|
|
25948
|
+
"name": "RouteOperationalElectricityEnergySourceModel",
|
|
25949
|
+
"description": "Energy source models.",
|
|
25950
|
+
"fields": null,
|
|
25951
|
+
"inputFields": null,
|
|
25952
|
+
"interfaces": null,
|
|
25953
|
+
"enumValues": [
|
|
25954
|
+
{
|
|
25955
|
+
"name": "grid_monthly_average",
|
|
25956
|
+
"description": "Historical average energy mix for the month.",
|
|
25957
|
+
"isDeprecated": false,
|
|
25958
|
+
"deprecationReason": null
|
|
25959
|
+
},
|
|
25960
|
+
{
|
|
25961
|
+
"name": "grid_hourly_average",
|
|
25962
|
+
"description": "Historical average energy mix for the month and hour.",
|
|
25963
|
+
"isDeprecated": false,
|
|
25964
|
+
"deprecationReason": null
|
|
25965
|
+
},
|
|
25966
|
+
{
|
|
25967
|
+
"name": "grid_demand_based_monthly_average",
|
|
25968
|
+
"description": "Estimate using historical average electricity demand for the month.",
|
|
25969
|
+
"isDeprecated": false,
|
|
25970
|
+
"deprecationReason": null
|
|
25971
|
+
},
|
|
25972
|
+
{
|
|
25973
|
+
"name": "grid_demand_based_hourly_average",
|
|
25974
|
+
"description": "Estimate using historical average electricity demand for the month and hour.",
|
|
25975
|
+
"isDeprecated": false,
|
|
25976
|
+
"deprecationReason": null
|
|
25977
|
+
},
|
|
25978
|
+
{
|
|
25979
|
+
"name": "climate_demand_based_seasonal_average",
|
|
25980
|
+
"description": "Estimate using the seasonal average electricity demand for the climate.",
|
|
25981
|
+
"isDeprecated": false,
|
|
25982
|
+
"deprecationReason": null
|
|
25983
|
+
},
|
|
25984
|
+
{
|
|
25985
|
+
"name": "climate_demand_based_hourly_average",
|
|
25986
|
+
"description": "Estimate using the seasonal average electricity demand for the hour and climate.",
|
|
25987
|
+
"isDeprecated": false,
|
|
25988
|
+
"deprecationReason": null
|
|
25989
|
+
},
|
|
25990
|
+
{
|
|
25991
|
+
"name": "default",
|
|
25992
|
+
"description": "Regional default energy mix.",
|
|
25993
|
+
"isDeprecated": false,
|
|
25994
|
+
"deprecationReason": null
|
|
25995
|
+
}
|
|
25996
|
+
],
|
|
25997
|
+
"possibleTypes": null
|
|
25998
|
+
},
|
|
24812
25999
|
{
|
|
24813
26000
|
"kind": "OBJECT",
|
|
24814
26001
|
"name": "RouteOperationalElectricityEnergySources",
|
|
@@ -25639,6 +26826,26 @@
|
|
|
25639
26826
|
},
|
|
25640
26827
|
"isDeprecated": false,
|
|
25641
26828
|
"deprecationReason": null
|
|
26829
|
+
},
|
|
26830
|
+
{
|
|
26831
|
+
"name": "avoid",
|
|
26832
|
+
"description": "Operators that should be avoided, but not excluded, for a route calculation.",
|
|
26833
|
+
"args": [],
|
|
26834
|
+
"type": {
|
|
26835
|
+
"kind": "LIST",
|
|
26836
|
+
"name": null,
|
|
26837
|
+
"ofType": {
|
|
26838
|
+
"kind": "NON_NULL",
|
|
26839
|
+
"name": null,
|
|
26840
|
+
"ofType": {
|
|
26841
|
+
"kind": "OBJECT",
|
|
26842
|
+
"name": "RouteOperatorsValue",
|
|
26843
|
+
"ofType": null
|
|
26844
|
+
}
|
|
26845
|
+
}
|
|
26846
|
+
},
|
|
26847
|
+
"isDeprecated": false,
|
|
26848
|
+
"deprecationReason": null
|
|
25642
26849
|
}
|
|
25643
26850
|
],
|
|
25644
26851
|
"inputFields": null,
|
|
@@ -25654,7 +26861,7 @@
|
|
|
25654
26861
|
"inputFields": [
|
|
25655
26862
|
{
|
|
25656
26863
|
"name": "ranking",
|
|
25657
|
-
"description": "
|
|
26864
|
+
"description": "Operators to be preferred in route calculation. If not specified, no operator ranking is applied (including project-configured ranking).",
|
|
25658
26865
|
"type": {
|
|
25659
26866
|
"kind": "INPUT_OBJECT",
|
|
25660
26867
|
"name": "RouteOperatorPreferencesRankingInput",
|
|
@@ -25666,7 +26873,27 @@
|
|
|
25666
26873
|
},
|
|
25667
26874
|
{
|
|
25668
26875
|
"name": "exclude",
|
|
25669
|
-
"description": "Operators
|
|
26876
|
+
"description": "Operators to be excluded from route calculation. If specified, overrides project-configured operator exclusions. If not specified, applies project-configured operator exclusions.",
|
|
26877
|
+
"type": {
|
|
26878
|
+
"kind": "LIST",
|
|
26879
|
+
"name": null,
|
|
26880
|
+
"ofType": {
|
|
26881
|
+
"kind": "NON_NULL",
|
|
26882
|
+
"name": null,
|
|
26883
|
+
"ofType": {
|
|
26884
|
+
"kind": "INPUT_OBJECT",
|
|
26885
|
+
"name": "RouteOperatorsValueInput",
|
|
26886
|
+
"ofType": null
|
|
26887
|
+
}
|
|
26888
|
+
}
|
|
26889
|
+
},
|
|
26890
|
+
"defaultValue": null,
|
|
26891
|
+
"isDeprecated": false,
|
|
26892
|
+
"deprecationReason": null
|
|
26893
|
+
},
|
|
26894
|
+
{
|
|
26895
|
+
"name": "avoid",
|
|
26896
|
+
"description": "Operators that should be avoided, but not excluded, for a route calculation.",
|
|
25670
26897
|
"type": {
|
|
25671
26898
|
"kind": "LIST",
|
|
25672
26899
|
"name": null,
|
|
@@ -25736,7 +26963,7 @@
|
|
|
25736
26963
|
"inputFields": [
|
|
25737
26964
|
{
|
|
25738
26965
|
"name": "type",
|
|
25739
|
-
"description": "
|
|
26966
|
+
"description": "Ranking enforcement type: preferred (applies ranking levels), required (routes only via ranked operators), or none (no ranking applied).",
|
|
25740
26967
|
"type": {
|
|
25741
26968
|
"kind": "NON_NULL",
|
|
25742
26969
|
"name": null,
|
|
@@ -25752,7 +26979,7 @@
|
|
|
25752
26979
|
},
|
|
25753
26980
|
{
|
|
25754
26981
|
"name": "levels",
|
|
25755
|
-
"description": "
|
|
26982
|
+
"description": "Priority levels for operator ranking. If not specified, applies the specified enforcement type to the project-configured operator ranking.",
|
|
25756
26983
|
"type": {
|
|
25757
26984
|
"kind": "INPUT_OBJECT",
|
|
25758
26985
|
"name": "RouteOperatorPreferencesRankingLevelsInput",
|
|
@@ -26453,7 +27680,7 @@
|
|
|
26453
27680
|
},
|
|
26454
27681
|
{
|
|
26455
27682
|
"name": "countries",
|
|
26456
|
-
"description": "List of countries in which the operator should be preferred/excluded. When omitted the operator will be preferred/excluded in every country.",
|
|
27683
|
+
"description": "List of countries in which the operator should be preferred/excluded/avoided. When omitted the operator will be preferred/excluded in every country.",
|
|
26457
27684
|
"type": {
|
|
26458
27685
|
"kind": "LIST",
|
|
26459
27686
|
"name": null,
|
|
@@ -26873,6 +28100,18 @@
|
|
|
26873
28100
|
},
|
|
26874
28101
|
"isDeprecated": false,
|
|
26875
28102
|
"deprecationReason": null
|
|
28103
|
+
},
|
|
28104
|
+
{
|
|
28105
|
+
"name": "stop_duration",
|
|
28106
|
+
"description": "Duration to stay at the station, in seconds. Includes charging time and charging penalty. When not provided, the duration is optimized based on the vehicle’s charging needs and selected charging mode.",
|
|
28107
|
+
"args": [],
|
|
28108
|
+
"type": {
|
|
28109
|
+
"kind": "SCALAR",
|
|
28110
|
+
"name": "Int",
|
|
28111
|
+
"ofType": null
|
|
28112
|
+
},
|
|
28113
|
+
"isDeprecated": false,
|
|
28114
|
+
"deprecationReason": null
|
|
26876
28115
|
}
|
|
26877
28116
|
],
|
|
26878
28117
|
"inputFields": null,
|
|
@@ -26909,6 +28148,18 @@
|
|
|
26909
28148
|
"defaultValue": null,
|
|
26910
28149
|
"isDeprecated": false,
|
|
26911
28150
|
"deprecationReason": null
|
|
28151
|
+
},
|
|
28152
|
+
{
|
|
28153
|
+
"name": "stop_duration",
|
|
28154
|
+
"description": "Duration to stay at the station, in seconds. Includes charging time and charging penalty. When not provided, the duration is optimized based on the vehicle’s charging needs and selected charging mode.",
|
|
28155
|
+
"type": {
|
|
28156
|
+
"kind": "SCALAR",
|
|
28157
|
+
"name": "Int",
|
|
28158
|
+
"ofType": null
|
|
28159
|
+
},
|
|
28160
|
+
"defaultValue": null,
|
|
28161
|
+
"isDeprecated": false,
|
|
28162
|
+
"deprecationReason": null
|
|
26912
28163
|
}
|
|
26913
28164
|
],
|
|
26914
28165
|
"interfaces": null,
|
|
@@ -27278,6 +28529,258 @@
|
|
|
27278
28529
|
],
|
|
27279
28530
|
"possibleTypes": null
|
|
27280
28531
|
},
|
|
28532
|
+
{
|
|
28533
|
+
"kind": "INPUT_OBJECT",
|
|
28534
|
+
"name": "RouteStationFilter",
|
|
28535
|
+
"description": null,
|
|
28536
|
+
"fields": null,
|
|
28537
|
+
"inputFields": [
|
|
28538
|
+
{
|
|
28539
|
+
"name": "maximum_distance_from_path",
|
|
28540
|
+
"description": "Filters stations within this distance from the route path. The value must be between 0 and 10 000 meters. If not specified, defaults to 1 000 meters.",
|
|
28541
|
+
"type": {
|
|
28542
|
+
"kind": "INPUT_OBJECT",
|
|
28543
|
+
"name": "DistanceInput",
|
|
28544
|
+
"ofType": null
|
|
28545
|
+
},
|
|
28546
|
+
"defaultValue": null,
|
|
28547
|
+
"isDeprecated": false,
|
|
28548
|
+
"deprecationReason": null
|
|
28549
|
+
},
|
|
28550
|
+
{
|
|
28551
|
+
"name": "operator_preference",
|
|
28552
|
+
"description": "Filters stations by operator preference types. This filter depends exclusively on the preferences used for the route calculation. If not specified, stations from all preference types (ranked, unranked, avoided, excluded) are returned.",
|
|
28553
|
+
"type": {
|
|
28554
|
+
"kind": "LIST",
|
|
28555
|
+
"name": null,
|
|
28556
|
+
"ofType": {
|
|
28557
|
+
"kind": "NON_NULL",
|
|
28558
|
+
"name": null,
|
|
28559
|
+
"ofType": {
|
|
28560
|
+
"kind": "ENUM",
|
|
28561
|
+
"name": "OperatorPreferenceType",
|
|
28562
|
+
"ofType": null
|
|
28563
|
+
}
|
|
28564
|
+
}
|
|
28565
|
+
},
|
|
28566
|
+
"defaultValue": null,
|
|
28567
|
+
"isDeprecated": false,
|
|
28568
|
+
"deprecationReason": null
|
|
28569
|
+
}
|
|
28570
|
+
],
|
|
28571
|
+
"interfaces": null,
|
|
28572
|
+
"enumValues": null,
|
|
28573
|
+
"possibleTypes": null
|
|
28574
|
+
},
|
|
28575
|
+
{
|
|
28576
|
+
"kind": "OBJECT",
|
|
28577
|
+
"name": "RouteStationOperator",
|
|
28578
|
+
"description": null,
|
|
28579
|
+
"fields": [
|
|
28580
|
+
{
|
|
28581
|
+
"name": "id",
|
|
28582
|
+
"description": "Unique operator ID.",
|
|
28583
|
+
"args": [],
|
|
28584
|
+
"type": {
|
|
28585
|
+
"kind": "SCALAR",
|
|
28586
|
+
"name": "ID",
|
|
28587
|
+
"ofType": null
|
|
28588
|
+
},
|
|
28589
|
+
"isDeprecated": false,
|
|
28590
|
+
"deprecationReason": null
|
|
28591
|
+
},
|
|
28592
|
+
{
|
|
28593
|
+
"name": "preference_type",
|
|
28594
|
+
"description": "Operator's preference status specifically for this route calculation.",
|
|
28595
|
+
"args": [],
|
|
28596
|
+
"type": {
|
|
28597
|
+
"kind": "NON_NULL",
|
|
28598
|
+
"name": null,
|
|
28599
|
+
"ofType": {
|
|
28600
|
+
"kind": "ENUM",
|
|
28601
|
+
"name": "OperatorPreferenceType",
|
|
28602
|
+
"ofType": null
|
|
28603
|
+
}
|
|
28604
|
+
},
|
|
28605
|
+
"isDeprecated": false,
|
|
28606
|
+
"deprecationReason": null
|
|
28607
|
+
}
|
|
28608
|
+
],
|
|
28609
|
+
"inputFields": null,
|
|
28610
|
+
"interfaces": [],
|
|
28611
|
+
"enumValues": null,
|
|
28612
|
+
"possibleTypes": null
|
|
28613
|
+
},
|
|
28614
|
+
{
|
|
28615
|
+
"kind": "OBJECT",
|
|
28616
|
+
"name": "RouteStationPreferences",
|
|
28617
|
+
"description": null,
|
|
28618
|
+
"fields": [
|
|
28619
|
+
{
|
|
28620
|
+
"name": "prefer_highway_charging",
|
|
28621
|
+
"description": "[BETA] Flag to prioritise charging stations located directly on the highway, avoiding exiting highways to charge. This preference is considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. The preference's weight is configurable in project settings.",
|
|
28622
|
+
"args": [],
|
|
28623
|
+
"type": {
|
|
28624
|
+
"kind": "SCALAR",
|
|
28625
|
+
"name": "Boolean",
|
|
28626
|
+
"ofType": null
|
|
28627
|
+
},
|
|
28628
|
+
"isDeprecated": false,
|
|
28629
|
+
"deprecationReason": null
|
|
28630
|
+
}
|
|
28631
|
+
],
|
|
28632
|
+
"inputFields": null,
|
|
28633
|
+
"interfaces": [],
|
|
28634
|
+
"enumValues": null,
|
|
28635
|
+
"possibleTypes": null
|
|
28636
|
+
},
|
|
28637
|
+
{
|
|
28638
|
+
"kind": "INPUT_OBJECT",
|
|
28639
|
+
"name": "RouteStationPreferencesInput",
|
|
28640
|
+
"description": null,
|
|
28641
|
+
"fields": null,
|
|
28642
|
+
"inputFields": [
|
|
28643
|
+
{
|
|
28644
|
+
"name": "prefer_highway_charging",
|
|
28645
|
+
"description": "[BETA] Flag to prioritise charging stations located directly on the highway, avoiding exiting highways to charge. This preference is considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. The preference's weight is configurable in project settings.",
|
|
28646
|
+
"type": {
|
|
28647
|
+
"kind": "SCALAR",
|
|
28648
|
+
"name": "Boolean",
|
|
28649
|
+
"ofType": null
|
|
28650
|
+
},
|
|
28651
|
+
"defaultValue": "true",
|
|
28652
|
+
"isDeprecated": false,
|
|
28653
|
+
"deprecationReason": null
|
|
28654
|
+
}
|
|
28655
|
+
],
|
|
28656
|
+
"interfaces": null,
|
|
28657
|
+
"enumValues": null,
|
|
28658
|
+
"possibleTypes": null
|
|
28659
|
+
},
|
|
28660
|
+
{
|
|
28661
|
+
"kind": "OBJECT",
|
|
28662
|
+
"name": "RouteStationWithAmenities",
|
|
28663
|
+
"description": null,
|
|
28664
|
+
"fields": [
|
|
28665
|
+
{
|
|
28666
|
+
"name": "id",
|
|
28667
|
+
"description": "ID of the station.",
|
|
28668
|
+
"args": [],
|
|
28669
|
+
"type": {
|
|
28670
|
+
"kind": "NON_NULL",
|
|
28671
|
+
"name": null,
|
|
28672
|
+
"ofType": {
|
|
28673
|
+
"kind": "SCALAR",
|
|
28674
|
+
"name": "ID",
|
|
28675
|
+
"ofType": null
|
|
28676
|
+
}
|
|
28677
|
+
},
|
|
28678
|
+
"isDeprecated": false,
|
|
28679
|
+
"deprecationReason": null
|
|
28680
|
+
},
|
|
28681
|
+
{
|
|
28682
|
+
"name": "external_id",
|
|
28683
|
+
"description": "ID of the station provided by the station data source.",
|
|
28684
|
+
"args": [],
|
|
28685
|
+
"type": {
|
|
28686
|
+
"kind": "SCALAR",
|
|
28687
|
+
"name": "ID",
|
|
28688
|
+
"ofType": null
|
|
28689
|
+
},
|
|
28690
|
+
"isDeprecated": false,
|
|
28691
|
+
"deprecationReason": null
|
|
28692
|
+
},
|
|
28693
|
+
{
|
|
28694
|
+
"name": "location",
|
|
28695
|
+
"description": "GeoJSON location of the station.",
|
|
28696
|
+
"args": [],
|
|
28697
|
+
"type": {
|
|
28698
|
+
"kind": "NON_NULL",
|
|
28699
|
+
"name": null,
|
|
28700
|
+
"ofType": {
|
|
28701
|
+
"kind": "OBJECT",
|
|
28702
|
+
"name": "Point",
|
|
28703
|
+
"ofType": null
|
|
28704
|
+
}
|
|
28705
|
+
},
|
|
28706
|
+
"isDeprecated": false,
|
|
28707
|
+
"deprecationReason": null
|
|
28708
|
+
},
|
|
28709
|
+
{
|
|
28710
|
+
"name": "operator",
|
|
28711
|
+
"description": "Information about the station's operator.",
|
|
28712
|
+
"args": [],
|
|
28713
|
+
"type": {
|
|
28714
|
+
"kind": "NON_NULL",
|
|
28715
|
+
"name": null,
|
|
28716
|
+
"ofType": {
|
|
28717
|
+
"kind": "OBJECT",
|
|
28718
|
+
"name": "RouteStationOperator",
|
|
28719
|
+
"ofType": null
|
|
28720
|
+
}
|
|
28721
|
+
},
|
|
28722
|
+
"isDeprecated": false,
|
|
28723
|
+
"deprecationReason": null
|
|
28724
|
+
},
|
|
28725
|
+
{
|
|
28726
|
+
"name": "distance_from_path",
|
|
28727
|
+
"description": "Distance of the station to the closest point in the original route.",
|
|
28728
|
+
"args": [
|
|
28729
|
+
{
|
|
28730
|
+
"name": "unit",
|
|
28731
|
+
"description": null,
|
|
28732
|
+
"type": {
|
|
28733
|
+
"kind": "ENUM",
|
|
28734
|
+
"name": "DistanceUnit",
|
|
28735
|
+
"ofType": null
|
|
28736
|
+
},
|
|
28737
|
+
"defaultValue": "meter",
|
|
28738
|
+
"isDeprecated": false,
|
|
28739
|
+
"deprecationReason": null
|
|
28740
|
+
}
|
|
28741
|
+
],
|
|
28742
|
+
"type": {
|
|
28743
|
+
"kind": "NON_NULL",
|
|
28744
|
+
"name": null,
|
|
28745
|
+
"ofType": {
|
|
28746
|
+
"kind": "SCALAR",
|
|
28747
|
+
"name": "Float",
|
|
28748
|
+
"ofType": null
|
|
28749
|
+
}
|
|
28750
|
+
},
|
|
28751
|
+
"isDeprecated": false,
|
|
28752
|
+
"deprecationReason": null
|
|
28753
|
+
},
|
|
28754
|
+
{
|
|
28755
|
+
"name": "matching_amenities",
|
|
28756
|
+
"description": "List of up to 5 amenities matching the specified amenity type. Sorted by ascending distance from the station.",
|
|
28757
|
+
"args": [],
|
|
28758
|
+
"type": {
|
|
28759
|
+
"kind": "NON_NULL",
|
|
28760
|
+
"name": null,
|
|
28761
|
+
"ofType": {
|
|
28762
|
+
"kind": "LIST",
|
|
28763
|
+
"name": null,
|
|
28764
|
+
"ofType": {
|
|
28765
|
+
"kind": "NON_NULL",
|
|
28766
|
+
"name": null,
|
|
28767
|
+
"ofType": {
|
|
28768
|
+
"kind": "OBJECT",
|
|
28769
|
+
"name": "Amenity",
|
|
28770
|
+
"ofType": null
|
|
28771
|
+
}
|
|
28772
|
+
}
|
|
28773
|
+
}
|
|
28774
|
+
},
|
|
28775
|
+
"isDeprecated": false,
|
|
28776
|
+
"deprecationReason": null
|
|
28777
|
+
}
|
|
28778
|
+
],
|
|
28779
|
+
"inputFields": null,
|
|
28780
|
+
"interfaces": [],
|
|
28781
|
+
"enumValues": null,
|
|
28782
|
+
"possibleTypes": null
|
|
28783
|
+
},
|
|
27281
28784
|
{
|
|
27282
28785
|
"kind": "OBJECT",
|
|
27283
28786
|
"name": "RouteStationsAlong",
|
|
@@ -27361,6 +28864,108 @@
|
|
|
27361
28864
|
"enumValues": null,
|
|
27362
28865
|
"possibleTypes": null
|
|
27363
28866
|
},
|
|
28867
|
+
{
|
|
28868
|
+
"kind": "OBJECT",
|
|
28869
|
+
"name": "RouteStationsWithAmenitiesConnection",
|
|
28870
|
+
"description": null,
|
|
28871
|
+
"fields": [
|
|
28872
|
+
{
|
|
28873
|
+
"name": "total_count",
|
|
28874
|
+
"description": "Total number of stations with amenities of the specified type.",
|
|
28875
|
+
"args": [],
|
|
28876
|
+
"type": {
|
|
28877
|
+
"kind": "NON_NULL",
|
|
28878
|
+
"name": null,
|
|
28879
|
+
"ofType": {
|
|
28880
|
+
"kind": "SCALAR",
|
|
28881
|
+
"name": "Int",
|
|
28882
|
+
"ofType": null
|
|
28883
|
+
}
|
|
28884
|
+
},
|
|
28885
|
+
"isDeprecated": false,
|
|
28886
|
+
"deprecationReason": null
|
|
28887
|
+
},
|
|
28888
|
+
{
|
|
28889
|
+
"name": "page_info",
|
|
28890
|
+
"description": "Information about the current page.",
|
|
28891
|
+
"args": [],
|
|
28892
|
+
"type": {
|
|
28893
|
+
"kind": "NON_NULL",
|
|
28894
|
+
"name": null,
|
|
28895
|
+
"ofType": {
|
|
28896
|
+
"kind": "OBJECT",
|
|
28897
|
+
"name": "PageInfo",
|
|
28898
|
+
"ofType": null
|
|
28899
|
+
}
|
|
28900
|
+
},
|
|
28901
|
+
"isDeprecated": false,
|
|
28902
|
+
"deprecationReason": null
|
|
28903
|
+
},
|
|
28904
|
+
{
|
|
28905
|
+
"name": "nodes",
|
|
28906
|
+
"description": "List of stations with amenities of the specified type.",
|
|
28907
|
+
"args": [],
|
|
28908
|
+
"type": {
|
|
28909
|
+
"kind": "NON_NULL",
|
|
28910
|
+
"name": null,
|
|
28911
|
+
"ofType": {
|
|
28912
|
+
"kind": "LIST",
|
|
28913
|
+
"name": null,
|
|
28914
|
+
"ofType": {
|
|
28915
|
+
"kind": "NON_NULL",
|
|
28916
|
+
"name": null,
|
|
28917
|
+
"ofType": {
|
|
28918
|
+
"kind": "OBJECT",
|
|
28919
|
+
"name": "RouteStationWithAmenities",
|
|
28920
|
+
"ofType": null
|
|
28921
|
+
}
|
|
28922
|
+
}
|
|
28923
|
+
}
|
|
28924
|
+
},
|
|
28925
|
+
"isDeprecated": false,
|
|
28926
|
+
"deprecationReason": null
|
|
28927
|
+
}
|
|
28928
|
+
],
|
|
28929
|
+
"inputFields": null,
|
|
28930
|
+
"interfaces": [],
|
|
28931
|
+
"enumValues": null,
|
|
28932
|
+
"possibleTypes": null
|
|
28933
|
+
},
|
|
28934
|
+
{
|
|
28935
|
+
"kind": "INPUT_OBJECT",
|
|
28936
|
+
"name": "RouteStationsWithAmenityFilter",
|
|
28937
|
+
"description": null,
|
|
28938
|
+
"fields": null,
|
|
28939
|
+
"inputFields": [
|
|
28940
|
+
{
|
|
28941
|
+
"name": "station",
|
|
28942
|
+
"description": "Station filters.",
|
|
28943
|
+
"type": {
|
|
28944
|
+
"kind": "INPUT_OBJECT",
|
|
28945
|
+
"name": "RouteStationFilter",
|
|
28946
|
+
"ofType": null
|
|
28947
|
+
},
|
|
28948
|
+
"defaultValue": null,
|
|
28949
|
+
"isDeprecated": false,
|
|
28950
|
+
"deprecationReason": null
|
|
28951
|
+
},
|
|
28952
|
+
{
|
|
28953
|
+
"name": "amenity",
|
|
28954
|
+
"description": "Amenity filters.",
|
|
28955
|
+
"type": {
|
|
28956
|
+
"kind": "INPUT_OBJECT",
|
|
28957
|
+
"name": "RouteAmenityFilter",
|
|
28958
|
+
"ofType": null
|
|
28959
|
+
},
|
|
28960
|
+
"defaultValue": null,
|
|
28961
|
+
"isDeprecated": false,
|
|
28962
|
+
"deprecationReason": null
|
|
28963
|
+
}
|
|
28964
|
+
],
|
|
28965
|
+
"interfaces": null,
|
|
28966
|
+
"enumValues": null,
|
|
28967
|
+
"possibleTypes": null
|
|
28968
|
+
},
|
|
27364
28969
|
{
|
|
27365
28970
|
"kind": "ENUM",
|
|
27366
28971
|
"name": "RouteStatus",
|
|
@@ -27545,6 +29150,45 @@
|
|
|
27545
29150
|
],
|
|
27546
29151
|
"possibleTypes": null
|
|
27547
29152
|
},
|
|
29153
|
+
{
|
|
29154
|
+
"kind": "INPUT_OBJECT",
|
|
29155
|
+
"name": "RouteTimeWindow",
|
|
29156
|
+
"description": "Specifies a temporal window to search for stations with matching amenity types. Defined by a center from the journey origin and a surrounding time margin.",
|
|
29157
|
+
"fields": null,
|
|
29158
|
+
"inputFields": [
|
|
29159
|
+
{
|
|
29160
|
+
"name": "center",
|
|
29161
|
+
"description": "Center point of the search, expressed as the travel time, in seconds, from the journey's origin.",
|
|
29162
|
+
"type": {
|
|
29163
|
+
"kind": "NON_NULL",
|
|
29164
|
+
"name": null,
|
|
29165
|
+
"ofType": {
|
|
29166
|
+
"kind": "SCALAR",
|
|
29167
|
+
"name": "Int",
|
|
29168
|
+
"ofType": null
|
|
29169
|
+
}
|
|
29170
|
+
},
|
|
29171
|
+
"defaultValue": null,
|
|
29172
|
+
"isDeprecated": false,
|
|
29173
|
+
"deprecationReason": null
|
|
29174
|
+
},
|
|
29175
|
+
{
|
|
29176
|
+
"name": "margin",
|
|
29177
|
+
"description": "Duration in seconds to extend the search on either side of the 'center'. Maximum allowed value is 2700 (45 minutes). If not specified, defaults to 900 seconds (15 minutes).",
|
|
29178
|
+
"type": {
|
|
29179
|
+
"kind": "SCALAR",
|
|
29180
|
+
"name": "Int",
|
|
29181
|
+
"ofType": null
|
|
29182
|
+
},
|
|
29183
|
+
"defaultValue": "900",
|
|
29184
|
+
"isDeprecated": false,
|
|
29185
|
+
"deprecationReason": null
|
|
29186
|
+
}
|
|
29187
|
+
],
|
|
29188
|
+
"interfaces": null,
|
|
29189
|
+
"enumValues": null,
|
|
29190
|
+
"possibleTypes": null
|
|
29191
|
+
},
|
|
27548
29192
|
{
|
|
27549
29193
|
"kind": "OBJECT",
|
|
27550
29194
|
"name": "RouteVehicle",
|
|
@@ -27779,7 +29423,7 @@
|
|
|
27779
29423
|
},
|
|
27780
29424
|
{
|
|
27781
29425
|
"name": "state_of_charge",
|
|
27782
|
-
"description": "Current amount of energy in a battery. If not provided, it is assumed the battery is fully charged and equal to the vehicle battery.capacity.
|
|
29426
|
+
"description": "Current amount of energy in a battery. If not provided, it is assumed the battery is fully charged and equal to the vehicle battery.capacity.",
|
|
27783
29427
|
"args": [],
|
|
27784
29428
|
"type": {
|
|
27785
29429
|
"kind": "NON_NULL",
|
|
@@ -27895,7 +29539,7 @@
|
|
|
27895
29539
|
},
|
|
27896
29540
|
{
|
|
27897
29541
|
"name": "state_of_charge",
|
|
27898
|
-
"description": "Current amount of energy in a battery. If not provided, it is assumed the battery is fully charged and equal to the vehicle battery.capacity.
|
|
29542
|
+
"description": "Current amount of energy in a battery. If not provided, it is assumed the battery is fully charged and equal to the vehicle battery.capacity.",
|
|
27899
29543
|
"type": {
|
|
27900
29544
|
"kind": "INPUT_OBJECT",
|
|
27901
29545
|
"name": "StateOfChargeInput",
|
|
@@ -28995,20 +30639,16 @@
|
|
|
28995
30639
|
"description": "Geometry of the feature.",
|
|
28996
30640
|
"args": [],
|
|
28997
30641
|
"type": {
|
|
28998
|
-
"kind": "
|
|
28999
|
-
"name":
|
|
29000
|
-
"ofType":
|
|
29001
|
-
"kind": "OBJECT",
|
|
29002
|
-
"name": "Point",
|
|
29003
|
-
"ofType": null
|
|
29004
|
-
}
|
|
30642
|
+
"kind": "OBJECT",
|
|
30643
|
+
"name": "Point",
|
|
30644
|
+
"ofType": null
|
|
29005
30645
|
},
|
|
29006
30646
|
"isDeprecated": false,
|
|
29007
30647
|
"deprecationReason": null
|
|
29008
30648
|
},
|
|
29009
30649
|
{
|
|
29010
30650
|
"name": "properties",
|
|
29011
|
-
"description": "
|
|
30651
|
+
"description": "Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location.",
|
|
29012
30652
|
"args": [],
|
|
29013
30653
|
"type": {
|
|
29014
30654
|
"kind": "OBJECT",
|
|
@@ -29062,13 +30702,9 @@
|
|
|
29062
30702
|
"name": "geometry",
|
|
29063
30703
|
"description": "Geometry of the feature.",
|
|
29064
30704
|
"type": {
|
|
29065
|
-
"kind": "
|
|
29066
|
-
"name":
|
|
29067
|
-
"ofType":
|
|
29068
|
-
"kind": "INPUT_OBJECT",
|
|
29069
|
-
"name": "PointInput",
|
|
29070
|
-
"ofType": null
|
|
29071
|
-
}
|
|
30705
|
+
"kind": "INPUT_OBJECT",
|
|
30706
|
+
"name": "PointInput",
|
|
30707
|
+
"ofType": null
|
|
29072
30708
|
},
|
|
29073
30709
|
"defaultValue": null,
|
|
29074
30710
|
"isDeprecated": false,
|
|
@@ -29076,7 +30712,7 @@
|
|
|
29076
30712
|
},
|
|
29077
30713
|
{
|
|
29078
30714
|
"name": "properties",
|
|
29079
|
-
"description": "
|
|
30715
|
+
"description": "Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location.",
|
|
29080
30716
|
"type": {
|
|
29081
30717
|
"kind": "INPUT_OBJECT",
|
|
29082
30718
|
"name": "RouteViaPropertiesInput",
|
|
@@ -29170,7 +30806,7 @@
|
|
|
29170
30806
|
},
|
|
29171
30807
|
{
|
|
29172
30808
|
"name": "station",
|
|
29173
|
-
"description": "
|
|
30809
|
+
"description": "Specifies a charging station at the via. If a known station is provided, it will be used as charging stop. Any configured operator preferences are ignored for this stop.",
|
|
29174
30810
|
"type": {
|
|
29175
30811
|
"kind": "INPUT_OBJECT",
|
|
29176
30812
|
"name": "RoutePropertiesStationInput",
|
|
@@ -29185,6 +30821,198 @@
|
|
|
29185
30821
|
"enumValues": null,
|
|
29186
30822
|
"possibleTypes": null
|
|
29187
30823
|
},
|
|
30824
|
+
{
|
|
30825
|
+
"kind": "OBJECT",
|
|
30826
|
+
"name": "RouteWeather",
|
|
30827
|
+
"description": null,
|
|
30828
|
+
"fields": [
|
|
30829
|
+
{
|
|
30830
|
+
"name": "type",
|
|
30831
|
+
"description": "Weather configuration applied to the route.",
|
|
30832
|
+
"args": [],
|
|
30833
|
+
"type": {
|
|
30834
|
+
"kind": "NON_NULL",
|
|
30835
|
+
"name": null,
|
|
30836
|
+
"ofType": {
|
|
30837
|
+
"kind": "ENUM",
|
|
30838
|
+
"name": "WeatherType",
|
|
30839
|
+
"ofType": null
|
|
30840
|
+
}
|
|
30841
|
+
},
|
|
30842
|
+
"isDeprecated": false,
|
|
30843
|
+
"deprecationReason": null
|
|
30844
|
+
},
|
|
30845
|
+
{
|
|
30846
|
+
"name": "custom",
|
|
30847
|
+
"description": "[BETA] Custom weather conditions applied to the route. Only present when 'type' is set to 'CUSTOM'.",
|
|
30848
|
+
"args": [],
|
|
30849
|
+
"type": {
|
|
30850
|
+
"kind": "OBJECT",
|
|
30851
|
+
"name": "RouteWeatherCustomConditions",
|
|
30852
|
+
"ofType": null
|
|
30853
|
+
},
|
|
30854
|
+
"isDeprecated": false,
|
|
30855
|
+
"deprecationReason": null
|
|
30856
|
+
}
|
|
30857
|
+
],
|
|
30858
|
+
"inputFields": null,
|
|
30859
|
+
"interfaces": [],
|
|
30860
|
+
"enumValues": null,
|
|
30861
|
+
"possibleTypes": null
|
|
30862
|
+
},
|
|
30863
|
+
{
|
|
30864
|
+
"kind": "OBJECT",
|
|
30865
|
+
"name": "RouteWeatherCustomConditions",
|
|
30866
|
+
"description": null,
|
|
30867
|
+
"fields": [
|
|
30868
|
+
{
|
|
30869
|
+
"name": "temperature",
|
|
30870
|
+
"description": "Average ambient temperature estimated along the route.",
|
|
30871
|
+
"args": [],
|
|
30872
|
+
"type": {
|
|
30873
|
+
"kind": "NON_NULL",
|
|
30874
|
+
"name": null,
|
|
30875
|
+
"ofType": {
|
|
30876
|
+
"kind": "OBJECT",
|
|
30877
|
+
"name": "Temperature",
|
|
30878
|
+
"ofType": null
|
|
30879
|
+
}
|
|
30880
|
+
},
|
|
30881
|
+
"isDeprecated": false,
|
|
30882
|
+
"deprecationReason": null
|
|
30883
|
+
},
|
|
30884
|
+
{
|
|
30885
|
+
"name": "air_pressure",
|
|
30886
|
+
"description": "Atmospheric pressure along the route.",
|
|
30887
|
+
"args": [],
|
|
30888
|
+
"type": {
|
|
30889
|
+
"kind": "NON_NULL",
|
|
30890
|
+
"name": null,
|
|
30891
|
+
"ofType": {
|
|
30892
|
+
"kind": "OBJECT",
|
|
30893
|
+
"name": "AirPressure",
|
|
30894
|
+
"ofType": null
|
|
30895
|
+
}
|
|
30896
|
+
},
|
|
30897
|
+
"isDeprecated": false,
|
|
30898
|
+
"deprecationReason": null
|
|
30899
|
+
},
|
|
30900
|
+
{
|
|
30901
|
+
"name": "solar_irradiance",
|
|
30902
|
+
"description": "Solar irradiance along the route.",
|
|
30903
|
+
"args": [],
|
|
30904
|
+
"type": {
|
|
30905
|
+
"kind": "NON_NULL",
|
|
30906
|
+
"name": null,
|
|
30907
|
+
"ofType": {
|
|
30908
|
+
"kind": "OBJECT",
|
|
30909
|
+
"name": "SolarIrradiance",
|
|
30910
|
+
"ofType": null
|
|
30911
|
+
}
|
|
30912
|
+
},
|
|
30913
|
+
"isDeprecated": false,
|
|
30914
|
+
"deprecationReason": null
|
|
30915
|
+
}
|
|
30916
|
+
],
|
|
30917
|
+
"inputFields": null,
|
|
30918
|
+
"interfaces": [],
|
|
30919
|
+
"enumValues": null,
|
|
30920
|
+
"possibleTypes": null
|
|
30921
|
+
},
|
|
30922
|
+
{
|
|
30923
|
+
"kind": "INPUT_OBJECT",
|
|
30924
|
+
"name": "RouteWeatherCustomConditionsInput",
|
|
30925
|
+
"description": null,
|
|
30926
|
+
"fields": null,
|
|
30927
|
+
"inputFields": [
|
|
30928
|
+
{
|
|
30929
|
+
"name": "temperature",
|
|
30930
|
+
"description": "Average ambient temperature estimated along the route.",
|
|
30931
|
+
"type": {
|
|
30932
|
+
"kind": "NON_NULL",
|
|
30933
|
+
"name": null,
|
|
30934
|
+
"ofType": {
|
|
30935
|
+
"kind": "INPUT_OBJECT",
|
|
30936
|
+
"name": "TemperatureInput",
|
|
30937
|
+
"ofType": null
|
|
30938
|
+
}
|
|
30939
|
+
},
|
|
30940
|
+
"defaultValue": null,
|
|
30941
|
+
"isDeprecated": false,
|
|
30942
|
+
"deprecationReason": null
|
|
30943
|
+
},
|
|
30944
|
+
{
|
|
30945
|
+
"name": "air_pressure",
|
|
30946
|
+
"description": "Atmospheric pressure along the route.",
|
|
30947
|
+
"type": {
|
|
30948
|
+
"kind": "NON_NULL",
|
|
30949
|
+
"name": null,
|
|
30950
|
+
"ofType": {
|
|
30951
|
+
"kind": "INPUT_OBJECT",
|
|
30952
|
+
"name": "AirPressureInput",
|
|
30953
|
+
"ofType": null
|
|
30954
|
+
}
|
|
30955
|
+
},
|
|
30956
|
+
"defaultValue": null,
|
|
30957
|
+
"isDeprecated": false,
|
|
30958
|
+
"deprecationReason": null
|
|
30959
|
+
},
|
|
30960
|
+
{
|
|
30961
|
+
"name": "solar_irradiance",
|
|
30962
|
+
"description": "Solar irradiance along the route.",
|
|
30963
|
+
"type": {
|
|
30964
|
+
"kind": "NON_NULL",
|
|
30965
|
+
"name": null,
|
|
30966
|
+
"ofType": {
|
|
30967
|
+
"kind": "INPUT_OBJECT",
|
|
30968
|
+
"name": "SolarIrradianceInput",
|
|
30969
|
+
"ofType": null
|
|
30970
|
+
}
|
|
30971
|
+
},
|
|
30972
|
+
"defaultValue": null,
|
|
30973
|
+
"isDeprecated": false,
|
|
30974
|
+
"deprecationReason": null
|
|
30975
|
+
}
|
|
30976
|
+
],
|
|
30977
|
+
"interfaces": null,
|
|
30978
|
+
"enumValues": null,
|
|
30979
|
+
"possibleTypes": null
|
|
30980
|
+
},
|
|
30981
|
+
{
|
|
30982
|
+
"kind": "INPUT_OBJECT",
|
|
30983
|
+
"name": "RouteWeatherInput",
|
|
30984
|
+
"description": null,
|
|
30985
|
+
"fields": null,
|
|
30986
|
+
"inputFields": [
|
|
30987
|
+
{
|
|
30988
|
+
"name": "type",
|
|
30989
|
+
"description": "Weather configuration applied to the route.",
|
|
30990
|
+
"type": {
|
|
30991
|
+
"kind": "ENUM",
|
|
30992
|
+
"name": "WeatherType",
|
|
30993
|
+
"ofType": null
|
|
30994
|
+
},
|
|
30995
|
+
"defaultValue": "actual",
|
|
30996
|
+
"isDeprecated": false,
|
|
30997
|
+
"deprecationReason": null
|
|
30998
|
+
},
|
|
30999
|
+
{
|
|
31000
|
+
"name": "custom",
|
|
31001
|
+
"description": "[BETA] Custom weather conditions to apply to the route. Required only when 'type' is 'CUSTOM'. Must be omitted for other weather types.",
|
|
31002
|
+
"type": {
|
|
31003
|
+
"kind": "INPUT_OBJECT",
|
|
31004
|
+
"name": "RouteWeatherCustomConditionsInput",
|
|
31005
|
+
"ofType": null
|
|
31006
|
+
},
|
|
31007
|
+
"defaultValue": null,
|
|
31008
|
+
"isDeprecated": false,
|
|
31009
|
+
"deprecationReason": null
|
|
31010
|
+
}
|
|
31011
|
+
],
|
|
31012
|
+
"interfaces": null,
|
|
31013
|
+
"enumValues": null,
|
|
31014
|
+
"possibleTypes": null
|
|
31015
|
+
},
|
|
29188
31016
|
{
|
|
29189
31017
|
"kind": "INPUT_OBJECT",
|
|
29190
31018
|
"name": "ScheduledChargeStopInput",
|
|
@@ -29276,6 +31104,109 @@
|
|
|
29276
31104
|
"enumValues": null,
|
|
29277
31105
|
"possibleTypes": null
|
|
29278
31106
|
},
|
|
31107
|
+
{
|
|
31108
|
+
"kind": "OBJECT",
|
|
31109
|
+
"name": "SolarIrradiance",
|
|
31110
|
+
"description": null,
|
|
31111
|
+
"fields": [
|
|
31112
|
+
{
|
|
31113
|
+
"name": "value",
|
|
31114
|
+
"description": "Value of the solar irradiance.",
|
|
31115
|
+
"args": [],
|
|
31116
|
+
"type": {
|
|
31117
|
+
"kind": "NON_NULL",
|
|
31118
|
+
"name": null,
|
|
31119
|
+
"ofType": {
|
|
31120
|
+
"kind": "SCALAR",
|
|
31121
|
+
"name": "Float",
|
|
31122
|
+
"ofType": null
|
|
31123
|
+
}
|
|
31124
|
+
},
|
|
31125
|
+
"isDeprecated": false,
|
|
31126
|
+
"deprecationReason": null
|
|
31127
|
+
},
|
|
31128
|
+
{
|
|
31129
|
+
"name": "type",
|
|
31130
|
+
"description": "Solar irradiance unit.",
|
|
31131
|
+
"args": [],
|
|
31132
|
+
"type": {
|
|
31133
|
+
"kind": "NON_NULL",
|
|
31134
|
+
"name": null,
|
|
31135
|
+
"ofType": {
|
|
31136
|
+
"kind": "ENUM",
|
|
31137
|
+
"name": "SolarIrradianceUnit",
|
|
31138
|
+
"ofType": null
|
|
31139
|
+
}
|
|
31140
|
+
},
|
|
31141
|
+
"isDeprecated": false,
|
|
31142
|
+
"deprecationReason": null
|
|
31143
|
+
}
|
|
31144
|
+
],
|
|
31145
|
+
"inputFields": null,
|
|
31146
|
+
"interfaces": [],
|
|
31147
|
+
"enumValues": null,
|
|
31148
|
+
"possibleTypes": null
|
|
31149
|
+
},
|
|
31150
|
+
{
|
|
31151
|
+
"kind": "INPUT_OBJECT",
|
|
31152
|
+
"name": "SolarIrradianceInput",
|
|
31153
|
+
"description": null,
|
|
31154
|
+
"fields": null,
|
|
31155
|
+
"inputFields": [
|
|
31156
|
+
{
|
|
31157
|
+
"name": "value",
|
|
31158
|
+
"description": "Value of the solar irradiance.",
|
|
31159
|
+
"type": {
|
|
31160
|
+
"kind": "NON_NULL",
|
|
31161
|
+
"name": null,
|
|
31162
|
+
"ofType": {
|
|
31163
|
+
"kind": "SCALAR",
|
|
31164
|
+
"name": "Float",
|
|
31165
|
+
"ofType": null
|
|
31166
|
+
}
|
|
31167
|
+
},
|
|
31168
|
+
"defaultValue": null,
|
|
31169
|
+
"isDeprecated": false,
|
|
31170
|
+
"deprecationReason": null
|
|
31171
|
+
},
|
|
31172
|
+
{
|
|
31173
|
+
"name": "type",
|
|
31174
|
+
"description": "Solar irradiance unit.",
|
|
31175
|
+
"type": {
|
|
31176
|
+
"kind": "NON_NULL",
|
|
31177
|
+
"name": null,
|
|
31178
|
+
"ofType": {
|
|
31179
|
+
"kind": "ENUM",
|
|
31180
|
+
"name": "SolarIrradianceUnit",
|
|
31181
|
+
"ofType": null
|
|
31182
|
+
}
|
|
31183
|
+
},
|
|
31184
|
+
"defaultValue": null,
|
|
31185
|
+
"isDeprecated": false,
|
|
31186
|
+
"deprecationReason": null
|
|
31187
|
+
}
|
|
31188
|
+
],
|
|
31189
|
+
"interfaces": null,
|
|
31190
|
+
"enumValues": null,
|
|
31191
|
+
"possibleTypes": null
|
|
31192
|
+
},
|
|
31193
|
+
{
|
|
31194
|
+
"kind": "ENUM",
|
|
31195
|
+
"name": "SolarIrradianceUnit",
|
|
31196
|
+
"description": null,
|
|
31197
|
+
"fields": null,
|
|
31198
|
+
"inputFields": null,
|
|
31199
|
+
"interfaces": null,
|
|
31200
|
+
"enumValues": [
|
|
31201
|
+
{
|
|
31202
|
+
"name": "watts_per_square_meter",
|
|
31203
|
+
"description": null,
|
|
31204
|
+
"isDeprecated": false,
|
|
31205
|
+
"deprecationReason": null
|
|
31206
|
+
}
|
|
31207
|
+
],
|
|
31208
|
+
"possibleTypes": null
|
|
31209
|
+
},
|
|
29279
31210
|
{
|
|
29280
31211
|
"kind": "ENUM",
|
|
29281
31212
|
"name": "SortDirection",
|
|
@@ -29302,7 +31233,7 @@
|
|
|
29302
31233
|
{
|
|
29303
31234
|
"kind": "ENUM",
|
|
29304
31235
|
"name": "SpeedUnit",
|
|
29305
|
-
"description":
|
|
31236
|
+
"description": null,
|
|
29306
31237
|
"fields": null,
|
|
29307
31238
|
"inputFields": null,
|
|
29308
31239
|
"interfaces": null,
|
|
@@ -29439,7 +31370,7 @@
|
|
|
29439
31370
|
{
|
|
29440
31371
|
"kind": "ENUM",
|
|
29441
31372
|
"name": "StateOfChargeUnit",
|
|
29442
|
-
"description":
|
|
31373
|
+
"description": null,
|
|
29443
31374
|
"fields": null,
|
|
29444
31375
|
"inputFields": null,
|
|
29445
31376
|
"interfaces": null,
|
|
@@ -30371,7 +32302,7 @@
|
|
|
30371
32302
|
},
|
|
30372
32303
|
{
|
|
30373
32304
|
"name": "preferred_operator",
|
|
30374
|
-
"description": "Flag
|
|
32305
|
+
"description": "Flag to filter for stations operated by an operator present in the project's ranking list.",
|
|
30375
32306
|
"type": {
|
|
30376
32307
|
"kind": "SCALAR",
|
|
30377
32308
|
"name": "Boolean",
|
|
@@ -30552,7 +32483,7 @@
|
|
|
30552
32483
|
"ofType": null
|
|
30553
32484
|
},
|
|
30554
32485
|
"isDeprecated": true,
|
|
30555
|
-
"deprecationReason": "In favor of station.
|
|
32486
|
+
"deprecationReason": "In favor of station.access_type."
|
|
30556
32487
|
},
|
|
30557
32488
|
{
|
|
30558
32489
|
"name": "oicp",
|
|
@@ -30890,7 +32821,7 @@
|
|
|
30890
32821
|
},
|
|
30891
32822
|
{
|
|
30892
32823
|
"name": "preferred_operator",
|
|
30893
|
-
"description": "Flag
|
|
32824
|
+
"description": "Flag to filter for stations operated by an operator present in the project's ranking list.",
|
|
30894
32825
|
"type": {
|
|
30895
32826
|
"kind": "SCALAR",
|
|
30896
32827
|
"name": "Boolean",
|
|
@@ -31418,7 +33349,7 @@
|
|
|
31418
33349
|
],
|
|
31419
33350
|
"type": {
|
|
31420
33351
|
"kind": "OBJECT",
|
|
31421
|
-
"name": "
|
|
33352
|
+
"name": "NavigationSubscription",
|
|
31422
33353
|
"ofType": null
|
|
31423
33354
|
},
|
|
31424
33355
|
"isDeprecated": false,
|
|
@@ -32218,7 +34149,7 @@
|
|
|
32218
34149
|
{
|
|
32219
34150
|
"kind": "ENUM",
|
|
32220
34151
|
"name": "TelemetryInputSource",
|
|
32221
|
-
"description":
|
|
34152
|
+
"description": null,
|
|
32222
34153
|
"fields": null,
|
|
32223
34154
|
"inputFields": null,
|
|
32224
34155
|
"interfaces": null,
|
|
@@ -32333,7 +34264,7 @@
|
|
|
32333
34264
|
{
|
|
32334
34265
|
"kind": "ENUM",
|
|
32335
34266
|
"name": "TemperatureUnit",
|
|
32336
|
-
"description":
|
|
34267
|
+
"description": null,
|
|
32337
34268
|
"fields": null,
|
|
32338
34269
|
"inputFields": null,
|
|
32339
34270
|
"interfaces": null,
|
|
@@ -34611,6 +36542,30 @@
|
|
|
34611
36542
|
"defaultValue": null,
|
|
34612
36543
|
"isDeprecated": false,
|
|
34613
36544
|
"deprecationReason": null
|
|
36545
|
+
},
|
|
36546
|
+
{
|
|
36547
|
+
"name": "make",
|
|
36548
|
+
"description": "[BETA] Make of vehicle.",
|
|
36549
|
+
"type": {
|
|
36550
|
+
"kind": "SCALAR",
|
|
36551
|
+
"name": "String",
|
|
36552
|
+
"ofType": null
|
|
36553
|
+
},
|
|
36554
|
+
"defaultValue": null,
|
|
36555
|
+
"isDeprecated": false,
|
|
36556
|
+
"deprecationReason": null
|
|
36557
|
+
},
|
|
36558
|
+
{
|
|
36559
|
+
"name": "model",
|
|
36560
|
+
"description": "[BETA] Model of vehicle.",
|
|
36561
|
+
"type": {
|
|
36562
|
+
"kind": "SCALAR",
|
|
36563
|
+
"name": "String",
|
|
36564
|
+
"ofType": null
|
|
36565
|
+
},
|
|
36566
|
+
"defaultValue": null,
|
|
36567
|
+
"isDeprecated": false,
|
|
36568
|
+
"deprecationReason": null
|
|
34614
36569
|
}
|
|
34615
36570
|
],
|
|
34616
36571
|
"interfaces": null,
|
|
@@ -34825,6 +36780,84 @@
|
|
|
34825
36780
|
"enumValues": null,
|
|
34826
36781
|
"possibleTypes": null
|
|
34827
36782
|
},
|
|
36783
|
+
{
|
|
36784
|
+
"kind": "OBJECT",
|
|
36785
|
+
"name": "VehicleMake",
|
|
36786
|
+
"description": "Vehicle make data.",
|
|
36787
|
+
"fields": [
|
|
36788
|
+
{
|
|
36789
|
+
"name": "name",
|
|
36790
|
+
"description": "Vehicle make name.",
|
|
36791
|
+
"args": [],
|
|
36792
|
+
"type": {
|
|
36793
|
+
"kind": "NON_NULL",
|
|
36794
|
+
"name": null,
|
|
36795
|
+
"ofType": {
|
|
36796
|
+
"kind": "SCALAR",
|
|
36797
|
+
"name": "String",
|
|
36798
|
+
"ofType": null
|
|
36799
|
+
}
|
|
36800
|
+
},
|
|
36801
|
+
"isDeprecated": false,
|
|
36802
|
+
"deprecationReason": null
|
|
36803
|
+
},
|
|
36804
|
+
{
|
|
36805
|
+
"name": "image",
|
|
36806
|
+
"description": "Vehicle make image.",
|
|
36807
|
+
"args": [],
|
|
36808
|
+
"type": {
|
|
36809
|
+
"kind": "NON_NULL",
|
|
36810
|
+
"name": null,
|
|
36811
|
+
"ofType": {
|
|
36812
|
+
"kind": "OBJECT",
|
|
36813
|
+
"name": "VehicleImage",
|
|
36814
|
+
"ofType": null
|
|
36815
|
+
}
|
|
36816
|
+
},
|
|
36817
|
+
"isDeprecated": false,
|
|
36818
|
+
"deprecationReason": null
|
|
36819
|
+
}
|
|
36820
|
+
],
|
|
36821
|
+
"inputFields": null,
|
|
36822
|
+
"interfaces": [],
|
|
36823
|
+
"enumValues": null,
|
|
36824
|
+
"possibleTypes": null
|
|
36825
|
+
},
|
|
36826
|
+
{
|
|
36827
|
+
"kind": "OBJECT",
|
|
36828
|
+
"name": "VehicleMakesConnection",
|
|
36829
|
+
"description": "Vehicle makes response object.",
|
|
36830
|
+
"fields": [
|
|
36831
|
+
{
|
|
36832
|
+
"name": "nodes",
|
|
36833
|
+
"description": "List of vehicle makes.",
|
|
36834
|
+
"args": [],
|
|
36835
|
+
"type": {
|
|
36836
|
+
"kind": "NON_NULL",
|
|
36837
|
+
"name": null,
|
|
36838
|
+
"ofType": {
|
|
36839
|
+
"kind": "LIST",
|
|
36840
|
+
"name": null,
|
|
36841
|
+
"ofType": {
|
|
36842
|
+
"kind": "NON_NULL",
|
|
36843
|
+
"name": null,
|
|
36844
|
+
"ofType": {
|
|
36845
|
+
"kind": "OBJECT",
|
|
36846
|
+
"name": "VehicleMake",
|
|
36847
|
+
"ofType": null
|
|
36848
|
+
}
|
|
36849
|
+
}
|
|
36850
|
+
}
|
|
36851
|
+
},
|
|
36852
|
+
"isDeprecated": false,
|
|
36853
|
+
"deprecationReason": null
|
|
36854
|
+
}
|
|
36855
|
+
],
|
|
36856
|
+
"inputFields": null,
|
|
36857
|
+
"interfaces": [],
|
|
36858
|
+
"enumValues": null,
|
|
36859
|
+
"possibleTypes": null
|
|
36860
|
+
},
|
|
34828
36861
|
{
|
|
34829
36862
|
"kind": "OBJECT",
|
|
34830
36863
|
"name": "VehicleMedia",
|
|
@@ -34969,6 +37002,123 @@
|
|
|
34969
37002
|
],
|
|
34970
37003
|
"possibleTypes": null
|
|
34971
37004
|
},
|
|
37005
|
+
{
|
|
37006
|
+
"kind": "OBJECT",
|
|
37007
|
+
"name": "VehicleModel",
|
|
37008
|
+
"description": "Vehicle model data.",
|
|
37009
|
+
"fields": [
|
|
37010
|
+
{
|
|
37011
|
+
"name": "name",
|
|
37012
|
+
"description": "Vehicle model name.",
|
|
37013
|
+
"args": [],
|
|
37014
|
+
"type": {
|
|
37015
|
+
"kind": "NON_NULL",
|
|
37016
|
+
"name": null,
|
|
37017
|
+
"ofType": {
|
|
37018
|
+
"kind": "SCALAR",
|
|
37019
|
+
"name": "String",
|
|
37020
|
+
"ofType": null
|
|
37021
|
+
}
|
|
37022
|
+
},
|
|
37023
|
+
"isDeprecated": false,
|
|
37024
|
+
"deprecationReason": null
|
|
37025
|
+
}
|
|
37026
|
+
],
|
|
37027
|
+
"inputFields": null,
|
|
37028
|
+
"interfaces": [],
|
|
37029
|
+
"enumValues": null,
|
|
37030
|
+
"possibleTypes": null
|
|
37031
|
+
},
|
|
37032
|
+
{
|
|
37033
|
+
"kind": "OBJECT",
|
|
37034
|
+
"name": "VehicleModelsConnection",
|
|
37035
|
+
"description": "Vehicle models response object.",
|
|
37036
|
+
"fields": [
|
|
37037
|
+
{
|
|
37038
|
+
"name": "total_count",
|
|
37039
|
+
"description": "Total number of unique vehicle models.",
|
|
37040
|
+
"args": [],
|
|
37041
|
+
"type": {
|
|
37042
|
+
"kind": "NON_NULL",
|
|
37043
|
+
"name": null,
|
|
37044
|
+
"ofType": {
|
|
37045
|
+
"kind": "SCALAR",
|
|
37046
|
+
"name": "Int",
|
|
37047
|
+
"ofType": null
|
|
37048
|
+
}
|
|
37049
|
+
},
|
|
37050
|
+
"isDeprecated": false,
|
|
37051
|
+
"deprecationReason": null
|
|
37052
|
+
},
|
|
37053
|
+
{
|
|
37054
|
+
"name": "page_info",
|
|
37055
|
+
"description": "Information about the current page.",
|
|
37056
|
+
"args": [],
|
|
37057
|
+
"type": {
|
|
37058
|
+
"kind": "NON_NULL",
|
|
37059
|
+
"name": null,
|
|
37060
|
+
"ofType": {
|
|
37061
|
+
"kind": "OBJECT",
|
|
37062
|
+
"name": "PageInfo",
|
|
37063
|
+
"ofType": null
|
|
37064
|
+
}
|
|
37065
|
+
},
|
|
37066
|
+
"isDeprecated": false,
|
|
37067
|
+
"deprecationReason": null
|
|
37068
|
+
},
|
|
37069
|
+
{
|
|
37070
|
+
"name": "nodes",
|
|
37071
|
+
"description": "List of vehicle models.",
|
|
37072
|
+
"args": [],
|
|
37073
|
+
"type": {
|
|
37074
|
+
"kind": "NON_NULL",
|
|
37075
|
+
"name": null,
|
|
37076
|
+
"ofType": {
|
|
37077
|
+
"kind": "LIST",
|
|
37078
|
+
"name": null,
|
|
37079
|
+
"ofType": {
|
|
37080
|
+
"kind": "NON_NULL",
|
|
37081
|
+
"name": null,
|
|
37082
|
+
"ofType": {
|
|
37083
|
+
"kind": "OBJECT",
|
|
37084
|
+
"name": "VehicleModel",
|
|
37085
|
+
"ofType": null
|
|
37086
|
+
}
|
|
37087
|
+
}
|
|
37088
|
+
}
|
|
37089
|
+
},
|
|
37090
|
+
"isDeprecated": false,
|
|
37091
|
+
"deprecationReason": null
|
|
37092
|
+
}
|
|
37093
|
+
],
|
|
37094
|
+
"inputFields": null,
|
|
37095
|
+
"interfaces": [],
|
|
37096
|
+
"enumValues": null,
|
|
37097
|
+
"possibleTypes": null
|
|
37098
|
+
},
|
|
37099
|
+
{
|
|
37100
|
+
"kind": "INPUT_OBJECT",
|
|
37101
|
+
"name": "VehicleModelsFilter",
|
|
37102
|
+
"description": "Filter vehicle model list result.",
|
|
37103
|
+
"fields": null,
|
|
37104
|
+
"inputFields": [
|
|
37105
|
+
{
|
|
37106
|
+
"name": "make",
|
|
37107
|
+
"description": "Vehicle make.",
|
|
37108
|
+
"type": {
|
|
37109
|
+
"kind": "SCALAR",
|
|
37110
|
+
"name": "String",
|
|
37111
|
+
"ofType": null
|
|
37112
|
+
},
|
|
37113
|
+
"defaultValue": null,
|
|
37114
|
+
"isDeprecated": false,
|
|
37115
|
+
"deprecationReason": null
|
|
37116
|
+
}
|
|
37117
|
+
],
|
|
37118
|
+
"interfaces": null,
|
|
37119
|
+
"enumValues": null,
|
|
37120
|
+
"possibleTypes": null
|
|
37121
|
+
},
|
|
34972
37122
|
{
|
|
34973
37123
|
"kind": "OBJECT",
|
|
34974
37124
|
"name": "VehicleNaming",
|
|
@@ -40100,10 +42250,45 @@
|
|
|
40100
42250
|
],
|
|
40101
42251
|
"possibleTypes": null
|
|
40102
42252
|
},
|
|
42253
|
+
{
|
|
42254
|
+
"kind": "ENUM",
|
|
42255
|
+
"name": "WeatherType",
|
|
42256
|
+
"description": "Type of weather conditions used in the route calculation.",
|
|
42257
|
+
"fields": null,
|
|
42258
|
+
"inputFields": null,
|
|
42259
|
+
"interfaces": null,
|
|
42260
|
+
"enumValues": [
|
|
42261
|
+
{
|
|
42262
|
+
"name": "summer",
|
|
42263
|
+
"description": "Fixed seasonal preset representing typical summer weather conditions. Can't be used in combination with weather.custom.",
|
|
42264
|
+
"isDeprecated": false,
|
|
42265
|
+
"deprecationReason": null
|
|
42266
|
+
},
|
|
42267
|
+
{
|
|
42268
|
+
"name": "winter",
|
|
42269
|
+
"description": "Fixed seasonal preset representing typical winter weather conditions. Can't be used in combination with weather.custom.",
|
|
42270
|
+
"isDeprecated": false,
|
|
42271
|
+
"deprecationReason": null
|
|
42272
|
+
},
|
|
42273
|
+
{
|
|
42274
|
+
"name": "actual",
|
|
42275
|
+
"description": "A dynamic preset that uses real weather data based on the route's departure time. Can't be used in combination with weather.custom.",
|
|
42276
|
+
"isDeprecated": false,
|
|
42277
|
+
"deprecationReason": null
|
|
42278
|
+
},
|
|
42279
|
+
{
|
|
42280
|
+
"name": "custom",
|
|
42281
|
+
"description": "Must be used in combination with weather.custom object.",
|
|
42282
|
+
"isDeprecated": false,
|
|
42283
|
+
"deprecationReason": null
|
|
42284
|
+
}
|
|
42285
|
+
],
|
|
42286
|
+
"possibleTypes": null
|
|
42287
|
+
},
|
|
40103
42288
|
{
|
|
40104
42289
|
"kind": "ENUM",
|
|
40105
42290
|
"name": "WeightUnit",
|
|
40106
|
-
"description":
|
|
42291
|
+
"description": null,
|
|
40107
42292
|
"fields": null,
|
|
40108
42293
|
"inputFields": null,
|
|
40109
42294
|
"interfaces": null,
|
|
@@ -41019,6 +43204,176 @@
|
|
|
41019
43204
|
}
|
|
41020
43205
|
],
|
|
41021
43206
|
"directives": [
|
|
43207
|
+
{
|
|
43208
|
+
"name": "chargetripDeprecated",
|
|
43209
|
+
"description": null,
|
|
43210
|
+
"isRepeatable": false,
|
|
43211
|
+
"locations": [
|
|
43212
|
+
"FIELD_DEFINITION",
|
|
43213
|
+
"INPUT_FIELD_DEFINITION",
|
|
43214
|
+
"ENUM_VALUE"
|
|
43215
|
+
],
|
|
43216
|
+
"args": [
|
|
43217
|
+
{
|
|
43218
|
+
"name": "reason",
|
|
43219
|
+
"description": null,
|
|
43220
|
+
"type": {
|
|
43221
|
+
"kind": "SCALAR",
|
|
43222
|
+
"name": "PlainString",
|
|
43223
|
+
"ofType": null
|
|
43224
|
+
},
|
|
43225
|
+
"defaultValue": null,
|
|
43226
|
+
"isDeprecated": false,
|
|
43227
|
+
"deprecationReason": null
|
|
43228
|
+
},
|
|
43229
|
+
{
|
|
43230
|
+
"name": "serviceName",
|
|
43231
|
+
"description": null,
|
|
43232
|
+
"type": {
|
|
43233
|
+
"kind": "SCALAR",
|
|
43234
|
+
"name": "PlainString",
|
|
43235
|
+
"ofType": null
|
|
43236
|
+
},
|
|
43237
|
+
"defaultValue": null,
|
|
43238
|
+
"isDeprecated": false,
|
|
43239
|
+
"deprecationReason": null
|
|
43240
|
+
},
|
|
43241
|
+
{
|
|
43242
|
+
"name": "removeAfter",
|
|
43243
|
+
"description": null,
|
|
43244
|
+
"type": {
|
|
43245
|
+
"kind": "SCALAR",
|
|
43246
|
+
"name": "PlainString",
|
|
43247
|
+
"ofType": null
|
|
43248
|
+
},
|
|
43249
|
+
"defaultValue": null,
|
|
43250
|
+
"isDeprecated": false,
|
|
43251
|
+
"deprecationReason": null
|
|
43252
|
+
},
|
|
43253
|
+
{
|
|
43254
|
+
"name": "replacedBy",
|
|
43255
|
+
"description": null,
|
|
43256
|
+
"type": {
|
|
43257
|
+
"kind": "SCALAR",
|
|
43258
|
+
"name": "PlainString",
|
|
43259
|
+
"ofType": null
|
|
43260
|
+
},
|
|
43261
|
+
"defaultValue": null,
|
|
43262
|
+
"isDeprecated": false,
|
|
43263
|
+
"deprecationReason": null
|
|
43264
|
+
}
|
|
43265
|
+
]
|
|
43266
|
+
},
|
|
43267
|
+
{
|
|
43268
|
+
"name": "cost",
|
|
43269
|
+
"description": null,
|
|
43270
|
+
"isRepeatable": false,
|
|
43271
|
+
"locations": [
|
|
43272
|
+
"ARGUMENT_DEFINITION",
|
|
43273
|
+
"ENUM",
|
|
43274
|
+
"FIELD_DEFINITION",
|
|
43275
|
+
"INPUT_FIELD_DEFINITION",
|
|
43276
|
+
"OBJECT",
|
|
43277
|
+
"SCALAR"
|
|
43278
|
+
],
|
|
43279
|
+
"args": [
|
|
43280
|
+
{
|
|
43281
|
+
"name": "weight",
|
|
43282
|
+
"description": null,
|
|
43283
|
+
"type": {
|
|
43284
|
+
"kind": "NON_NULL",
|
|
43285
|
+
"name": null,
|
|
43286
|
+
"ofType": {
|
|
43287
|
+
"kind": "SCALAR",
|
|
43288
|
+
"name": "Int",
|
|
43289
|
+
"ofType": null
|
|
43290
|
+
}
|
|
43291
|
+
},
|
|
43292
|
+
"defaultValue": null,
|
|
43293
|
+
"isDeprecated": false,
|
|
43294
|
+
"deprecationReason": null
|
|
43295
|
+
}
|
|
43296
|
+
]
|
|
43297
|
+
},
|
|
43298
|
+
{
|
|
43299
|
+
"name": "listSize",
|
|
43300
|
+
"description": null,
|
|
43301
|
+
"isRepeatable": false,
|
|
43302
|
+
"locations": ["FIELD_DEFINITION"],
|
|
43303
|
+
"args": [
|
|
43304
|
+
{
|
|
43305
|
+
"name": "assumedSize",
|
|
43306
|
+
"description": null,
|
|
43307
|
+
"type": {
|
|
43308
|
+
"kind": "SCALAR",
|
|
43309
|
+
"name": "Int",
|
|
43310
|
+
"ofType": null
|
|
43311
|
+
},
|
|
43312
|
+
"defaultValue": null,
|
|
43313
|
+
"isDeprecated": false,
|
|
43314
|
+
"deprecationReason": null
|
|
43315
|
+
},
|
|
43316
|
+
{
|
|
43317
|
+
"name": "slicingArguments",
|
|
43318
|
+
"description": null,
|
|
43319
|
+
"type": {
|
|
43320
|
+
"kind": "LIST",
|
|
43321
|
+
"name": null,
|
|
43322
|
+
"ofType": {
|
|
43323
|
+
"kind": "NON_NULL",
|
|
43324
|
+
"name": null,
|
|
43325
|
+
"ofType": {
|
|
43326
|
+
"kind": "SCALAR",
|
|
43327
|
+
"name": "String",
|
|
43328
|
+
"ofType": null
|
|
43329
|
+
}
|
|
43330
|
+
}
|
|
43331
|
+
},
|
|
43332
|
+
"defaultValue": null,
|
|
43333
|
+
"isDeprecated": false,
|
|
43334
|
+
"deprecationReason": null
|
|
43335
|
+
},
|
|
43336
|
+
{
|
|
43337
|
+
"name": "sizedFields",
|
|
43338
|
+
"description": null,
|
|
43339
|
+
"type": {
|
|
43340
|
+
"kind": "LIST",
|
|
43341
|
+
"name": null,
|
|
43342
|
+
"ofType": {
|
|
43343
|
+
"kind": "NON_NULL",
|
|
43344
|
+
"name": null,
|
|
43345
|
+
"ofType": {
|
|
43346
|
+
"kind": "SCALAR",
|
|
43347
|
+
"name": "String",
|
|
43348
|
+
"ofType": null
|
|
43349
|
+
}
|
|
43350
|
+
}
|
|
43351
|
+
},
|
|
43352
|
+
"defaultValue": null,
|
|
43353
|
+
"isDeprecated": false,
|
|
43354
|
+
"deprecationReason": null
|
|
43355
|
+
},
|
|
43356
|
+
{
|
|
43357
|
+
"name": "requireOneSlicingArgument",
|
|
43358
|
+
"description": null,
|
|
43359
|
+
"type": {
|
|
43360
|
+
"kind": "SCALAR",
|
|
43361
|
+
"name": "Boolean",
|
|
43362
|
+
"ofType": null
|
|
43363
|
+
},
|
|
43364
|
+
"defaultValue": "true",
|
|
43365
|
+
"isDeprecated": false,
|
|
43366
|
+
"deprecationReason": null
|
|
43367
|
+
}
|
|
43368
|
+
]
|
|
43369
|
+
},
|
|
43370
|
+
{
|
|
43371
|
+
"name": "ocpi",
|
|
43372
|
+
"description": null,
|
|
43373
|
+
"isRepeatable": false,
|
|
43374
|
+
"locations": ["FIELD_DEFINITION"],
|
|
43375
|
+
"args": []
|
|
43376
|
+
},
|
|
41022
43377
|
{
|
|
41023
43378
|
"name": "oneOf",
|
|
41024
43379
|
"description": "Indicates exactly one field must be supplied and this field must not be `null`.",
|