augustskare / gatsby-source-citybike

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

Home Page:https://www.gatsbyjs.org/packages/gatsby-source-citybike

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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
      }
    }
  }
}

About

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

https://www.gatsbyjs.org/packages/gatsby-source-citybike


Languages

Language:JavaScript 87.7%Language:HCL 12.3%