{"endpoint":"/graphql","version":"1.7.33","settings":{"general.betaUpdates":false,"editor.theme":"light","editor.cursorShape":"line","editor.reuseHeaders":true,"tracing.hideTracingResponse":true,"queryPlan.hideQueryPlanResponse":true,"editor.fontSize":14,"editor.fontFamily":"'Source Code Pro', 'Consolas', 'Inconsolata', 'Droid Sans Mono', 'Monaco', monospace","request.credentials":"omit"},"tabs":[{"endpoint":"/graphql","name":"Example Query","query":"# Welcome to the Barcelona urban mobility GraphQL API\n#\n# Here is an example query to get you started, \n# which gets the closest bike station from the design museum of BCN,\n# and the first three metro stations from the L4,\n# simply press play to fetch the information, or refer to the docs tab on the left\n# to create your own queries ✨\n\n{\n station: bikeStation(\n findBy: { closest: { latitude: 41.402451, longitude: 2.1880918 } }\n ) {\n ...on BikeStation {\n name\n coordinates {\n longitude\n latitude\n }\n available {\n bikes {\n electrical\n mechanical\n }\n }\n }\n }\n stations: metroStations(\n filterBy: { lineId: 4 }\n first: 3\n ) {\n edges {\n node {\n id\n name\n }\n }\n }\n}\n"}],"canSaveConfig":false}
Example Query
x
39
1
# Welcome to the Barcelona urban mobility GraphQL API
2
#
3
# Here is an example query to get you started,
4
# which gets the closest bike station from the design museum of BCN,
5
# and the first three metro stations from the L4,
6
# simply press play to fetch the information, or refer to the docs tab on the left
This GraphQL server either doesn't support Apollo Federation, or the query plan extensions is disabled. See the docs for setting up query plan viewing with Apollo Federation.