Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rmosolgo/graphql-ruby
Ruby implementation of GraphQL
https://github.com/rmosolgo/graphql-ruby
graphql graphql-ruby hacktoberfest rails relay ruby
Last synced: 5 days ago
JSON representation
Ruby implementation of GraphQL
- Host: GitHub
- URL: https://github.com/rmosolgo/graphql-ruby
- Owner: rmosolgo
- License: mit
- Created: 2015-02-05T04:11:22.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-12-27T15:36:42.000Z (15 days ago)
- Last Synced: 2025-01-03T14:12:18.946Z (8 days ago)
- Topics: graphql, graphql-ruby, hacktoberfest, rails, relay, ruby
- Language: Ruby
- Homepage: http://graphql-ruby.org
- Size: 181 MB
- Stars: 5,378
- Watchers: 83
- Forks: 1,389
- Open Issues: 54
-
Metadata Files:
- Readme: readme.md
- Changelog: CHANGELOG-enterprise.md
- Contributing: .github/contributing.md
- License: MIT-LICENSE
Awesome Lists containing this project
- awesome-graphql - Ruby
- awesome-ruby - graphql-ruby - Ruby implementation of GraphQL. (GraphQL)
- awesome-graphql - graphql-ruby - Ruby implementation of Facebook's GraphQL. (Libraries / Ruby Libraries)
- awesome-github-star - graphql-ruby
- awesome-list - graphql-ruby
- awesome-graphql - graphql-ruby - Ruby implementation of Facebook's GraphQL. (Libraries / Ruby Libraries)
README
# graphql
[![CI Suite](https://github.com/rmosolgo/graphql-ruby/actions/workflows/ci.yaml/badge.svg)](https://github.com/rmosolgo/graphql-ruby/actions/workflows/ci.yaml)
[![Gem Version](https://badge.fury.io/rb/graphql.svg)](https://rubygems.org/gems/graphql)A Ruby implementation of [GraphQL](https://graphql.org/).
- [Website](https://graphql-ruby.org/)
- [API Documentation](https://www.rubydoc.info/github/rmosolgo/graphql-ruby)
- [Newsletter](https://buttondown.email/graphql-ruby)## Installation
Install from RubyGems by adding it to your `Gemfile`, then bundling.
```ruby
# Gemfile
gem 'graphql'
``````
$ bundle install
```## Getting Started
```
$ rails generate graphql:install
```After this, you may need to run `bundle install` again, as by default graphiql-rails is added on installation.
Or, see ["Getting Started"](https://graphql-ruby.org/getting_started.html).
## Upgrade
I also sell [GraphQL::Pro](https://graphql.pro) which provides several features on top of the GraphQL runtime, including:
- [Persisted queries](https://graphql-ruby.org/operation_store/overview)
- [API versioning](https://graphql-ruby.org/changesets/overview)
- [Streaming payloads](https://graphql-ruby.org/defer/overview)
- [Server-side caching](https://graphql-ruby.org/object_cache/overview)
- [Rate limiters](https://graphql-ruby.org/limiters/overview)
- Subscriptions backends for [Pusher](https://graphql-ruby.org/subscriptions/pusher_implementation) and [Ably](https://graphql-ruby.org/subscriptions/ably_implementation)
- Authorization plugins for [Pundit](https://graphql-ruby.org/authorization/pundit_integration) and [CanCan](https://graphql-ruby.org/authorization/can_can_integration)Besides that, Pro customers get email support and an opportunity to support graphql-ruby's development!
## Goals
- Implement the GraphQL spec & support a Relay front end
- Provide idiomatic, plain-Ruby API with similarities to reference implementation where possible
- Support Ruby on Rails and Relay## Getting Involved
- __Say hi & ask questions__ in the #graphql-ruby channel on [Discord](https://discord.com/invite/xud7bH9).
- __Report bugs__ by posting a description, full stack trace, and all relevant code in a [GitHub issue](https://github.com/rmosolgo/graphql-ruby/issues).
- __Start hacking__ with the [Development guide](https://graphql-ruby.org/development).