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.
- Host: GitHub
- URL: https://github.com/nathanborror/example-starter-projects
- Owner: nathanborror
- Created: 2017-04-15T19:34:18.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-17T23:32:58.000Z (over 8 years ago)
- Last Synced: 2025-01-12T13:26:20.894Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}