Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/doylemark/vatsim-graphql

GraphQL API for VATSIM
https://github.com/doylemark/vatsim-graphql

graphql typescript vatsim

Last synced: 10 days ago
JSON representation

GraphQL API for VATSIM

Awesome Lists containing this project

README

        

# vatsim-graphql

GraphQL API for VATSIM. Written in TypeScript with Express & Apollo
Copyright (C) 2020 Mark Doyle

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License v2 as published by
the Free Software Foundation;

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

Server is live here. It is not currently ready for use in production due to the speed the schema is evolving at.

Example query:

```gql
query {
airport(icao: "EIDW") {
lat
lon
iata
}
pilots {
name
callsign
flight_plan {
aircraft
route
}
}
}
```

## Developers

Clone and start dev server

```
git clone https://github.com/doylemark/vatsim-graphql && cd vatsim-graphl
npm start
```

Run Jest tests suite (wip)
```
npm run test
```