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

https://github.com/nathanborror/example-starter-projects

These are meant to be very simple setups to act as starting off points.
https://github.com/nathanborror/example-starter-projects

Last synced: 11 months ago
JSON representation

These are meant to be very simple setups to act as starting off points.

Awesome Lists containing this project

README

          

# Starter Projects

These are meant to be very simple setups to act as starting off points for
prototyping new ideas.

All GraphQL examples are assuming the following schema:

type Account {
name: String!
}
type Query {
me(): Account!
}
schema {
query: Query
}