0.01
No release in over 3 years
Low commit activity in last 3 years
Graphql client
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 3.0.0
>= 1.9.0
 Project Readme

ActiveGraphql

Build Status codecov Documentation

logo

GraphQL client which allows to interact with graphql using ActiveRecord-like API

Detailed documentation can be found at https://samesystem.github.io/active_graphql

Installation

Add this line to your application's Gemfile:

gem 'active_graphql'

And then execute:

$ bundle

Or install it yourself as:

$ gem install active_graphql

Usage

You can fetch data from GraphQL in two different ways: using ActiveGraphql::Client or using ActiveGraphql::Model

ActiveGraphql::Client is a client which allows you to make requests using ruby-friendly code:

client = ActiveGraphql::Client.new(url: 'https://example.com/graphql')

client.query(:findUser).inputs(id: 1).outputs(:name, :avatar_url).result
# or same request with AR-style syntax
client.query(:findUser).select(:name, :avatar_url).where(id: 1).result

Find out more how to use Client in Client documentation

If you have well structured GraphQL endpoint, which has CRUD actions for each entity then you can interact with GraphQL endpoints using ActiveGraphql::Model. It allows you to have separate class for separate GraphQL entity, Here is an example:

Suppose you have following endpoints in graphql:

  • users(filter: UsersFilter!) - index action with filtering possibilities
  • user(id: ID!) - show action

In this case you can create ruby class like this:

class User
  include ActiveGraphql::Model

  active_graphql do |c|
    c.url('http://example.com/graphql')
    c.attributes :id, :first_name, :last_name, :created_at
  end
end

with this small setup you are able to do following:

User.where(first_name: 'John').to_a # list all users with name "John"
User.limit(5).to_a # list first 5 users
User.find(1) # find user with ID: 1
User.first(2) # find first 2 users
User.last(3) # find last 3 users

Find out more how to use Model in Model documentation

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/samesystem/active_graphql. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the ActiveGraphql project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.