Sha256: 181a710cd8ddeead81166f05d1e42a8104547857ec22e29b569a8898e1c532e6

Contents?: true

Size: 810 Bytes

Versions: 7

Compression:

Stored size: 810 Bytes

Contents

# frozen_string_literal: true

require "graphql"

module GraphQL
  module Stitching
    EMPTY_OBJECT = {}.freeze

    class StitchingError < StandardError; end

    class << self

      def stitch_directive
        @stitch_directive ||= "stitch"
      end

      attr_writer :stitch_directive

      def stitching_directive_names
        [stitch_directive]
      end
    end
  end
end

require_relative "stitching/gateway"
require_relative "stitching/supergraph"
require_relative "stitching/composer"
require_relative "stitching/executor"
require_relative "stitching/planner_operation"
require_relative "stitching/planner"
require_relative "stitching/remote_client"
require_relative "stitching/request"
require_relative "stitching/shaper"
require_relative "stitching/util"
require_relative "stitching/version"

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
graphql-stitching-0.3.6 lib/graphql/stitching.rb
graphql-stitching-0.3.4 lib/graphql/stitching.rb
graphql-stitching-0.3.3 lib/graphql/stitching.rb
graphql-stitching-0.3.2 lib/graphql/stitching.rb
graphql-stitching-0.3.1 lib/graphql/stitching.rb
graphql-stitching-0.3.0 lib/graphql/stitching.rb
graphql-stitching-0.2.2 lib/graphql/stitching.rb