Module: GraphQL::Stitching
- Defined in:
- lib/graphql/stitching.rb,
lib/graphql/stitching/util.rb,
lib/graphql/stitching/client.rb,
lib/graphql/stitching/shaper.rb,
lib/graphql/stitching/planner.rb,
lib/graphql/stitching/request.rb,
lib/graphql/stitching/version.rb,
lib/graphql/stitching/composer.rb,
lib/graphql/stitching/executor.rb,
lib/graphql/stitching/supergraph.rb,
lib/graphql/stitching/http_executable.rb,
lib/graphql/stitching/planner_operation.rb,
lib/graphql/stitching/executor/root_source.rb,
lib/graphql/stitching/composer/base_validator.rb,
lib/graphql/stitching/executor/boundary_source.rb,
lib/graphql/stitching/composer/validate_boundaries.rb,
lib/graphql/stitching/composer/validate_interfaces.rb
Defined Under Namespace
Classes: Client, Composer, Executor, HttpExecutable, Planner, PlannerOperation, Request, Shaper, StitchingError, Supergraph, Util
Constant Summary
collapse
- EMPTY_OBJECT =
{}.freeze
- EMPTY_ARRAY =
[].freeze
- VERSION =
"1.0.0"
Class Attribute Summary collapse
Class Method Summary
collapse
Class Attribute Details
.stitch_directive ⇒ Object
14
15
16
|
# File 'lib/graphql/stitching.rb', line 14
def stitch_directive
@stitch_directive ||= "stitch"
end
|
Class Method Details
.stitching_directive_names ⇒ Object
20
21
22
|
# File 'lib/graphql/stitching.rb', line 20
def stitching_directive_names
[stitch_directive]
end
|