graphql 2.0.32 → 2.5.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/generators/graphql/detailed_trace_generator.rb +77 -0
- data/lib/generators/graphql/install/mutation_root_generator.rb +2 -2
- data/lib/generators/graphql/install/templates/base_mutation.erb +2 -0
- data/lib/generators/graphql/install/templates/mutation_type.erb +2 -0
- data/lib/generators/graphql/install_generator.rb +49 -0
- data/lib/generators/graphql/orm_mutations_base.rb +1 -1
- data/lib/generators/graphql/templates/base_argument.erb +2 -0
- data/lib/generators/graphql/templates/base_connection.erb +2 -0
- data/lib/generators/graphql/templates/base_edge.erb +2 -0
- data/lib/generators/graphql/templates/base_enum.erb +2 -0
- data/lib/generators/graphql/templates/base_field.erb +2 -0
- data/lib/generators/graphql/templates/base_input_object.erb +2 -0
- data/lib/generators/graphql/templates/base_interface.erb +2 -0
- data/lib/generators/graphql/templates/base_object.erb +2 -0
- data/lib/generators/graphql/templates/base_resolver.erb +8 -0
- data/lib/generators/graphql/templates/base_scalar.erb +2 -0
- data/lib/generators/graphql/templates/base_union.erb +2 -0
- data/lib/generators/graphql/templates/create_graphql_detailed_traces.erb +10 -0
- data/lib/generators/graphql/templates/graphql_controller.erb +2 -0
- data/lib/generators/graphql/templates/loader.erb +2 -0
- data/lib/generators/graphql/templates/mutation.erb +2 -0
- data/lib/generators/graphql/templates/node_type.erb +2 -0
- data/lib/generators/graphql/templates/query_type.erb +2 -0
- data/lib/generators/graphql/templates/schema.erb +5 -0
- data/lib/generators/graphql/type_generator.rb +1 -1
- data/lib/graphql/analysis/analyzer.rb +90 -0
- data/lib/graphql/analysis/field_usage.rb +82 -0
- data/lib/graphql/analysis/max_query_complexity.rb +20 -0
- data/lib/graphql/analysis/max_query_depth.rb +20 -0
- data/lib/graphql/analysis/query_complexity.rb +263 -0
- data/lib/graphql/analysis/query_depth.rb +58 -0
- data/lib/graphql/analysis/visitor.rb +280 -0
- data/lib/graphql/analysis.rb +95 -1
- data/lib/graphql/autoload.rb +38 -0
- data/lib/graphql/backtrace/table.rb +118 -55
- data/lib/graphql/backtrace.rb +1 -19
- data/lib/graphql/coercion_error.rb +1 -9
- data/lib/graphql/current.rb +57 -0
- data/lib/graphql/dashboard/application_controller.rb +41 -0
- data/lib/graphql/dashboard/detailed_traces.rb +47 -0
- data/lib/graphql/dashboard/installable.rb +22 -0
- data/lib/graphql/dashboard/landings_controller.rb +9 -0
- data/lib/graphql/dashboard/limiters.rb +93 -0
- data/lib/graphql/dashboard/operation_store.rb +199 -0
- data/lib/graphql/dashboard/statics/bootstrap-5.3.3.min.css +6 -0
- data/lib/graphql/dashboard/statics/bootstrap-5.3.3.min.js +7 -0
- data/lib/graphql/dashboard/statics/charts.min.css +1 -0
- data/lib/graphql/dashboard/statics/dashboard.css +30 -0
- data/lib/graphql/dashboard/statics/dashboard.js +143 -0
- data/lib/graphql/dashboard/statics/header-icon.png +0 -0
- data/lib/graphql/dashboard/statics/icon.png +0 -0
- data/lib/graphql/dashboard/statics_controller.rb +31 -0
- data/lib/graphql/dashboard/subscriptions.rb +97 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/detailed_traces/traces/index.html.erb +45 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/landings/show.html.erb +18 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/limiters/limiters/show.html.erb +62 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/not_installed.html.erb +18 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/operation_store/clients/_form.html.erb +24 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/operation_store/clients/edit.html.erb +21 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/operation_store/clients/index.html.erb +69 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/operation_store/clients/new.html.erb +7 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/operation_store/index_entries/index.html.erb +39 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/operation_store/index_entries/show.html.erb +32 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/operation_store/operations/index.html.erb +81 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/operation_store/operations/show.html.erb +71 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/subscriptions/subscriptions/show.html.erb +41 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/subscriptions/topics/index.html.erb +55 -0
- data/lib/graphql/dashboard/views/graphql/dashboard/subscriptions/topics/show.html.erb +40 -0
- data/lib/graphql/dashboard/views/layouts/graphql/dashboard/application.html.erb +108 -0
- data/lib/graphql/dashboard.rb +96 -0
- data/lib/graphql/dataloader/active_record_association_source.rb +84 -0
- data/lib/graphql/dataloader/active_record_source.rb +47 -0
- data/lib/graphql/dataloader/async_dataloader.rb +112 -0
- data/lib/graphql/dataloader/null_dataloader.rb +55 -10
- data/lib/graphql/dataloader/request.rb +5 -0
- data/lib/graphql/dataloader/source.rb +35 -12
- data/lib/graphql/dataloader.rb +224 -149
- data/lib/graphql/date_encoding_error.rb +1 -1
- data/lib/graphql/dig.rb +2 -1
- data/lib/graphql/duration_encoding_error.rb +16 -0
- data/lib/graphql/execution/interpreter/argument_value.rb +5 -1
- data/lib/graphql/execution/interpreter/arguments_cache.rb +5 -10
- data/lib/graphql/execution/interpreter/resolve.rb +23 -25
- data/lib/graphql/execution/interpreter/runtime/graphql_result.rb +228 -0
- data/lib/graphql/execution/interpreter/runtime.rb +363 -434
- data/lib/graphql/execution/interpreter.rb +91 -164
- data/lib/graphql/execution/lookahead.rb +105 -31
- data/lib/graphql/execution/multiplex.rb +7 -6
- data/lib/graphql/execution/next/field_resolve_step.rb +711 -0
- data/lib/graphql/execution/next/load_argument_step.rb +60 -0
- data/lib/graphql/execution/next/prepare_object_step.rb +129 -0
- data/lib/graphql/execution/next/runner.rb +389 -0
- data/lib/graphql/execution/next/selections_step.rb +37 -0
- data/lib/graphql/execution/next.rb +70 -0
- data/lib/graphql/execution.rb +1 -0
- data/lib/graphql/execution_error.rb +13 -10
- data/lib/graphql/introspection/directive_location_enum.rb +1 -1
- data/lib/graphql/introspection/directive_type.rb +7 -3
- data/lib/graphql/introspection/dynamic_fields.rb +5 -1
- data/lib/graphql/introspection/entry_points.rb +20 -6
- data/lib/graphql/introspection/enum_value_type.rb +5 -5
- data/lib/graphql/introspection/field_type.rb +13 -5
- data/lib/graphql/introspection/input_value_type.rb +21 -13
- data/lib/graphql/introspection/schema_type.rb +8 -11
- data/lib/graphql/introspection/type_type.rb +64 -28
- data/lib/graphql/invalid_name_error.rb +1 -1
- data/lib/graphql/invalid_null_error.rb +26 -17
- data/lib/graphql/language/block_string.rb +34 -18
- data/lib/graphql/language/cache.rb +13 -0
- data/lib/graphql/language/comment.rb +18 -0
- data/lib/graphql/language/definition_slice.rb +1 -1
- data/lib/graphql/language/document_from_schema_definition.rb +90 -61
- data/lib/graphql/language/lexer.rb +319 -193
- data/lib/graphql/language/nodes.rb +136 -77
- data/lib/graphql/language/parser.rb +807 -1985
- data/lib/graphql/language/printer.rb +324 -151
- data/lib/graphql/language/sanitized_printer.rb +21 -23
- data/lib/graphql/language/static_visitor.rb +171 -0
- data/lib/graphql/language/visitor.rb +23 -83
- data/lib/graphql/language.rb +71 -1
- data/lib/graphql/load_application_object_failed_error.rb +5 -1
- data/lib/graphql/pagination/array_connection.rb +6 -6
- data/lib/graphql/pagination/connection.rb +30 -1
- data/lib/graphql/pagination/connections.rb +32 -0
- data/lib/graphql/pagination/mongoid_relation_connection.rb +1 -2
- data/lib/graphql/query/context/scoped_context.rb +101 -0
- data/lib/graphql/query/context.rb +82 -144
- data/lib/graphql/query/null_context.rb +15 -18
- data/lib/graphql/query/partial.rb +179 -0
- data/lib/graphql/query/validation_pipeline.rb +4 -4
- data/lib/graphql/query/variable_validation_error.rb +1 -1
- data/lib/graphql/query/variables.rb +3 -3
- data/lib/graphql/query.rb +126 -81
- data/lib/graphql/railtie.rb +16 -6
- data/lib/graphql/rake_task.rb +3 -12
- data/lib/graphql/rubocop/graphql/base_cop.rb +1 -1
- data/lib/graphql/rubocop/graphql/field_type_in_block.rb +144 -0
- data/lib/graphql/rubocop/graphql/root_types_in_block.rb +38 -0
- data/lib/graphql/rubocop.rb +2 -0
- data/lib/graphql/schema/addition.rb +26 -13
- data/lib/graphql/schema/always_visible.rb +7 -2
- data/lib/graphql/schema/argument.rb +75 -9
- data/lib/graphql/schema/base_64_encoder.rb +3 -5
- data/lib/graphql/schema/build_from_definition.rb +123 -60
- data/lib/graphql/schema/directive/flagged.rb +4 -2
- data/lib/graphql/schema/directive/one_of.rb +12 -0
- data/lib/graphql/schema/directive/specified_by.rb +14 -0
- data/lib/graphql/schema/directive.rb +54 -2
- data/lib/graphql/schema/enum.rb +110 -27
- data/lib/graphql/schema/enum_value.rb +10 -2
- data/lib/graphql/schema/field/connection_extension.rb +15 -49
- data/lib/graphql/schema/field/scope_extension.rb +23 -7
- data/lib/graphql/schema/field.rb +245 -118
- data/lib/graphql/schema/field_extension.rb +34 -1
- data/lib/graphql/schema/has_single_input_argument.rb +160 -0
- data/lib/graphql/schema/input_object.rb +116 -60
- data/lib/graphql/schema/interface.rb +34 -16
- data/lib/graphql/schema/introspection_system.rb +8 -17
- data/lib/graphql/schema/late_bound_type.rb +4 -0
- data/lib/graphql/schema/list.rb +3 -3
- data/lib/graphql/schema/loader.rb +3 -4
- data/lib/graphql/schema/member/base_dsl_methods.rb +18 -2
- data/lib/graphql/schema/member/has_arguments.rb +132 -100
- data/lib/graphql/schema/member/has_authorization.rb +35 -0
- data/lib/graphql/schema/member/has_dataloader.rb +99 -0
- data/lib/graphql/schema/member/has_deprecation_reason.rb +15 -0
- data/lib/graphql/schema/member/has_directives.rb +4 -4
- data/lib/graphql/schema/member/has_fields.rb +115 -15
- data/lib/graphql/schema/member/has_interfaces.rb +26 -12
- data/lib/graphql/schema/member/has_unresolved_type_error.rb +5 -1
- data/lib/graphql/schema/member/has_validators.rb +1 -1
- data/lib/graphql/schema/member/relay_shortcuts.rb +1 -1
- data/lib/graphql/schema/member/scoped.rb +19 -0
- data/lib/graphql/schema/member/type_system_helpers.rb +17 -4
- data/lib/graphql/schema/member/validates_input.rb +3 -3
- data/lib/graphql/schema/member.rb +6 -0
- data/lib/graphql/schema/mutation.rb +7 -0
- data/lib/graphql/schema/object.rb +34 -8
- data/lib/graphql/schema/printer.rb +9 -7
- data/lib/graphql/schema/ractor_shareable.rb +79 -0
- data/lib/graphql/schema/relay_classic_mutation.rb +6 -129
- data/lib/graphql/schema/resolver.rb +90 -32
- data/lib/graphql/schema/scalar.rb +4 -9
- data/lib/graphql/schema/subscription.rb +63 -10
- data/lib/graphql/schema/timeout.rb +19 -2
- data/lib/graphql/schema/type_expression.rb +2 -2
- data/lib/graphql/schema/union.rb +2 -2
- data/lib/graphql/schema/unique_within_type.rb +1 -1
- data/lib/graphql/schema/validator/all_validator.rb +62 -0
- data/lib/graphql/schema/validator/required_validator.rb +92 -11
- data/lib/graphql/schema/validator.rb +3 -1
- data/lib/graphql/schema/visibility/migration.rb +188 -0
- data/lib/graphql/schema/visibility/profile.rb +445 -0
- data/lib/graphql/schema/visibility/visit.rb +190 -0
- data/lib/graphql/schema/visibility.rb +311 -0
- data/lib/graphql/schema/warden.rb +275 -103
- data/lib/graphql/schema.rb +950 -210
- data/lib/graphql/static_validation/all_rules.rb +3 -3
- data/lib/graphql/static_validation/base_visitor.rb +7 -6
- data/lib/graphql/static_validation/literal_validator.rb +6 -7
- data/lib/graphql/static_validation/rules/argument_literals_are_compatible.rb +1 -1
- data/lib/graphql/static_validation/rules/argument_names_are_unique.rb +1 -1
- data/lib/graphql/static_validation/rules/arguments_are_defined.rb +3 -2
- data/lib/graphql/static_validation/rules/directives_are_defined.rb +3 -3
- data/lib/graphql/static_validation/rules/directives_are_in_valid_locations.rb +2 -0
- data/lib/graphql/static_validation/rules/fields_are_defined_on_type.rb +12 -2
- data/lib/graphql/static_validation/rules/fields_have_appropriate_selections.rb +47 -13
- data/lib/graphql/static_validation/rules/fields_will_merge.rb +88 -25
- data/lib/graphql/static_validation/rules/fields_will_merge_error.rb +10 -2
- data/lib/graphql/static_validation/rules/fragment_spreads_are_possible.rb +3 -3
- data/lib/graphql/static_validation/rules/fragment_types_exist.rb +12 -2
- data/lib/graphql/static_validation/rules/fragments_are_on_composite_types.rb +1 -1
- data/lib/graphql/static_validation/rules/mutation_root_exists.rb +1 -1
- data/lib/graphql/static_validation/rules/no_definitions_are_present.rb +1 -1
- data/lib/graphql/static_validation/rules/not_single_subscription_error.rb +25 -0
- data/lib/graphql/static_validation/rules/query_root_exists.rb +1 -1
- data/lib/graphql/static_validation/rules/required_arguments_are_present.rb +5 -5
- data/lib/graphql/static_validation/rules/required_input_object_attributes_are_present.rb +5 -5
- data/lib/graphql/static_validation/rules/subscription_root_exists_and_single_subscription_selection.rb +26 -0
- data/lib/graphql/static_validation/rules/unique_directives_per_location.rb +7 -3
- data/lib/graphql/static_validation/rules/variable_default_values_are_correctly_typed.rb +18 -27
- data/lib/graphql/static_validation/rules/variable_names_are_unique.rb +1 -1
- data/lib/graphql/static_validation/rules/variable_usages_are_allowed.rb +2 -2
- data/lib/graphql/static_validation/rules/variables_are_input_types.rb +11 -2
- data/lib/graphql/static_validation/validation_context.rb +21 -5
- data/lib/graphql/static_validation/validator.rb +9 -1
- data/lib/graphql/static_validation.rb +0 -1
- data/lib/graphql/subscriptions/action_cable_subscriptions.rb +8 -5
- data/lib/graphql/subscriptions/broadcast_analyzer.rb +11 -5
- data/lib/graphql/subscriptions/default_subscription_resolve_extension.rb +12 -10
- data/lib/graphql/subscriptions/event.rb +21 -4
- data/lib/graphql/subscriptions/serialize.rb +3 -1
- data/lib/graphql/subscriptions.rb +21 -17
- data/lib/graphql/testing/helpers.rb +161 -0
- data/lib/graphql/testing/mock_action_cable.rb +111 -0
- data/lib/graphql/testing.rb +3 -0
- data/lib/graphql/tracing/active_support_notifications_trace.rb +14 -3
- data/lib/graphql/tracing/active_support_notifications_tracing.rb +1 -1
- data/lib/graphql/tracing/appoptics_trace.rb +7 -3
- data/lib/graphql/tracing/appoptics_tracing.rb +9 -2
- data/lib/graphql/tracing/appsignal_trace.rb +32 -59
- data/lib/graphql/tracing/appsignal_tracing.rb +2 -0
- data/lib/graphql/tracing/call_legacy_tracers.rb +66 -0
- data/lib/graphql/tracing/data_dog_trace.rb +46 -162
- data/lib/graphql/tracing/data_dog_tracing.rb +2 -0
- data/lib/graphql/tracing/detailed_trace/active_record_backend.rb +74 -0
- data/lib/graphql/tracing/detailed_trace/memory_backend.rb +60 -0
- data/lib/graphql/tracing/detailed_trace/redis_backend.rb +72 -0
- data/lib/graphql/tracing/detailed_trace.rb +156 -0
- data/lib/graphql/tracing/legacy_hooks_trace.rb +75 -0
- data/lib/graphql/tracing/legacy_trace.rb +4 -61
- data/lib/graphql/tracing/monitor_trace.rb +283 -0
- data/lib/graphql/tracing/new_relic_trace.rb +47 -54
- data/lib/graphql/tracing/new_relic_tracing.rb +2 -0
- data/lib/graphql/tracing/notifications_trace.rb +183 -37
- data/lib/graphql/tracing/notifications_tracing.rb +2 -0
- data/lib/graphql/tracing/null_trace.rb +9 -0
- data/lib/graphql/tracing/perfetto_trace/trace.proto +141 -0
- data/lib/graphql/tracing/perfetto_trace/trace_pb.rb +33 -0
- data/lib/graphql/tracing/perfetto_trace.rb +864 -0
- data/lib/graphql/tracing/platform_tracing.rb +3 -1
- data/lib/graphql/tracing/{prometheus_tracing → prometheus_trace}/graphql_collector.rb +5 -1
- data/lib/graphql/tracing/prometheus_trace.rb +73 -73
- data/lib/graphql/tracing/prometheus_tracing.rb +2 -0
- data/lib/graphql/tracing/scout_trace.rb +32 -58
- data/lib/graphql/tracing/scout_tracing.rb +2 -0
- data/lib/graphql/tracing/sentry_trace.rb +82 -0
- data/lib/graphql/tracing/statsd_trace.rb +33 -45
- data/lib/graphql/tracing/statsd_tracing.rb +2 -0
- data/lib/graphql/tracing/trace.rb +112 -1
- data/lib/graphql/tracing.rb +31 -28
- data/lib/graphql/type_kinds.rb +2 -1
- data/lib/graphql/types/iso_8601_duration.rb +77 -0
- data/lib/graphql/types/relay/connection_behaviors.rb +44 -2
- data/lib/graphql/types/relay/edge_behaviors.rb +18 -0
- data/lib/graphql/types/relay/has_node_field.rb +13 -8
- data/lib/graphql/types/relay/has_nodes_field.rb +13 -8
- data/lib/graphql/types/relay/node_behaviors.rb +13 -2
- data/lib/graphql/types/relay/page_info_behaviors.rb +4 -0
- data/lib/graphql/types.rb +18 -10
- data/lib/graphql/unauthorized_enum_value_error.rb +13 -0
- data/lib/graphql/unauthorized_error.rb +5 -1
- data/lib/graphql/version.rb +1 -1
- data/lib/graphql.rb +71 -54
- data/readme.md +12 -2
- metadata +233 -37
- data/lib/graphql/analysis/ast/analyzer.rb +0 -84
- data/lib/graphql/analysis/ast/field_usage.rb +0 -57
- data/lib/graphql/analysis/ast/max_query_complexity.rb +0 -22
- data/lib/graphql/analysis/ast/max_query_depth.rb +0 -22
- data/lib/graphql/analysis/ast/query_complexity.rb +0 -230
- data/lib/graphql/analysis/ast/query_depth.rb +0 -55
- data/lib/graphql/analysis/ast/visitor.rb +0 -276
- data/lib/graphql/analysis/ast.rb +0 -81
- data/lib/graphql/backtrace/inspect_result.rb +0 -50
- data/lib/graphql/backtrace/trace.rb +0 -96
- data/lib/graphql/backtrace/tracer.rb +0 -80
- data/lib/graphql/deprecation.rb +0 -9
- data/lib/graphql/filter.rb +0 -59
- data/lib/graphql/language/parser.y +0 -560
- data/lib/graphql/language/token.rb +0 -34
- data/lib/graphql/schema/base_64_bp.rb +0 -26
- data/lib/graphql/schema/invalid_type_error.rb +0 -7
- data/lib/graphql/schema/null_mask.rb +0 -11
- data/lib/graphql/static_validation/rules/subscription_root_exists.rb +0 -17
- data/lib/graphql/static_validation/type_stack.rb +0 -216
- data/lib/graphql/subscriptions/instrumentation.rb +0 -28
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
module GraphQL
|
|
3
3
|
module Language
|
|
4
4
|
class Printer
|
|
5
|
+
OMISSION = "... (truncated)"
|
|
6
|
+
|
|
7
|
+
class TruncatableBuffer
|
|
8
|
+
class TruncateSizeReached < StandardError; end
|
|
9
|
+
|
|
10
|
+
DEFAULT_INIT_CAPACITY = 500
|
|
11
|
+
|
|
12
|
+
def initialize(truncate_size: nil)
|
|
13
|
+
@out = String.new(capacity: truncate_size || DEFAULT_INIT_CAPACITY)
|
|
14
|
+
@truncate_size = truncate_size
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def append(other)
|
|
18
|
+
if @truncate_size && (@out.size + other.size) > @truncate_size
|
|
19
|
+
@out << other.slice(0, @truncate_size - @out.size)
|
|
20
|
+
raise(TruncateSizeReached, "Truncate size reached")
|
|
21
|
+
else
|
|
22
|
+
@out << other
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def to_string
|
|
27
|
+
@out
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
|
|
5
31
|
# Turn an arbitrary AST node back into a string.
|
|
6
32
|
#
|
|
7
33
|
# @example Turning a document into a query string
|
|
@@ -14,121 +40,183 @@ module GraphQL
|
|
|
14
40
|
#
|
|
15
41
|
# class MyPrinter < GraphQL::Language::Printer
|
|
16
42
|
# def print_argument(arg)
|
|
17
|
-
# "#{arg.name}: <HIDDEN>"
|
|
43
|
+
# print_string("#{arg.name}: <HIDDEN>")
|
|
18
44
|
# end
|
|
19
45
|
# end
|
|
20
46
|
#
|
|
21
47
|
# MyPrinter.new.print(document)
|
|
22
48
|
# # => "mutation { pay(creditCard: <HIDDEN>) { success } }"
|
|
23
49
|
#
|
|
24
|
-
#
|
|
50
|
+
# @param node [Nodes::AbstractNode]
|
|
25
51
|
# @param indent [String] Whitespace to add to the printed node
|
|
52
|
+
# @param truncate_size [Integer, nil] The size to truncate to.
|
|
26
53
|
# @return [String] Valid GraphQL for `node`
|
|
27
|
-
def print(node, indent: "")
|
|
54
|
+
def print(node, indent: "", truncate_size: nil)
|
|
55
|
+
truncate_size = truncate_size ? [truncate_size - OMISSION.size, 0].max : nil
|
|
56
|
+
@out = TruncatableBuffer.new(truncate_size: truncate_size)
|
|
28
57
|
print_node(node, indent: indent)
|
|
58
|
+
@out.to_string
|
|
59
|
+
rescue TruncatableBuffer::TruncateSizeReached
|
|
60
|
+
@out.to_string << OMISSION
|
|
29
61
|
end
|
|
30
62
|
|
|
31
63
|
protected
|
|
32
64
|
|
|
65
|
+
def print_string(str)
|
|
66
|
+
@out.append(str)
|
|
67
|
+
end
|
|
68
|
+
|
|
33
69
|
def print_document(document)
|
|
34
|
-
document.definitions.
|
|
70
|
+
document.definitions.each_with_index do |d, i|
|
|
71
|
+
print_node(d)
|
|
72
|
+
print_string("\n\n") if i < document.definitions.size - 1
|
|
73
|
+
end
|
|
35
74
|
end
|
|
36
75
|
|
|
37
76
|
def print_argument(argument)
|
|
38
|
-
|
|
77
|
+
print_string(argument.name)
|
|
78
|
+
print_string(": ")
|
|
79
|
+
print_node(argument.value)
|
|
39
80
|
end
|
|
40
81
|
|
|
41
|
-
def
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
82
|
+
def print_input_object(input_object)
|
|
83
|
+
print_string("{")
|
|
84
|
+
input_object.arguments.each_with_index do |a, i|
|
|
85
|
+
print_argument(a)
|
|
86
|
+
print_string(", ") if i < input_object.arguments.size - 1
|
|
46
87
|
end
|
|
88
|
+
print_string("}")
|
|
89
|
+
end
|
|
47
90
|
|
|
48
|
-
|
|
91
|
+
def print_directive(directive)
|
|
92
|
+
print_string("@")
|
|
93
|
+
print_string(directive.name)
|
|
94
|
+
|
|
95
|
+
if !directive.arguments.empty?
|
|
96
|
+
print_string("(")
|
|
97
|
+
directive.arguments.each_with_index do |a, i|
|
|
98
|
+
print_argument(a)
|
|
99
|
+
print_string(", ") if i < directive.arguments.size - 1
|
|
100
|
+
end
|
|
101
|
+
print_string(")")
|
|
102
|
+
end
|
|
49
103
|
end
|
|
50
104
|
|
|
51
105
|
def print_enum(enum)
|
|
52
|
-
|
|
106
|
+
print_string(enum.name)
|
|
53
107
|
end
|
|
54
108
|
|
|
55
109
|
def print_null_value
|
|
56
|
-
"null"
|
|
110
|
+
print_string("null")
|
|
57
111
|
end
|
|
58
112
|
|
|
59
113
|
def print_field(field, indent: "")
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
114
|
+
print_string(indent)
|
|
115
|
+
if field.alias
|
|
116
|
+
print_string(field.alias)
|
|
117
|
+
print_string(": ")
|
|
118
|
+
end
|
|
119
|
+
print_string(field.name)
|
|
120
|
+
if !field.arguments.empty?
|
|
121
|
+
print_string("(")
|
|
122
|
+
field.arguments.each_with_index do |a, i|
|
|
123
|
+
print_argument(a)
|
|
124
|
+
print_string(", ") if i < field.arguments.size - 1
|
|
125
|
+
end
|
|
126
|
+
print_string(")")
|
|
127
|
+
end
|
|
128
|
+
print_directives(field.directives)
|
|
129
|
+
print_selections(field.selections, indent: indent)
|
|
67
130
|
end
|
|
68
131
|
|
|
69
132
|
def print_fragment_definition(fragment_def, indent: "")
|
|
70
|
-
|
|
133
|
+
print_string(indent)
|
|
134
|
+
print_string("fragment")
|
|
135
|
+
if fragment_def.name
|
|
136
|
+
print_string(" ")
|
|
137
|
+
print_string(fragment_def.name)
|
|
138
|
+
end
|
|
139
|
+
|
|
71
140
|
if fragment_def.type
|
|
72
|
-
|
|
141
|
+
print_string(" on ")
|
|
142
|
+
print_node(fragment_def.type)
|
|
73
143
|
end
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
out
|
|
144
|
+
print_directives(fragment_def.directives)
|
|
145
|
+
print_selections(fragment_def.selections, indent: indent)
|
|
77
146
|
end
|
|
78
147
|
|
|
79
148
|
def print_fragment_spread(fragment_spread, indent: "")
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
149
|
+
print_string(indent)
|
|
150
|
+
print_string("...")
|
|
151
|
+
print_string(fragment_spread.name)
|
|
152
|
+
print_directives(fragment_spread.directives)
|
|
83
153
|
end
|
|
84
154
|
|
|
85
155
|
def print_inline_fragment(inline_fragment, indent: "")
|
|
86
|
-
|
|
156
|
+
print_string(indent)
|
|
157
|
+
print_string("...")
|
|
87
158
|
if inline_fragment.type
|
|
88
|
-
|
|
159
|
+
print_string(" on ")
|
|
160
|
+
print_node(inline_fragment.type)
|
|
89
161
|
end
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
out
|
|
93
|
-
end
|
|
94
|
-
|
|
95
|
-
def print_input_object(input_object)
|
|
96
|
-
"{#{input_object.arguments.map { |a| print_argument(a) }.join(", ")}}"
|
|
162
|
+
print_directives(inline_fragment.directives)
|
|
163
|
+
print_selections(inline_fragment.selections, indent: indent)
|
|
97
164
|
end
|
|
98
165
|
|
|
99
166
|
def print_list_type(list_type)
|
|
100
|
-
"[
|
|
167
|
+
print_string("[")
|
|
168
|
+
print_node(list_type.of_type)
|
|
169
|
+
print_string("]")
|
|
101
170
|
end
|
|
102
171
|
|
|
103
172
|
def print_non_null_type(non_null_type)
|
|
104
|
-
|
|
173
|
+
print_node(non_null_type.of_type)
|
|
174
|
+
print_string("!")
|
|
105
175
|
end
|
|
106
176
|
|
|
107
177
|
def print_operation_definition(operation_definition, indent: "")
|
|
108
|
-
|
|
109
|
-
|
|
178
|
+
print_string(indent)
|
|
179
|
+
print_string(operation_definition.operation_type)
|
|
180
|
+
if operation_definition.name
|
|
181
|
+
print_string(" ")
|
|
182
|
+
print_string(operation_definition.name)
|
|
183
|
+
end
|
|
110
184
|
|
|
111
|
-
if operation_definition.variables.
|
|
112
|
-
|
|
185
|
+
if !operation_definition.variables.empty?
|
|
186
|
+
print_string("(")
|
|
187
|
+
operation_definition.variables.each_with_index do |v, i|
|
|
188
|
+
print_variable_definition(v)
|
|
189
|
+
print_string(", ") if i < operation_definition.variables.size - 1
|
|
190
|
+
end
|
|
191
|
+
print_string(")")
|
|
113
192
|
end
|
|
114
193
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
out
|
|
194
|
+
print_directives(operation_definition.directives)
|
|
195
|
+
print_selections(operation_definition.selections, indent: indent)
|
|
118
196
|
end
|
|
119
197
|
|
|
120
198
|
def print_type_name(type_name)
|
|
121
|
-
|
|
199
|
+
print_string(type_name.name)
|
|
122
200
|
end
|
|
123
201
|
|
|
124
202
|
def print_variable_definition(variable_definition)
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
203
|
+
print_string("$")
|
|
204
|
+
print_string(variable_definition.name)
|
|
205
|
+
print_string(": ")
|
|
206
|
+
print_node(variable_definition.type)
|
|
207
|
+
unless variable_definition.default_value.nil?
|
|
208
|
+
print_string(" = ")
|
|
209
|
+
print_node(variable_definition.default_value)
|
|
210
|
+
end
|
|
211
|
+
variable_definition.directives.each do |dir|
|
|
212
|
+
print_string(" ")
|
|
213
|
+
print_directive(dir)
|
|
214
|
+
end
|
|
128
215
|
end
|
|
129
216
|
|
|
130
217
|
def print_variable_identifier(variable_identifier)
|
|
131
|
-
"
|
|
218
|
+
print_string("$")
|
|
219
|
+
print_string(variable_identifier.name)
|
|
132
220
|
end
|
|
133
221
|
|
|
134
222
|
def print_schema_definition(schema, extension: false)
|
|
@@ -140,175 +228,252 @@ module GraphQL
|
|
|
140
228
|
return
|
|
141
229
|
end
|
|
142
230
|
|
|
143
|
-
|
|
144
|
-
|
|
231
|
+
extension ? print_string("extend schema") : print_string("schema")
|
|
232
|
+
|
|
233
|
+
if !schema.directives.empty?
|
|
145
234
|
schema.directives.each do |dir|
|
|
146
|
-
|
|
147
|
-
|
|
235
|
+
print_string("\n ")
|
|
236
|
+
print_node(dir)
|
|
148
237
|
end
|
|
238
|
+
|
|
149
239
|
if !has_conventional_names
|
|
150
|
-
|
|
240
|
+
print_string("\n")
|
|
151
241
|
end
|
|
152
242
|
end
|
|
153
243
|
|
|
154
244
|
if !has_conventional_names
|
|
155
245
|
if schema.directives.empty?
|
|
156
|
-
|
|
246
|
+
print_string(" ")
|
|
157
247
|
end
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
248
|
+
print_string("{\n")
|
|
249
|
+
print_string(" query: #{schema.query}\n") if schema.query
|
|
250
|
+
print_string(" mutation: #{schema.mutation}\n") if schema.mutation
|
|
251
|
+
print_string(" subscription: #{schema.subscription}\n") if schema.subscription
|
|
252
|
+
print_string("}")
|
|
163
253
|
end
|
|
164
|
-
out
|
|
165
254
|
end
|
|
166
255
|
|
|
256
|
+
|
|
167
257
|
def print_scalar_type_definition(scalar_type, extension: false)
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
258
|
+
extension ? print_string("extend ") : print_description_and_comment(scalar_type)
|
|
259
|
+
print_string("scalar ")
|
|
260
|
+
print_string(scalar_type.name)
|
|
261
|
+
print_directives(scalar_type.directives)
|
|
171
262
|
end
|
|
172
263
|
|
|
173
264
|
def print_object_type_definition(object_type, extension: false)
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
265
|
+
extension ? print_string("extend ") : print_description_and_comment(object_type)
|
|
266
|
+
print_string("type ")
|
|
267
|
+
print_string(object_type.name)
|
|
268
|
+
print_implements(object_type) unless object_type.interfaces.empty?
|
|
269
|
+
print_directives(object_type.directives)
|
|
270
|
+
print_field_definitions(object_type.fields)
|
|
179
271
|
end
|
|
180
272
|
|
|
181
273
|
def print_implements(type)
|
|
182
|
-
" implements
|
|
274
|
+
print_string(" implements ")
|
|
275
|
+
i = 0
|
|
276
|
+
type.interfaces.each do |int|
|
|
277
|
+
if i > 0
|
|
278
|
+
print_string(" & ")
|
|
279
|
+
end
|
|
280
|
+
print_string(int.name)
|
|
281
|
+
i += 1
|
|
282
|
+
end
|
|
183
283
|
end
|
|
184
284
|
|
|
185
285
|
def print_input_value_definition(input_value)
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
286
|
+
print_string(input_value.name)
|
|
287
|
+
print_string(": ")
|
|
288
|
+
print_node(input_value.type)
|
|
289
|
+
unless input_value.default_value.nil?
|
|
290
|
+
print_string(" = ")
|
|
291
|
+
print_node(input_value.default_value)
|
|
292
|
+
end
|
|
293
|
+
print_directives(input_value.directives)
|
|
189
294
|
end
|
|
190
295
|
|
|
191
296
|
def print_arguments(arguments, indent: "")
|
|
192
|
-
if arguments.all?{ |arg| !arg.description }
|
|
193
|
-
|
|
297
|
+
if arguments.all? { |arg| !arg.description && !arg.comment }
|
|
298
|
+
print_string("(")
|
|
299
|
+
arguments.each_with_index do |arg, i|
|
|
300
|
+
print_input_value_definition(arg)
|
|
301
|
+
print_string(", ") if i < arguments.size - 1
|
|
302
|
+
end
|
|
303
|
+
print_string(")")
|
|
304
|
+
return
|
|
194
305
|
end
|
|
195
306
|
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
307
|
+
print_string("(\n")
|
|
308
|
+
arguments.each_with_index do |arg, i|
|
|
309
|
+
print_comment(arg, indent: " " + indent, first_in_block: i == 0)
|
|
310
|
+
print_description(arg, indent: " " + indent, first_in_block: i == 0)
|
|
311
|
+
print_string(" ")
|
|
312
|
+
print_string(indent)
|
|
313
|
+
print_input_value_definition(arg)
|
|
314
|
+
print_string("\n") if i < arguments.size - 1
|
|
315
|
+
end
|
|
316
|
+
print_string("\n")
|
|
317
|
+
print_string(indent)
|
|
318
|
+
print_string(")")
|
|
202
319
|
end
|
|
203
320
|
|
|
204
321
|
def print_field_definition(field)
|
|
205
|
-
|
|
322
|
+
print_string(field.name)
|
|
206
323
|
unless field.arguments.empty?
|
|
207
|
-
|
|
324
|
+
print_arguments(field.arguments, indent: " ")
|
|
208
325
|
end
|
|
209
|
-
|
|
210
|
-
|
|
326
|
+
print_string(": ")
|
|
327
|
+
print_node(field.type)
|
|
328
|
+
print_directives(field.directives)
|
|
211
329
|
end
|
|
212
330
|
|
|
213
331
|
def print_interface_type_definition(interface_type, extension: false)
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
332
|
+
extension ? print_string("extend ") : print_description_and_comment(interface_type)
|
|
333
|
+
print_string("interface ")
|
|
334
|
+
print_string(interface_type.name)
|
|
335
|
+
print_implements(interface_type) if !interface_type.interfaces.empty?
|
|
336
|
+
print_directives(interface_type.directives)
|
|
337
|
+
print_field_definitions(interface_type.fields)
|
|
219
338
|
end
|
|
220
339
|
|
|
221
340
|
def print_union_type_definition(union_type, extension: false)
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
341
|
+
extension ? print_string("extend ") : print_description_and_comment(union_type)
|
|
342
|
+
print_string("union ")
|
|
343
|
+
print_string(union_type.name)
|
|
344
|
+
print_directives(union_type.directives)
|
|
345
|
+
if !union_type.types.empty?
|
|
346
|
+
print_string(" = ")
|
|
347
|
+
i = 0
|
|
348
|
+
union_type.types.each do |t|
|
|
349
|
+
if i > 0
|
|
350
|
+
print_string(" | ")
|
|
351
|
+
end
|
|
352
|
+
print_string(t.name)
|
|
353
|
+
i += 1
|
|
354
|
+
end
|
|
355
|
+
end
|
|
226
356
|
end
|
|
227
357
|
|
|
228
358
|
def print_enum_type_definition(enum_type, extension: false)
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
enum_type.
|
|
232
|
-
|
|
233
|
-
|
|
359
|
+
extension ? print_string("extend ") : print_description_and_comment(enum_type)
|
|
360
|
+
print_string("enum ")
|
|
361
|
+
print_string(enum_type.name)
|
|
362
|
+
print_directives(enum_type.directives)
|
|
363
|
+
if !enum_type.values.empty?
|
|
364
|
+
print_string(" {\n")
|
|
365
|
+
enum_type.values.each.with_index do |value, i|
|
|
366
|
+
print_description(value, indent: " ", first_in_block: i == 0)
|
|
367
|
+
print_comment(value, indent: " ", first_in_block: i == 0)
|
|
368
|
+
print_enum_value_definition(value)
|
|
369
|
+
end
|
|
370
|
+
print_string("}")
|
|
234
371
|
end
|
|
235
|
-
out << "}"
|
|
236
372
|
end
|
|
237
373
|
|
|
238
374
|
def print_enum_value_definition(enum_value)
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
375
|
+
print_string(" ")
|
|
376
|
+
print_string(enum_value.name)
|
|
377
|
+
print_directives(enum_value.directives)
|
|
378
|
+
print_string("\n")
|
|
242
379
|
end
|
|
243
380
|
|
|
244
381
|
def print_input_object_type_definition(input_object_type, extension: false)
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
382
|
+
extension ? print_string("extend ") : print_description_and_comment(input_object_type)
|
|
383
|
+
print_string("input ")
|
|
384
|
+
print_string(input_object_type.name)
|
|
385
|
+
print_directives(input_object_type.directives)
|
|
248
386
|
if !input_object_type.fields.empty?
|
|
249
|
-
|
|
387
|
+
print_string(" {\n")
|
|
250
388
|
input_object_type.fields.each.with_index do |field, i|
|
|
251
|
-
|
|
252
|
-
|
|
389
|
+
print_description(field, indent: " ", first_in_block: i == 0)
|
|
390
|
+
print_comment(field, indent: " ", first_in_block: i == 0)
|
|
391
|
+
print_string(" ")
|
|
392
|
+
print_input_value_definition(field)
|
|
393
|
+
print_string("\n")
|
|
253
394
|
end
|
|
254
|
-
|
|
395
|
+
print_string("}")
|
|
255
396
|
end
|
|
256
|
-
out
|
|
257
397
|
end
|
|
258
398
|
|
|
259
399
|
def print_directive_definition(directive)
|
|
260
|
-
|
|
261
|
-
|
|
400
|
+
print_description(directive)
|
|
401
|
+
print_string("directive @")
|
|
402
|
+
print_string(directive.name)
|
|
262
403
|
|
|
263
|
-
if directive.arguments.
|
|
264
|
-
|
|
404
|
+
if !directive.arguments.empty?
|
|
405
|
+
print_arguments(directive.arguments)
|
|
265
406
|
end
|
|
266
407
|
|
|
267
408
|
if directive.repeatable
|
|
268
|
-
|
|
409
|
+
print_string(" repeatable")
|
|
269
410
|
end
|
|
270
411
|
|
|
271
|
-
|
|
412
|
+
print_string(" on ")
|
|
413
|
+
i = 0
|
|
414
|
+
directive.locations.each do |loc|
|
|
415
|
+
if i > 0
|
|
416
|
+
print_string(" | ")
|
|
417
|
+
end
|
|
418
|
+
print_string(loc.name)
|
|
419
|
+
i += 1
|
|
420
|
+
end
|
|
272
421
|
end
|
|
273
422
|
|
|
274
423
|
def print_description(node, indent: "", first_in_block: true)
|
|
275
|
-
return
|
|
424
|
+
return unless node.description
|
|
276
425
|
|
|
277
|
-
|
|
278
|
-
|
|
426
|
+
print_string("\n") if indent != "" && !first_in_block
|
|
427
|
+
print_string(GraphQL::Language::BlockString.print(node.description, indent: indent))
|
|
428
|
+
end
|
|
429
|
+
|
|
430
|
+
def print_comment(node, indent: "", first_in_block: true)
|
|
431
|
+
return unless node.comment
|
|
432
|
+
|
|
433
|
+
print_string("\n") if indent != "" && !first_in_block
|
|
434
|
+
print_string(GraphQL::Language::Comment.print(node.comment, indent: indent))
|
|
435
|
+
end
|
|
436
|
+
|
|
437
|
+
def print_description_and_comment(node)
|
|
438
|
+
print_description(node)
|
|
439
|
+
print_comment(node)
|
|
279
440
|
end
|
|
280
441
|
|
|
281
442
|
def print_field_definitions(fields)
|
|
282
|
-
if fields.empty?
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
443
|
+
return if fields.empty?
|
|
444
|
+
|
|
445
|
+
print_string(" {\n")
|
|
446
|
+
i = 0
|
|
447
|
+
fields.each do |field|
|
|
448
|
+
print_description(field, indent: " ", first_in_block: i == 0)
|
|
449
|
+
print_comment(field, indent: " ", first_in_block: i == 0)
|
|
450
|
+
print_string(" ")
|
|
451
|
+
print_field_definition(field)
|
|
452
|
+
print_string("\n")
|
|
453
|
+
i += 1
|
|
291
454
|
end
|
|
455
|
+
print_string("}")
|
|
292
456
|
end
|
|
293
457
|
|
|
294
458
|
def print_directives(directives)
|
|
295
|
-
if directives.
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
""
|
|
459
|
+
return if directives.empty?
|
|
460
|
+
|
|
461
|
+
directives.each do |d|
|
|
462
|
+
print_string(" ")
|
|
463
|
+
print_directive(d)
|
|
299
464
|
end
|
|
300
465
|
end
|
|
301
466
|
|
|
302
467
|
def print_selections(selections, indent: "")
|
|
303
|
-
if selections.
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
else
|
|
310
|
-
""
|
|
468
|
+
return if selections.empty?
|
|
469
|
+
|
|
470
|
+
print_string(" {\n")
|
|
471
|
+
selections.each do |selection|
|
|
472
|
+
print_node(selection, indent: indent + " ")
|
|
473
|
+
print_string("\n")
|
|
311
474
|
end
|
|
475
|
+
print_string(indent)
|
|
476
|
+
print_string("}")
|
|
312
477
|
end
|
|
313
478
|
|
|
314
479
|
def print_node(node, indent: "")
|
|
@@ -382,19 +547,27 @@ module GraphQL
|
|
|
382
547
|
when Nodes::DirectiveDefinition
|
|
383
548
|
print_directive_definition(node)
|
|
384
549
|
when FalseClass, Float, Integer, NilClass, String, TrueClass, Symbol
|
|
385
|
-
GraphQL::Language.serialize(node)
|
|
550
|
+
print_string(GraphQL::Language.serialize(node))
|
|
386
551
|
when Array
|
|
387
|
-
"[
|
|
552
|
+
print_string("[")
|
|
553
|
+
node.each_with_index do |v, i|
|
|
554
|
+
print_node(v)
|
|
555
|
+
print_string(", ") if i < node.length - 1
|
|
556
|
+
end
|
|
557
|
+
print_string("]")
|
|
388
558
|
when Hash
|
|
389
|
-
"{
|
|
559
|
+
print_string("{")
|
|
560
|
+
node.each_with_index do |(k, v), i|
|
|
561
|
+
print_string(k)
|
|
562
|
+
print_string(": ")
|
|
563
|
+
print_node(v)
|
|
564
|
+
print_string(", ") if i < node.length - 1
|
|
565
|
+
end
|
|
566
|
+
print_string("}")
|
|
390
567
|
else
|
|
391
|
-
GraphQL::Language.serialize(node.to_s)
|
|
568
|
+
print_string(GraphQL::Language.serialize(node.to_s))
|
|
392
569
|
end
|
|
393
570
|
end
|
|
394
|
-
|
|
395
|
-
private
|
|
396
|
-
|
|
397
|
-
attr_reader :node
|
|
398
571
|
end
|
|
399
572
|
end
|
|
400
573
|
end
|