This repository has been archived by the owner on Feb 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
schema.js
400 lines (358 loc) · 8.08 KB
/
schema.js
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
const { buildSchema } = require('graphql');
const experimental = process.env.experimental
const experimentalTypes = experimental ? `
type Route {
parts: [RoutePart!]!
from: Station
to: Station
}
type RoutePart {
# Station where the part begins
from: Station!
to: Station!
delay: Int
product: Product
direction: String!
start: String!
end: String!
departingTrack: Track
arrivingTrack: Track
}
type Product {
name: String
class: Int
productCode: Int
productName: String
}
` : ''
const experimentalQuerys = experimental ? `
routing(from: Int!, to: Int!): [Route!]!
` : ''
const schema = buildSchema(`
type Query {
${experimentalQuerys}
stationWithEvaId(evaId: Int!): Station
stationWithStationNumber(stationNumber: Int!): Station
stationWithRill100(rill100: String!): Station
search(searchTerm: String): Searchable!
nearby(latitude: Float!, longitude: Float!, radius: Int = 10000): Nearby!
parkingSpace(id: Int): ParkingSpace
}
${experimentalTypes}
type Searchable {
stations: [Station!]!
operationLocations: [OperationLocation!]!
}
type OperationLocation {
id: String
abbrev: String!
name: String!
shortName: String!
type: String!
status: String
locationCode: String
UIC: String!
regionId: String
validFrom: String!
validTill: String
timeTableRelevant: Boolean
borderStation: Boolean
}
type Station {
primaryEvaId: Int
stationNumber: Int
primaryRil100: String
name: String!
location: Location
category: Int!
priceCategory: Int!
hasParking: Boolean!
hasBicycleParking: Boolean!
hasLocalPublicTransport: Boolean!
hasPublicFacilities: Boolean!
hasLockerSystem: Boolean!
hasTaxiRank: Boolean!
hasTravelNecessities: Boolean!
hasSteplessAccess: String!
hasMobilityService: String!
federalState: String!
regionalArea: RegionalArea!
facilities: [Facility!]!
mailingAddress: MailingAddress!
DBInformationOpeningTimes: OpeningTimes
localServiceStaffAvailability: OpeningTimes
aufgabentraeger: StationContact!
timeTableOffice: StationContact
szentrale: StationContact!
stationManagement: StationContact!
timetable: Timetable!
parkingSpaces: [ParkingSpace!]!
hasSteamPermission: Boolean!
hasWiFi: Boolean!
hasTravelCenter: Boolean!
hasRailwayMission: Boolean!
hasDBLounge: Boolean!
hasLostAndFound: Boolean!
hasCarRental: Boolean!
tracks: [Track!]!
picture: Picture
}
type Track {
platform: String!
number: String!
name: String!
# Length of the platform in cm
length: Int
# Height of the platform in cm
height: Int!
}
type Location {
latitude: Float!
longitude: Float!
}
type Facility {
description: String
type: FacilityType!
state: FacilityState!
equipmentNumber: Int
location: Location
}
type Picture {
id: Int!
url: String!
license: String!
photographer: Photographer!
}
type Photographer {
name: String!
url: String!
}
enum FacilityState {
ACTIVE
INACTIVE
UNKNOWN
}
enum FacilityType {
ESCALATOR
ELEVATOR
}
type MailingAddress {
city: String!
zipcode: String!
street: String!
}
type RegionalArea {
number: Int!
name: String!
shortName: String!
}
type OpeningTimes {
monday: OpeningTime
tuesday: OpeningTime
wednesday: OpeningTime
thursday: OpeningTime
friday: OpeningTime
saturday: OpeningTime
sunday: OpeningTime
holiday: OpeningTime
}
type OpeningTime {
from: String!
to: String!
}
type StationContact {
name: String!
shortName: String
email: String
number: String
phoneNumber: String
}
type Nearby {
stations (count: Int = 10, offset: Int = 0): [Station!]!
parkingSpaces (count: Int = 10, offset: Int = 0): [ParkingSpace!]!
travelCenters (count: Int = 10, offset: Int = 0): [TravelCenter!]!
flinksterCars (count: Int = 10, offset: Int = 0): [FlinksterCar!]!
bikes (count: Int = 10, offset: Int = 0): [FlinksterBike!]!
}
type ParkingSpace {
type: String
id: Int!
name: String
label: String
spaceNumber: String
responsibility: String
source: String
nameDisplay: String
spaceType: String
spaceTypeEn: String
spaceTypeName: String
location: Location
url: String
operator: String
operatorUrl: String
address: MailingAddress
distance: String
facilityType: String
facilityTypeEn: String
openingHours: String
openingHoursEn: String
numberParkingPlaces: String
numberHandicapedPlaces: String
isSpecialProductDb: Boolean!
isOutOfService: Boolean!
station: Station
occupancy: Occupancy
outOfServiceText: String
outOfServiceTextEn: String
reservation: String
clearanceWidth: String
clearanceHeight: String
allowedPropulsions: String
hasChargingStation: String
tariffPrices: [ParkingPriceOption!]!
outOfService: Boolean!
isDiscountDbBahnCard: Boolean!
isMonthVendingMachine: Boolean!
isDiscountDbBahnComfort: Boolean!
isDiscountDbParkAndRail: Boolean!
isMonthParkAndRide: Boolean!
isMonthSeason: Boolean!
tariffDiscount: String
tariffFreeParkingTime: String
tariffDiscountEn: String
tariffPaymentOptions: String
tariffPaymentCustomerCards: String
tariffFreeParkingTimeEn: String
tariffPaymentOptionsEn: String
slogan: String
sloganEn: String
occupancy: Occupancy
}
type ParkingPriceOption {
id: Int!
duration: String!
price: Float
}
type Occupancy {
validData: Boolean!
timestamp: String!
timeSegment: String!
category: Int!
text: String!
}
type Timetable {
nextArrivals: [TrainInStation!]!
nextDepatures: [TrainInStation!]!
}
type TrainInStation {
type: String!
trainNumber: String!
platform: String!
time: String!
stops: [String!]!
}
type TravelCenter {
id: Int
name: String
address: MailingAddress
type: String
location: Location
}
type FlinksterCar {
id: String!
name: String!
description: String!
attributes: CarAttributes!
location: Location!
priceOptions: [PriceOption]!
equipment: CarEquipment!
rentalModel: String!
parkingArea: FlinksterParkingArea!
category: String!
url: String!
}
type FlinksterBike {
id: String!
url: String!
name: String!
description: String!
location: Location!
priceOptions: [PriceOption]!
attributes: BikeAttributes!
address: MailingAddress!
rentalModel: String!
type: String!
providerRentalObjectId: Int!
parkingArea: FlinksterParkingArea!
bookingUrl: String!
}
type CarAttributes {
seats: Int!
color: String!
doors: Int!
transmissionType: String!
licensePlate: String
fillLevel: Int
fuel: String
}
type CarEquipment {
cdPlayer: Boolean
airConditioning: Boolean
navigationSystem: Boolean
roofRailing: Boolean
particulateFilter: Boolean
audioInline: Boolean
tyreType: String
bluetoothHandsFreeCalling: Boolean
cruiseControl: Boolean
passengerAirbagTurnOff: Boolean
isofixSeatFittings: Boolean
}
type FlinksterParkingArea {
id: String!
url: String!
name: String!
address: MailingAddress!
parkingDescription: String
accessDescription: String
locationDescription: String
publicTransport: String
provider: FlinksterProvider!
type: String!
position: Location!
GeoJSON: GeoJSON
}
type GeoJSON {
type: String!
features: [GeoFeature!]!
}
type GeoFeature {
type: String!
properties: GeoProperties!
geometry: GeoPolygon!
}
type GeoPolygon {
type: String!
coordinates: [[[[Float]]]]!
}
type GeoProperties {
name: String!
}
type FlinksterProvider {
url: String!
areaId: Int!
networkIds: [Int!]!
}
type BikeAttributes {
licensePlate: String!
}
type PriceOption {
interval: Int
type: String!
grossamount: Float!
currency: String!
taxrate: Float!
preferredprice: Boolean!
}
`);
module.exports = schema;