Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hashnuke/graphql-tryouts

GraphQL tryouts with Rails & Python apps along with schema-stitching
https://github.com/hashnuke/graphql-tryouts

Last synced: 15 days ago
JSON representation

GraphQL tryouts with Rails & Python apps along with schema-stitching

Awesome Lists containing this project

README

        

User
id
name

Post
id
title
user_id
created_at

Likes
like_id
post_id
user_id
created_at

rails g scaffold User name:text
rails g scaffold Post title:text user_id:integer
rails g scaffold Like post_id:integer user_id:integer

Query
Collection vs Connection
Authentication
Authorization
Pagination