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

https://github.com/dinohan/idleql

g-idle graphql server
https://github.com/dinohan/idleql

aws aws-lambda graphql lambda

Last synced: 2 months ago
JSON representation

g-idle graphql server

Awesome Lists containing this project

README

          

# idleql

[idle](https://github.com/dinohan/idle)'s graphql server

```js
type Query {
albums: [Album]!
songs(album: String!): [Song]
song(youtubeID: String!): Song
}
type Album {
name: String!
img: String!
type: String!
release: Release!
}
type Release {
year: String!
month: String!
date: String!
}
type Song {
name: String!
youtubeID: String!
title: Boolean!
thumbnail: String!
album: String!
}
```