Warning, /libraries/kpublictransport/src/lib/backends/otp/otp2/stationByName.graphql is written in an unsupported language. File is not indexed.
0001 # SPDX-FileCopyrightText: 2020-2021 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 vehicleMode 0011 parentStation { 0012 id: gtfsId 0013 name 0014 lat 0015 lon 0016 } 0017 } 0018 }