-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
sample-gtfs-feed-postgraphile-test.graphql
115 lines (112 loc) · 2.45 KB
/
sample-gtfs-feed-postgraphile-test.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
query SampleGtfsFeedPostgraphileTest {
stopByStopId(stopId: "airport-1") {
translatedStopName(language: "de-DE")
stopId
stopLoc {
geojson
latitude
longitude
}
}
routeByRouteId(routeId: "B") {
agency {
agencyName
agencyEmail
}
routeShortName
routeLongName
at: translatedRouteLongName(language: "de-AT")
de: translatedRouteLongName(language: "de-DE")
trips(first: 3, orderBy: TRIP_ID_ASC) {
nodes {
tripId
}
}
connections(orderBy: PRIMARY_KEY_ASC, offset: 3, first: 3) {
nodes {
tripId
fromStopSequence
fromStopId
tDeparture
tArrival
toStopId
toStopSequence
}
}
}
bOutboundOnWeekends: tripByTripId(tripId: "b-outbound-on-weekends") {
translatedTripHeadsign(language: "de-DE")
}
aDowntownAllDay: tripByTripId(tripId: "a-downtown-all-day") {
shape {
shape {
__typename
geojson
}
}
}
# stop_times-based -> no frequencies_{row,it}
aOutboundAllDay20190301ArrDep: arrivalDepartureByArrivalDepartureId(
id: "YS1vdXRib3VuZC1hbGwtZGF5:MjAxOS0wMy0wMQ==:Mw==:LTE=:LTE="
) {
# tripId: "a-outbound-all-day"
# date: "2019-03-01"
# stopSequence: 3
# frequenciesRow: -1
# frequenciesIt: -1
arrivalDepartureId
tripId
date
stopSequence
frequenciesRow
frequenciesIt
}
# frequencies-based -> has frequencies_{row,it}
bDowntownOnWorkingDays20190608ArrDep: arrivalDepartureByArrivalDepartureId(
id: "Yi1kb3dudG93bi1vbi13b3JraW5nLWRheXM=:MjAxOS0wMy0wOA==:Mw==:MQ==:Mg=="
) {
# tripId: "b-downtown-on-working-days"
# date: "2019-06-08"
# stopSequence: 3
# frequenciesRow: 1
# frequenciesIt: 2
arrivalDepartureId
tripId
date
stopSequence
frequenciesRow
frequenciesIt
}
# stop_times-based -> no frequencies_{row,it}
aOutboundAllDay20190301Con: connectionByConnectionId(
id: "YS1vdXRib3VuZC1hbGwtZGF5:MjAxOS0wMy0wMQ==:Mw==:LTE=:LTE="
) {
# tripId: "a-outbound-all-day"
# date: "2019-03-01"
# fromStopSequence: 3
# frequenciesRow: -1
# frequenciesIt: -1
connectionId
tripId
date
fromStopSequence
frequenciesRow
frequenciesIt
}
# frequencies-based -> has frequencies_{row,it}
bDowntownOnWorkingDays20190608Con: connectionByConnectionId(
id: "Yi1kb3dudG93bi1vbi13b3JraW5nLWRheXM=:MjAxOS0wMy0wOA==:Mw==:MQ==:Mg=="
) {
# tripId: "b-downtown-on-working-days"
# date: "2019-06-08"
# fromStopSequence: 3
# frequenciesRow: 1
# frequenciesIt: 2
connectionId
tripId
date
fromStopSequence
frequenciesRow
frequenciesIt
}
}