super-graph/docs
Vikram Rangnekar 512647156e Add supprt for new Rails 5.2 aes-256-gcm cookies 2019-04-10 01:38:48 -04:00
..
.vuepress Add missing assets folder 2019-04-04 00:57:32 -04:00
.gitignore Add missing assets folder 2019-04-04 00:57:32 -04:00
README.md Add documentation 2019-04-04 00:52:52 -04:00
firebase.json Add documentation 2019-04-04 00:52:52 -04:00
guide.md Add supprt for new Rails 5.2 aes-256-gcm cookies 2019-04-10 01:38:48 -04:00
package.json Add documentation 2019-04-04 00:52:52 -04:00
yarn.lock Add documentation 2019-04-04 00:52:52 -04:00

README.md

home heroImage heroText tagline actionText actionLink features footer
true /hero.png SUPER GRAPH Get an instant GraphQL API for your Rails apps. Get Started → /guide
title details
Simple Easy config file, quick to deploy, No code needed. It just works.
title details
High Performance Converts your GraphQL query into a fast SQL one.
title details
Written in GO Go is a language created at Google to build secure and fast web services.
MIT Licensed | Copyright © 2018-present Vikram Rangnekar

Super Graph Web UI

Without writing a line of code get an instant high-performance GraphQL API for your Ruby-on-Rails app. Super Graph will automatically understand your apps database and expose a secure, fast and complete GraphQL API for it. Built in support for Rails authentication and JWT tokens.

Try it out

# setup the demo rails app database
docker-compose run web rake db:create db:migrate db:seed

# run the demo rails app and the Super Graph service
docker-compose -f docker-compose.image.yml up

# try out the GraphQL api with the web ui in your browser
open http://localhost:8080

Try this GraphQL query

query { 
  users {
    id
    email
    picture : avatar
    products(limit: 2, where: { price: { gt: 10 } }) {
      id
      name
      description
    }
  }
}

Why I built Super Graph?

I have a Rails app that gets a bit of traffic. While planning to improve the UI using React or Vue I found that my current APIs didn't have what we needed. I'd have to add more controllers and ensure they are providing the right amount of data. This required designing new APIs and making sure they match what the webdevs need. While this is all to common work I was bored and there had to be a better way.

All my Rails controllers were esentially wrappers around database queries and its not exactly fun writing more of them.

I always liked GraphQL it made everything so simple. Web devs can use GraphQL to fetch exactly the data they need. There is one small issue however you still hasve to write a lot of the same database code.

I wanted a GraphQL server that just worked the second you deployed it without having to write a line of code.

And so after a lot of coffee and some avocado toasts Super Graph was born. An instant GraphQL API service that's high performance and easy to deploy. I hope you find it as useful as I do and there's a lot more coming so hit that to stay in the loop.

Say hello

twitter.com/dosco