robatwilliams / hills-api

GraphQL API for The Database of British and Irish Hills

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hills-api

GraphQL API for The Database of British and Irish Hills

Web API providing data about the hills and mountains of Britain and Ireland.

Use it as a convenient data source for apps and web apps, whether real or just experiments that need some data. You may also be interested in the technology that powers it.

The data comes from the DoBIH database and is used under license. If you use it, consider donating to the DoBIH fund.

Features

⛰️ Major hills and mountains of Britain and Ireland

πŸ“ Key data fields from the hills database

πŸ” Filter and sort on some fields

πŸ‘ͺ Query related (parent, child1) hills in the same query

🚚 Paginate large result sets

πŸ—œοΈ Compressed and cacheable HTTP responses for speed and efficiency

πŸ‘ Free to use, no API key (at least while it's not costing me much)

1 There is a list of possible future features.

Endpoints

GraphQL API

https://32ik7cv8v0.execute-api.eu-west-1.amazonaws.com/prod/graphql

⚠️ 😴 ⏳ To save on running costs, the database behind the API is currently allowed to sleep during periods of inactivity. Error responses will be returned while it wakes up, which can take up to a minute.

Schema

https://32ik7cv8v0.execute-api.eu-west-1.amazonaws.com/prod/schema

Plain text dump of the API's self-description of available queries and data.

Playground

https://32ik7cv8v0.execute-api.eu-west-1.amazonaws.com/prod/playground

Browser-based IDE (query editor), for building and executing queries.

Try some out some queries straight away - you can copy an example from below or from the /examples folder. Use the Schema and Docs tabs (at the right hand edge) to browse the API's self-description of available queries and data.

Query arguments

Filtering is in the style of MongoDB-style query objects.

Pagination is cursor-based, in the style of Relay cursor connections.

See the schema (the API's self-description) and the example queries for detail.

Example query

First few hills matching some criteria, sorted by height, with a selection of fields (more available):

{
  hills(
    first: 20
    filter: {
      heightMetres: { gt: 500 }
      lists: { id: { inc: WAINWRIGHT } }
      names: { search: "pike" }
    }
    sort: { height: { descending: true } }
  ) {
    nodes {
      coordinates {
        grid {
          easting
          northing
        }
      }
      height(unit: METRES)
      maps(scale: ONE_25K) {
        sheet
      }
      names {
        primary
      }
      parent {
        names {
          primary
        }
      }
      region {
        name
      }
    }
    pageInfo {
      endCursor
      hasNextPage
    }
  }
}

Check out the /examples folder for more.

Calling the API

Queries are accepted as POST and GET requests, and return JSON. You can construct and send them yourself, or use a GraphQL client library for your platform which can take advantage of the structured and self-describing nature of the API.

Here's a simple POST example using just fetch() for a web browser:

fetch('https://xxxxxxxxxx.execute-api.eu-west-1.amazonaws.com/prod/graphql', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    query: '{ hill(number: 278) { names { primary } } }',
  }),
})
  .then(response => response.json())
  .then(console.log);

Note that it's generally better to use variables for passing arguments, rather than embedding them in the query itself.

Prefer to send queries using GET requests rather than POST, as this will allow reuse of cached responses without making a network request. Here's an equivalent example using GET and variables (separated onto multiple lines and unencoded for readability):

https://xxxxxxxxxx.execute-api.eu-west-1.amazonaws.com/prod/graphql
?query=query MyQuery($myVariable: Int!) { hill(number: $myVariable) { names { primary } } }
&variables={"myVariable":278}

Read more about calling GraphQL APIs, including those aspects, here and here.

Technology

The API accepts queries described using GraphQL, which provides flexibility for consumers to receive only the parts of the data they require for their particular use cases. The backend for the API is implemented in JavaScript and runs on Node.js. It runs on serverless technologies by Amazon Web Services (Lambda, Aurora Serverless database), thus there are no dedicated servers to manage or pay for by the hour.

The /docs folder contains some more detailed technical notes, and you can of course browse the source code and run it yourself.

License

hills-api, Copyright (C) Robat Williams

This project is licensed under the terms of the GNU AGPLv3 or later license.

The Database of British and Irish Hills is used under the Creative Commons Attribution 3.0 Unported License.

About

GraphQL API for The Database of British and Irish Hills

License:GNU Affero General Public License v3.0


Languages

Language:JavaScript 99.3%Language:Shell 0.5%Language:PLSQL 0.2%