Warning, /libraries/kpublictransport/src/lib/backends/otp/stationByName.graphql is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2020 Volker Krause <vkrause@kde.org>
0002 # SPDX-License-Identifier: CC0-1.0
0003 
0004 query stationsByName($name: String!) {
0005   stations: stops(name: $name) {
0006     id: gtfsId
0007     name
0008     lat
0009     lon
0010     parentStation {
0011       id: gtfsId
0012       name
0013       lat
0014       lon
0015       timezone
0016     }
0017     #wheelchairBoarding
0018     timezone
0019     #alerts { alertHeaderText alertDescriptionText }
0020   }
0021 }