Warning, /libraries/kpublictransport/src/lib/backends/otp/entur/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: quays(name: $name) {
0006     id
0007     name
0008     lat: latitude
0009     lon: longitude
0010     timezone
0011     parentStation: stopPlace {
0012       id
0013       lat: latitude
0014       lon: longitude
0015       timezone
0016     }
0017     timezone
0018   }
0019 }