Skip to content
This repository has been archived by the owner on Nov 2, 2022. It is now read-only.

Latest commit

 

History

History
76 lines (60 loc) · 1.04 KB

readme.md

File metadata and controls

76 lines (60 loc) · 1.04 KB

gatsby-source-citybike

A Gatsby source plugin for getting city bike station's from Oslo, Bergen, Trondheim and Edinburgh into your Gatsby application.

Install

yarn add gatsby-source-citybike

or with npm

npm install gatsby-source-citybike

How to use

In your gatsby-config.js

module.exports = {
  plugins: [
    {
      resolve: 'gatsby-source-citybike',
      options: {
        cities: ['Oslo', 'Bergen'],
      },
    },
  ]
}

Options

cities

Type: array
Default: ['oslo']

Available cities: Oslo, Bergen, Trondheim and Edinburgh.

How to query

query {
  allCitybikeStation {
    edges {
      node {
        name
        lat
        lon
        city
        address
        capacity
        station_id
      }
    }
  }
}

Filter stations by city

query {
  allCitybikeStation(filter: { city: { eq: "Oslo" } }) {
    edges {
      node {
        name
        lat
        lon
        address
        capacity
        station_id
      }
    }
  }
}