All Projects → prisma → Graphql Up

prisma / Graphql Up

Get a ready-to-use GraphQL API for your schema

Projects that are alternatives of or similar to Graphql Up

Angular Fullstack Graphql
🚀 Starter projects for fullstack applications based on Angular & GraphQL.
Stars: ✭ 92 (-77.83%)
Mutual labels:  graphql, apollo, apollographql, graphcool
Fraql
GraphQL fragments made simple ⚡️
Stars: ✭ 433 (+4.34%)
Mutual labels:  graphql, apollo, relay, apollographql
Booben
Web app constructor based on React, with GraphQL bindings
Stars: ✭ 96 (-76.87%)
Mutual labels:  graphql, apollo, apollographql, graphcool
Get Graphql Schema
Fetch and print the GraphQL schema from a GraphQL HTTP endpoint. (Can be used for Relay Modern.)
Stars: ✭ 443 (+6.75%)
Mutual labels:  graphql, apollo, relay, apollographql
React Fullstack Graphql
Starter projects for fullstack applications based on React & GraphQL.
Stars: ✭ 1,352 (+225.78%)
Mutual labels:  graphql, apollo, apollographql, graphcool
Learnapollo
👩🏻‍🏫 Learn Apollo - A hands-on tutorial for Apollo GraphQL Client (created by Graphcool)
Stars: ✭ 5,274 (+1170.84%)
Mutual labels:  graphql, apollo, apollographql, graphcool
Vue Fullstack Graphql
Starter projects for fullstack applications based on Vue.js & GraphQL.
Stars: ✭ 352 (-15.18%)
Mutual labels:  graphql, apollo, graphcool
Apollo Prophecy
🔮 GraphQL error management made Easy, generate custom machine-readable errors for Apollo Client/Server from the CLI
Stars: ✭ 83 (-80%)
Mutual labels:  graphql, apollo, apollographql
Graphql Log
Add logging to your GraphQL resolvers so you know what's going on in your app.
Stars: ✭ 94 (-77.35%)
Mutual labels:  graphql, graphql-server, apollographql
Reactconfbr
Public infos and issues about React Conf Brasil organization
Stars: ✭ 156 (-62.41%)
Mutual labels:  graphql, apollo, relay
Apollo Mocked Provider
Automatically mock GraphQL data with a mocked ApolloProvider
Stars: ✭ 70 (-83.13%)
Mutual labels:  graphql, apollo, apollographql
React Graphql Github Apollo
🚀 A React + Apollo + GraphQL GitHub Client. Your opportunity to learn about these technologies in a real world application.
Stars: ✭ 1,563 (+276.63%)
Mutual labels:  graphql, apollo, apollographql
Gramps Legacy
The core data source combination engine of GrAMPS.
Stars: ✭ 198 (-52.29%)
Mutual labels:  graphql, graphql-server, apollographql
Graphql Transform Schema
Transform, filter & alias resolvers of a GraphQL schema
Stars: ✭ 84 (-79.76%)
Mutual labels:  graphql, apollo, graphql-server
Graphql Ws
Coherent, zero-dependency, lazy, simple, GraphQL over WebSocket Protocol compliant server and client.
Stars: ✭ 398 (-4.1%)
Mutual labels:  graphql, apollo, relay
Apollo Server
🌍  Spec-compliant and production ready JavaScript GraphQL server that lets you develop in a schema-first way. Built for Express, Connect, Hapi, Koa, and more.
Stars: ✭ 12,145 (+2826.51%)
Mutual labels:  graphql, graphql-server, apollographql
ios-graphql
iOS code examples with GraphQL, Apollo & more
Stars: ✭ 78 (-81.2%)
Mutual labels:  apollo, apollographql, graphcool
apollo-express-ts-server-boilerplate
No description or website provided.
Stars: ✭ 29 (-93.01%)
Mutual labels:  apollo, graphql-server, apollographql
Graphback
Graphback - Out of the box GraphQL server and client
Stars: ✭ 323 (-22.17%)
Mutual labels:  graphql, apollo, apollographql
Data Source Base
Boilerplate for creating a GrAMPS-compatible data source.
Stars: ✭ 52 (-87.47%)
Mutual labels:  graphql, graphql-server, apollographql

graphql-up

graphql-up is the fastest way to get a free & ready to use GraphQL API. It works out of the box with Apollo & Relay and supports GraphQL subscriptions.

Features

  • 🚀 Get a instant GraphQL API for your schema
  • ⚛️ Optimized endpoints for Apollo & Relay
  • 👨‍🏫 Easy to add to your own tutorials, docs & examples

Quickstart

type Tweet @model {
  id: ID! @isUnique
  text: String!
  author: User! @relation(name: "Tweets")
}

type User @model {
  id: ID! @isUnique
  name: String!
  tweets: [Tweet!]! @relation(name: "Tweets")
}

Copy the schema above and save it as twitter.graphql. (Read more about the IDL syntax.)

# Install the CLI via npm (or yarn)
npm install -g graphql-up

# Create GraphQL API using your local schema file
graphql-up twitter.graphql

This is how it should look like (see this video tutorial for more details):

Usage

  Usage: graphql-up <schema>
  
    Get a ready-to-use GraphQL API for your schema
    Read more at https://www.graph.cool/graphql-up/
    
  Examples:
    graphql-up twitter.graphql                          # local schema file
    graphql-up https://graphqlbin.com/twitter.graphql   # fetch schema from URL
    
    More examples: https://github.com/graphcool/graphql-up

  Options:
    --version, -v   Print version of graphql-up
    --help, -h      Show help message
    --minimal, -m   Only print URLs of created API

Local schema file

graphql-up twitter.graphql

Hosted schema file

graphql-up https://graphqlbin.com/twitter.graphql

How it works

You only need to provide the schema, graphql-up will create a GraphQL API for you. The actual magic happens on the servers sponsored by Graphcool.

Add graphql-up to your repositories/docs

You can easily add a graphql-up badge to your own tutorials, docs & examples. Just add the following Markdown snippet and replace the __SCHEMA_URL__ with a link to your schema file. (See here for a snippet generator.)

[![graphql-up](http://static.graph.cool/images/graphql-up.svg)](https://www.graph.cool/graphql-up/new?source=__SCHEMA_URL__)

Schema Examples

Do you have another interesting example in mind? Add it here. 📚

Help & Community Slack Status

Join our Slack community if you run into issues or have questions. We love talking to you!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].