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
- Host: GitHub
- URL: https://github.com/dinohan/idleql
- Owner: dinohan
- Created: 2021-01-15T14:11:28.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-20T11:05:14.000Z (over 5 years ago)
- Last Synced: 2025-01-16T19:25:03.448Z (over 1 year ago)
- Topics: aws, aws-lambda, graphql, lambda
- Language: JavaScript
- Homepage:
- Size: 52.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!
}
```