Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/doylemark/vatsim-graphql
- Owner: doylemark
- License: other
- Created: 2020-09-18T23:55:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-22T23:30:51.000Z (about 4 years ago)
- Last Synced: 2024-12-19T13:49:38.714Z (14 days ago)
- Topics: graphql, typescript, vatsim
- Language: TypeScript
- Homepage: https://vatsim-graphql.xyz
- Size: 246 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vatsim-graphql
GraphQL API for VATSIM. Written in TypeScript with Express & Apollo
Copyright (C) 2020 Mark DoyleThis 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
```