I build API solutions for people and machines. Not interested in code? Look https://wtrocki.com
Build GraphQL backend in less than 1 minute.
- Define your data using GraphQL by creating model file.
touch model.graphql
- Build your model
"""
@model
@datasync
"""
type GithubRepository {
_id: GraphbackObjectID!
name: String
}
scalar GraphbackObjectID
- Get your API server based on that model is backed by MongoDB database
npx graphql-serve serve --port=5400 --datasync model.graphql
Powered by https://graphback.dev and https://graphqlcrud.org