No commit activity in last 3 years
No release in over 3 years
A Ruby library for declaring, composing and executing GraphQL queries for AWS AppSync IAM Authorization
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Build Status Coverage Status Gem Version

graphql-client-aws

graphql-client(github/graphql-client) を AWS AppSync の IAM 認証に対応させるための gem です。

Installation

Add this line to your application's Gemfile:

gem 'graphql-client-aws'

And then execute:

$ bundle

Or install it yourself as:

$ gem install graphql-client-aws

Usage

Configuration

オリジナルのサンプルを以下のように書き換えて使用します。
new の URL 以外の引数は Aws::Sigv4::Signernew に渡されます。

require "graphql/client"
- require "graphql/client/http"
+ require "graphql/client/aws"

# Star Wars API example wrapper
module SWAPI
  # Configure GraphQL endpoint using the basic HTTP network adapter.
- HTTP = GraphQL::Client::HTTP.new("https://example.com/graphql") do 
+ HTTP = GraphQL::Client::Aws.new("https://example.com/graphql", region: 'us-east-1') do
    def headers(context)
      # Optionally set any HTTP headers
      { "User-Agent": "My Client" }
    end
  end

License

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