graphql 1.12.12 → 2.4.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/generators/graphql/core.rb +3 -8
- data/lib/generators/graphql/enum_generator.rb +4 -10
- data/lib/generators/graphql/field_extractor.rb +31 -0
- data/lib/generators/graphql/input_generator.rb +50 -0
- data/lib/generators/graphql/install/mutation_root_generator.rb +34 -0
- data/lib/generators/graphql/{templates → install/templates}/base_mutation.erb +2 -0
- data/lib/generators/graphql/{templates → install/templates}/mutation_type.erb +2 -0
- data/lib/generators/graphql/install_generator.rb +60 -4
- data/lib/generators/graphql/interface_generator.rb +7 -7
- data/lib/generators/graphql/mutation_create_generator.rb +22 -0
- data/lib/generators/graphql/mutation_delete_generator.rb +22 -0
- data/lib/generators/graphql/mutation_generator.rb +5 -30
- data/lib/generators/graphql/mutation_update_generator.rb +22 -0
- data/lib/generators/graphql/object_generator.rb +10 -38
- data/lib/generators/graphql/orm_mutations_base.rb +40 -0
- data/lib/generators/graphql/relay.rb +23 -12
- data/lib/generators/graphql/scalar_generator.rb +4 -2
- 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/enum.erb +5 -1
- data/lib/generators/graphql/templates/graphql_controller.erb +2 -0
- data/lib/generators/graphql/templates/input.erb +9 -0
- data/lib/generators/graphql/templates/interface.erb +4 -2
- data/lib/generators/graphql/templates/loader.erb +2 -0
- data/lib/generators/graphql/templates/mutation.erb +3 -1
- data/lib/generators/graphql/templates/mutation_create.erb +20 -0
- data/lib/generators/graphql/templates/mutation_delete.erb +20 -0
- data/lib/generators/graphql/templates/mutation_update.erb +21 -0
- data/lib/generators/graphql/templates/node_type.erb +2 -0
- data/lib/generators/graphql/templates/object.erb +4 -2
- data/lib/generators/graphql/templates/query_type.erb +2 -0
- data/lib/generators/graphql/templates/scalar.erb +3 -1
- data/lib/generators/graphql/templates/schema.erb +22 -2
- data/lib/generators/graphql/templates/union.erb +4 -2
- data/lib/generators/graphql/type_generator.rb +46 -10
- data/lib/generators/graphql/union_generator.rb +5 -5
- data/lib/graphql/analysis/analyzer.rb +89 -0
- data/lib/graphql/analysis/field_usage.rb +65 -28
- data/lib/graphql/analysis/max_query_complexity.rb +11 -17
- data/lib/graphql/analysis/max_query_depth.rb +13 -19
- data/lib/graphql/analysis/query_complexity.rb +156 -61
- data/lib/graphql/analysis/query_depth.rb +38 -23
- data/lib/graphql/analysis/visitor.rb +283 -0
- data/lib/graphql/analysis.rb +90 -6
- data/lib/graphql/autoload.rb +38 -0
- data/lib/graphql/backtrace/inspect_result.rb +0 -12
- data/lib/graphql/backtrace/table.rb +4 -22
- data/lib/graphql/backtrace/trace.rb +93 -0
- data/lib/graphql/backtrace/tracer.rb +8 -6
- data/lib/graphql/backtrace.rb +3 -8
- data/lib/graphql/coercion_error.rb +1 -9
- data/lib/graphql/current.rb +52 -0
- data/lib/graphql/dataloader/async_dataloader.rb +89 -0
- data/lib/graphql/dataloader/null_dataloader.rb +4 -2
- data/lib/graphql/dataloader/request.rb +5 -0
- data/lib/graphql/dataloader/source.rb +125 -33
- data/lib/graphql/dataloader.rb +193 -143
- data/lib/graphql/date_encoding_error.rb +16 -0
- data/lib/graphql/dig.rb +1 -1
- data/lib/graphql/duration_encoding_error.rb +16 -0
- data/lib/graphql/execution/errors.rb +12 -81
- data/lib/graphql/execution/interpreter/argument_value.rb +5 -1
- data/lib/graphql/execution/interpreter/arguments.rb +2 -2
- data/lib/graphql/execution/interpreter/arguments_cache.rb +33 -36
- data/lib/graphql/execution/interpreter/resolve.rb +38 -4
- data/lib/graphql/execution/interpreter/runtime/graphql_result.rb +175 -0
- data/lib/graphql/execution/interpreter/runtime.rb +447 -403
- data/lib/graphql/execution/interpreter.rb +126 -80
- data/lib/graphql/execution/lazy.rb +11 -21
- data/lib/graphql/execution/lookahead.rb +133 -55
- data/lib/graphql/execution/multiplex.rb +4 -172
- data/lib/graphql/execution.rb +11 -4
- data/lib/graphql/integer_encoding_error.rb +18 -2
- data/lib/graphql/introspection/directive_location_enum.rb +2 -2
- data/lib/graphql/introspection/directive_type.rb +6 -4
- data/lib/graphql/introspection/dynamic_fields.rb +3 -8
- data/lib/graphql/introspection/entry_points.rb +11 -18
- data/lib/graphql/introspection/enum_value_type.rb +2 -2
- data/lib/graphql/introspection/field_type.rb +4 -4
- data/lib/graphql/introspection/input_value_type.rb +10 -4
- data/lib/graphql/introspection/schema_type.rb +17 -15
- data/lib/graphql/introspection/type_type.rb +29 -16
- data/lib/graphql/introspection.rb +6 -2
- data/lib/graphql/invalid_null_error.rb +1 -1
- data/lib/graphql/language/block_string.rb +37 -25
- 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 +122 -81
- data/lib/graphql/language/lexer.rb +364 -1467
- data/lib/graphql/language/nodes.rb +197 -106
- data/lib/graphql/language/parser.rb +799 -1920
- data/lib/graphql/language/printer.rb +372 -160
- data/lib/graphql/language/sanitized_printer.rb +25 -27
- data/lib/graphql/language/static_visitor.rb +167 -0
- data/lib/graphql/language/visitor.rb +188 -141
- data/lib/graphql/language.rb +62 -1
- data/lib/graphql/load_application_object_failed_error.rb +5 -1
- data/lib/graphql/name_validator.rb +0 -4
- data/lib/graphql/pagination/active_record_relation_connection.rb +37 -8
- data/lib/graphql/pagination/array_connection.rb +8 -6
- data/lib/graphql/pagination/connection.rb +61 -7
- data/lib/graphql/pagination/connections.rb +22 -23
- data/lib/graphql/pagination/mongoid_relation_connection.rb +1 -2
- data/lib/graphql/pagination/relation_connection.rb +60 -28
- data/lib/graphql/query/context/scoped_context.rb +101 -0
- data/lib/graphql/query/context.rb +146 -222
- data/lib/graphql/query/input_validation_result.rb +10 -1
- data/lib/graphql/query/null_context.rb +15 -32
- data/lib/graphql/query/validation_pipeline.rb +15 -39
- data/lib/graphql/query/variable_validation_error.rb +3 -3
- data/lib/graphql/query/variables.rb +35 -17
- data/lib/graphql/query.rb +149 -82
- data/lib/graphql/railtie.rb +15 -109
- data/lib/graphql/rake_task/validate.rb +1 -1
- data/lib/graphql/rake_task.rb +30 -11
- data/lib/graphql/relay/range_add.rb +9 -16
- data/lib/graphql/relay.rb +0 -15
- data/lib/graphql/rubocop/graphql/base_cop.rb +36 -0
- data/lib/graphql/rubocop/graphql/default_null_true.rb +43 -0
- data/lib/graphql/rubocop/graphql/default_required_true.rb +43 -0
- 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 +6 -0
- data/lib/graphql/schema/addition.rb +98 -54
- data/lib/graphql/schema/always_visible.rb +14 -0
- data/lib/graphql/schema/argument.rb +179 -82
- data/lib/graphql/schema/base_64_encoder.rb +3 -5
- data/lib/graphql/schema/build_from_definition.rb +77 -39
- data/lib/graphql/schema/directive/feature.rb +1 -1
- data/lib/graphql/schema/directive/flagged.rb +4 -4
- data/lib/graphql/schema/directive/include.rb +1 -1
- data/lib/graphql/schema/directive/one_of.rb +24 -0
- data/lib/graphql/schema/directive/skip.rb +1 -1
- data/lib/graphql/schema/directive/specified_by.rb +14 -0
- data/lib/graphql/schema/directive/transform.rb +2 -2
- data/lib/graphql/schema/directive.rb +36 -22
- data/lib/graphql/schema/enum.rb +158 -63
- data/lib/graphql/schema/enum_value.rb +12 -21
- data/lib/graphql/schema/field/connection_extension.rb +7 -17
- data/lib/graphql/schema/field/scope_extension.rb +8 -1
- data/lib/graphql/schema/field.rb +521 -359
- data/lib/graphql/schema/field_extension.rb +86 -2
- data/lib/graphql/schema/find_inherited_value.rb +3 -7
- data/lib/graphql/schema/finder.rb +5 -5
- data/lib/graphql/schema/has_single_input_argument.rb +160 -0
- data/lib/graphql/schema/input_object.rb +148 -99
- data/lib/graphql/schema/interface.rb +41 -64
- data/lib/graphql/schema/introspection_system.rb +12 -26
- data/lib/graphql/schema/late_bound_type.rb +12 -2
- data/lib/graphql/schema/list.rb +18 -7
- data/lib/graphql/schema/loader.rb +6 -5
- data/lib/graphql/schema/member/base_dsl_methods.rb +32 -18
- data/lib/graphql/schema/member/build_type.rb +16 -13
- data/lib/graphql/schema/member/has_arguments.rb +270 -86
- data/lib/graphql/schema/member/has_ast_node.rb +12 -0
- data/lib/graphql/schema/member/has_deprecation_reason.rb +3 -4
- data/lib/graphql/schema/member/has_directives.rb +81 -61
- data/lib/graphql/schema/member/has_fields.rb +169 -31
- data/lib/graphql/schema/member/has_interfaces.rb +143 -0
- data/lib/graphql/schema/member/has_unresolved_type_error.rb +5 -1
- data/lib/graphql/schema/member/has_validators.rb +32 -6
- data/lib/graphql/schema/member/relay_shortcuts.rb +47 -2
- data/lib/graphql/schema/member/scoped.rb +19 -0
- data/lib/graphql/schema/member/type_system_helpers.rb +16 -0
- data/lib/graphql/schema/member/validates_input.rb +6 -6
- data/lib/graphql/schema/member.rb +1 -6
- data/lib/graphql/schema/mutation.rb +7 -9
- data/lib/graphql/schema/non_null.rb +7 -7
- data/lib/graphql/schema/object.rb +38 -119
- data/lib/graphql/schema/printer.rb +24 -25
- data/lib/graphql/schema/relay_classic_mutation.rb +13 -91
- data/lib/graphql/schema/resolver/has_payload_type.rb +46 -11
- data/lib/graphql/schema/resolver.rb +118 -115
- data/lib/graphql/schema/scalar.rb +20 -21
- data/lib/graphql/schema/subscription.rb +95 -21
- data/lib/graphql/schema/timeout.rb +25 -29
- data/lib/graphql/schema/type_expression.rb +2 -2
- data/lib/graphql/schema/type_membership.rb +21 -4
- data/lib/graphql/schema/union.rb +16 -16
- 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/allow_blank_validator.rb +29 -0
- data/lib/graphql/schema/validator/allow_null_validator.rb +26 -0
- data/lib/graphql/schema/validator/exclusion_validator.rb +3 -1
- data/lib/graphql/schema/validator/format_validator.rb +4 -5
- data/lib/graphql/schema/validator/inclusion_validator.rb +3 -1
- data/lib/graphql/schema/validator/length_validator.rb +5 -3
- data/lib/graphql/schema/validator/numericality_validator.rb +13 -2
- data/lib/graphql/schema/validator/required_validator.rb +56 -18
- data/lib/graphql/schema/validator.rb +38 -28
- data/lib/graphql/schema/visibility/migration.rb +188 -0
- data/lib/graphql/schema/visibility/profile.rb +359 -0
- data/lib/graphql/schema/visibility/visit.rb +190 -0
- data/lib/graphql/schema/visibility.rb +294 -0
- data/lib/graphql/schema/warden.rb +423 -134
- data/lib/graphql/schema/wrapper.rb +0 -5
- data/lib/graphql/schema.rb +1015 -1057
- data/lib/graphql/static_validation/all_rules.rb +3 -1
- data/lib/graphql/static_validation/base_visitor.rb +15 -28
- data/lib/graphql/static_validation/definition_dependencies.rb +7 -2
- data/lib/graphql/static_validation/error.rb +3 -1
- data/lib/graphql/static_validation/literal_validator.rb +24 -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 +4 -3
- data/lib/graphql/static_validation/rules/directives_are_defined.rb +13 -7
- data/lib/graphql/static_validation/rules/directives_are_in_valid_locations.rb +15 -13
- 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 +13 -5
- data/lib/graphql/static_validation/rules/fields_will_merge.rb +62 -35
- data/lib/graphql/static_validation/rules/fields_will_merge_error.rb +25 -4
- 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_finite.rb +2 -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/one_of_input_objects_are_valid.rb +66 -0
- data/lib/graphql/static_validation/rules/one_of_input_objects_are_valid_error.rb +29 -0
- data/lib/graphql/static_validation/rules/query_root_exists.rb +17 -0
- data/lib/graphql/static_validation/rules/query_root_exists_error.rb +26 -0
- data/lib/graphql/static_validation/rules/required_arguments_are_present.rb +7 -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.rb +1 -1
- data/lib/graphql/static_validation/rules/unique_directives_per_location.rb +14 -8
- 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 +14 -8
- data/lib/graphql/static_validation/rules/variables_are_input_types.rb +11 -2
- data/lib/graphql/static_validation/validation_context.rb +32 -6
- data/lib/graphql/static_validation/validator.rb +11 -27
- data/lib/graphql/static_validation.rb +0 -3
- data/lib/graphql/string_encoding_error.rb +13 -3
- data/lib/graphql/subscriptions/action_cable_subscriptions.rb +49 -11
- data/lib/graphql/subscriptions/broadcast_analyzer.rb +11 -5
- data/lib/graphql/subscriptions/default_subscription_resolve_extension.rb +40 -1
- data/lib/graphql/subscriptions/event.rb +87 -38
- data/lib/graphql/subscriptions/serialize.rb +27 -3
- data/lib/graphql/subscriptions.rb +63 -49
- data/lib/graphql/testing/helpers.rb +155 -0
- data/lib/graphql/testing.rb +2 -0
- data/lib/graphql/tracing/active_support_notifications_trace.rb +16 -0
- data/lib/graphql/tracing/active_support_notifications_tracing.rb +6 -20
- data/lib/graphql/tracing/appoptics_trace.rb +253 -0
- data/lib/graphql/tracing/appoptics_tracing.rb +4 -2
- data/lib/graphql/tracing/appsignal_trace.rb +79 -0
- data/lib/graphql/tracing/appsignal_tracing.rb +17 -0
- data/lib/graphql/tracing/call_legacy_tracers.rb +66 -0
- data/lib/graphql/tracing/data_dog_trace.rb +185 -0
- data/lib/graphql/tracing/data_dog_tracing.rb +27 -15
- data/lib/graphql/{execution/instrumentation.rb → tracing/legacy_hooks_trace.rb} +11 -28
- data/lib/graphql/tracing/legacy_trace.rb +12 -0
- data/lib/graphql/tracing/new_relic_trace.rb +77 -0
- data/lib/graphql/tracing/new_relic_tracing.rb +2 -0
- data/lib/graphql/tracing/notifications_trace.rb +45 -0
- data/lib/graphql/tracing/notifications_tracing.rb +61 -0
- data/lib/graphql/tracing/null_trace.rb +9 -0
- data/lib/graphql/tracing/platform_trace.rb +118 -0
- data/lib/graphql/tracing/platform_tracing.rb +46 -49
- data/lib/graphql/tracing/{prometheus_tracing → prometheus_trace}/graphql_collector.rb +6 -2
- data/lib/graphql/tracing/prometheus_trace.rb +94 -0
- data/lib/graphql/tracing/prometheus_tracing.rb +5 -3
- data/lib/graphql/tracing/scout_trace.rb +74 -0
- data/lib/graphql/tracing/scout_tracing.rb +2 -0
- data/lib/graphql/tracing/sentry_trace.rb +114 -0
- data/lib/graphql/tracing/statsd_trace.rb +58 -0
- data/lib/graphql/tracing/statsd_tracing.rb +2 -0
- data/lib/graphql/tracing/trace.rb +79 -0
- data/lib/graphql/tracing.rb +29 -52
- data/lib/graphql/type_kinds.rb +7 -4
- data/lib/graphql/types/big_int.rb +5 -1
- data/lib/graphql/types/int.rb +1 -1
- data/lib/graphql/types/iso_8601_date.rb +17 -6
- data/lib/graphql/types/iso_8601_date_time.rb +12 -1
- data/lib/graphql/types/iso_8601_duration.rb +77 -0
- data/lib/graphql/types/relay/base_connection.rb +16 -6
- data/lib/graphql/types/relay/connection_behaviors.rb +92 -32
- data/lib/graphql/types/relay/edge_behaviors.rb +46 -7
- data/lib/graphql/types/relay/has_node_field.rb +2 -2
- data/lib/graphql/types/relay/has_nodes_field.rb +2 -2
- data/lib/graphql/types/relay/node_behaviors.rb +12 -2
- data/lib/graphql/types/relay/page_info_behaviors.rb +11 -2
- data/lib/graphql/types/relay.rb +0 -3
- data/lib/graphql/types/string.rb +2 -2
- data/lib/graphql/types.rb +18 -10
- data/lib/graphql/unauthorized_enum_value_error.rb +13 -0
- data/lib/graphql/unauthorized_error.rb +1 -1
- data/lib/graphql/version.rb +1 -1
- data/lib/graphql.rb +82 -137
- data/readme.md +13 -6
- metadata +127 -186
- data/lib/graphql/analysis/analyze_query.rb +0 -98
- data/lib/graphql/analysis/ast/analyzer.rb +0 -84
- data/lib/graphql/analysis/ast/field_usage.rb +0 -28
- data/lib/graphql/analysis/ast/max_query_complexity.rb +0 -23
- data/lib/graphql/analysis/ast/max_query_depth.rb +0 -22
- data/lib/graphql/analysis/ast/query_complexity.rb +0 -234
- data/lib/graphql/analysis/ast/query_depth.rb +0 -56
- data/lib/graphql/analysis/ast/visitor.rb +0 -268
- data/lib/graphql/analysis/ast.rb +0 -91
- data/lib/graphql/analysis/reducer_state.rb +0 -48
- data/lib/graphql/argument.rb +0 -131
- data/lib/graphql/authorization.rb +0 -82
- data/lib/graphql/backtrace/legacy_tracer.rb +0 -56
- data/lib/graphql/backwards_compatibility.rb +0 -61
- data/lib/graphql/base_type.rb +0 -230
- data/lib/graphql/boolean_type.rb +0 -2
- data/lib/graphql/compatibility/execution_specification/counter_schema.rb +0 -53
- data/lib/graphql/compatibility/execution_specification/specification_schema.rb +0 -200
- data/lib/graphql/compatibility/execution_specification.rb +0 -436
- data/lib/graphql/compatibility/lazy_execution_specification/lazy_schema.rb +0 -111
- data/lib/graphql/compatibility/lazy_execution_specification.rb +0 -215
- data/lib/graphql/compatibility/query_parser_specification/parse_error_specification.rb +0 -87
- data/lib/graphql/compatibility/query_parser_specification/query_assertions.rb +0 -79
- data/lib/graphql/compatibility/query_parser_specification.rb +0 -266
- data/lib/graphql/compatibility/schema_parser_specification.rb +0 -682
- data/lib/graphql/compatibility.rb +0 -5
- data/lib/graphql/define/assign_argument.rb +0 -12
- data/lib/graphql/define/assign_connection.rb +0 -13
- data/lib/graphql/define/assign_enum_value.rb +0 -18
- data/lib/graphql/define/assign_global_id_field.rb +0 -11
- data/lib/graphql/define/assign_mutation_function.rb +0 -34
- data/lib/graphql/define/assign_object_field.rb +0 -42
- data/lib/graphql/define/defined_object_proxy.rb +0 -53
- data/lib/graphql/define/instance_definable.rb +0 -240
- data/lib/graphql/define/no_definition_error.rb +0 -7
- data/lib/graphql/define/non_null_with_bang.rb +0 -16
- data/lib/graphql/define/type_definer.rb +0 -31
- data/lib/graphql/define.rb +0 -31
- data/lib/graphql/deprecated_dsl.rb +0 -47
- data/lib/graphql/deprecation.rb +0 -13
- data/lib/graphql/directive/deprecated_directive.rb +0 -2
- data/lib/graphql/directive/include_directive.rb +0 -2
- data/lib/graphql/directive/skip_directive.rb +0 -2
- data/lib/graphql/directive.rb +0 -111
- data/lib/graphql/enum_type.rb +0 -129
- data/lib/graphql/execution/execute.rb +0 -333
- data/lib/graphql/execution/flatten.rb +0 -40
- data/lib/graphql/execution/lazy/resolve.rb +0 -91
- data/lib/graphql/execution/typecast.rb +0 -50
- data/lib/graphql/field/resolve.rb +0 -59
- data/lib/graphql/field.rb +0 -226
- data/lib/graphql/filter.rb +0 -53
- data/lib/graphql/float_type.rb +0 -2
- data/lib/graphql/function.rb +0 -128
- data/lib/graphql/id_type.rb +0 -2
- data/lib/graphql/input_object_type.rb +0 -138
- data/lib/graphql/int_type.rb +0 -2
- data/lib/graphql/interface_type.rb +0 -72
- data/lib/graphql/internal_representation/document.rb +0 -27
- data/lib/graphql/internal_representation/node.rb +0 -206
- data/lib/graphql/internal_representation/print.rb +0 -51
- data/lib/graphql/internal_representation/rewrite.rb +0 -184
- data/lib/graphql/internal_representation/scope.rb +0 -88
- data/lib/graphql/internal_representation/visit.rb +0 -36
- data/lib/graphql/internal_representation.rb +0 -7
- data/lib/graphql/language/lexer.rl +0 -262
- data/lib/graphql/language/parser.y +0 -543
- data/lib/graphql/language/token.rb +0 -38
- data/lib/graphql/list_type.rb +0 -80
- data/lib/graphql/non_null_type.rb +0 -71
- data/lib/graphql/object_type.rb +0 -130
- data/lib/graphql/query/arguments.rb +0 -189
- data/lib/graphql/query/arguments_cache.rb +0 -24
- data/lib/graphql/query/executor.rb +0 -52
- data/lib/graphql/query/literal_input.rb +0 -136
- data/lib/graphql/query/serial_execution/field_resolution.rb +0 -92
- data/lib/graphql/query/serial_execution/operation_resolution.rb +0 -19
- data/lib/graphql/query/serial_execution/selection_resolution.rb +0 -23
- data/lib/graphql/query/serial_execution/value_resolution.rb +0 -87
- data/lib/graphql/query/serial_execution.rb +0 -40
- data/lib/graphql/relay/array_connection.rb +0 -83
- data/lib/graphql/relay/base_connection.rb +0 -189
- data/lib/graphql/relay/connection_instrumentation.rb +0 -54
- data/lib/graphql/relay/connection_resolve.rb +0 -43
- data/lib/graphql/relay/connection_type.rb +0 -41
- data/lib/graphql/relay/edge.rb +0 -27
- data/lib/graphql/relay/edge_type.rb +0 -19
- data/lib/graphql/relay/edges_instrumentation.rb +0 -40
- data/lib/graphql/relay/global_id_resolve.rb +0 -18
- data/lib/graphql/relay/mongo_relation_connection.rb +0 -50
- data/lib/graphql/relay/mutation/instrumentation.rb +0 -23
- data/lib/graphql/relay/mutation/resolve.rb +0 -56
- data/lib/graphql/relay/mutation/result.rb +0 -38
- data/lib/graphql/relay/mutation.rb +0 -106
- data/lib/graphql/relay/node.rb +0 -39
- data/lib/graphql/relay/page_info.rb +0 -7
- data/lib/graphql/relay/relation_connection.rb +0 -188
- data/lib/graphql/relay/type_extensions.rb +0 -32
- data/lib/graphql/scalar_type.rb +0 -91
- data/lib/graphql/schema/base_64_bp.rb +0 -26
- data/lib/graphql/schema/catchall_middleware.rb +0 -35
- data/lib/graphql/schema/default_parse_error.rb +0 -10
- data/lib/graphql/schema/default_type_error.rb +0 -17
- data/lib/graphql/schema/invalid_type_error.rb +0 -7
- data/lib/graphql/schema/member/accepts_definition.rb +0 -152
- data/lib/graphql/schema/member/cached_graphql_definition.rb +0 -31
- data/lib/graphql/schema/member/instrumentation.rb +0 -131
- data/lib/graphql/schema/middleware_chain.rb +0 -82
- data/lib/graphql/schema/possible_types.rb +0 -44
- data/lib/graphql/schema/rescue_middleware.rb +0 -60
- data/lib/graphql/schema/timeout_middleware.rb +0 -88
- data/lib/graphql/schema/traversal.rb +0 -228
- data/lib/graphql/schema/validation.rb +0 -313
- data/lib/graphql/static_validation/default_visitor.rb +0 -15
- data/lib/graphql/static_validation/no_validate_visitor.rb +0 -10
- data/lib/graphql/static_validation/type_stack.rb +0 -216
- data/lib/graphql/string_type.rb +0 -2
- data/lib/graphql/subscriptions/instrumentation.rb +0 -79
- data/lib/graphql/subscriptions/subscription_root.rb +0 -76
- data/lib/graphql/tracing/skylight_tracing.rb +0 -70
- data/lib/graphql/types/relay/default_relay.rb +0 -27
- data/lib/graphql/types/relay/node_field.rb +0 -25
- data/lib/graphql/types/relay/nodes_field.rb +0 -27
- data/lib/graphql/union_type.rb +0 -115
- data/lib/graphql/upgrader/member.rb +0 -937
- data/lib/graphql/upgrader/schema.rb +0 -38
@@ -11,10 +11,11 @@ module GraphQL
|
|
11
11
|
def self.extended(cls)
|
12
12
|
cls.extend(ArgumentClassAccessor)
|
13
13
|
cls.include(ArgumentObjectLoader)
|
14
|
+
cls.extend(ClassConfigured)
|
14
15
|
end
|
15
16
|
|
16
17
|
# @see {GraphQL::Schema::Argument#initialize} for parameters
|
17
|
-
# @return [GraphQL::Schema::Argument] An instance of {
|
18
|
+
# @return [GraphQL::Schema::Argument] An instance of {argument_class}, created from `*args`
|
18
19
|
def argument(*args, **kwargs, &block)
|
19
20
|
kwargs[:owner] = self
|
20
21
|
loads = kwargs[:loads]
|
@@ -37,6 +38,7 @@ module GraphQL
|
|
37
38
|
end
|
38
39
|
arg_defn = self.argument_class.new(*args, **kwargs, &block)
|
39
40
|
add_argument(arg_defn)
|
41
|
+
arg_defn
|
40
42
|
end
|
41
43
|
|
42
44
|
# Register this argument with the class.
|
@@ -44,33 +46,175 @@ module GraphQL
|
|
44
46
|
# @return [GraphQL::Schema::Argument]
|
45
47
|
def add_argument(arg_defn)
|
46
48
|
@own_arguments ||= {}
|
47
|
-
own_arguments[arg_defn.name]
|
49
|
+
prev_defn = @own_arguments[arg_defn.name]
|
50
|
+
case prev_defn
|
51
|
+
when nil
|
52
|
+
@own_arguments[arg_defn.name] = arg_defn
|
53
|
+
when Array
|
54
|
+
prev_defn << arg_defn
|
55
|
+
when GraphQL::Schema::Argument
|
56
|
+
@own_arguments[arg_defn.name] = [prev_defn, arg_defn]
|
57
|
+
else
|
58
|
+
raise "Invariant: unexpected `@own_arguments[#{arg_defn.name.inspect}]`: #{prev_defn.inspect}"
|
59
|
+
end
|
48
60
|
arg_defn
|
49
61
|
end
|
50
62
|
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
63
|
+
def remove_argument(arg_defn)
|
64
|
+
prev_defn = @own_arguments[arg_defn.name]
|
65
|
+
case prev_defn
|
66
|
+
when nil
|
67
|
+
# done
|
68
|
+
when Array
|
69
|
+
prev_defn.delete(arg_defn)
|
70
|
+
when GraphQL::Schema::Argument
|
71
|
+
@own_arguments.delete(arg_defn.name)
|
57
72
|
else
|
58
|
-
own_arguments
|
73
|
+
raise "Invariant: unexpected `@own_arguments[#{arg_defn.name.inspect}]`: #{prev_defn.inspect}"
|
59
74
|
end
|
75
|
+
nil
|
60
76
|
end
|
61
77
|
|
62
|
-
# @return [GraphQL::Schema::Argument
|
63
|
-
def
|
64
|
-
|
78
|
+
# @return [Hash<String => GraphQL::Schema::Argument] Arguments defined on this thing, keyed by name. Includes inherited definitions
|
79
|
+
def arguments(context = GraphQL::Query::NullContext.instance, _require_defined_arguments = nil)
|
80
|
+
if !own_arguments.empty?
|
81
|
+
own_arguments_that_apply = {}
|
82
|
+
own_arguments.each do |name, args_entry|
|
83
|
+
if (visible_defn = Warden.visible_entry?(:visible_argument?, args_entry, context))
|
84
|
+
own_arguments_that_apply[visible_defn.graphql_name] = visible_defn
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
# might be nil if there are actually no arguments
|
89
|
+
own_arguments_that_apply || own_arguments
|
90
|
+
end
|
65
91
|
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
92
|
+
def any_arguments?
|
93
|
+
!own_arguments.empty?
|
94
|
+
end
|
95
|
+
|
96
|
+
module ClassConfigured
|
97
|
+
def inherited(child_class)
|
98
|
+
super
|
99
|
+
child_class.extend(InheritedArguments)
|
100
|
+
end
|
101
|
+
|
102
|
+
module InheritedArguments
|
103
|
+
def arguments(context = GraphQL::Query::NullContext.instance, require_defined_arguments = true)
|
104
|
+
own_arguments = super(context, require_defined_arguments)
|
105
|
+
inherited_arguments = superclass.arguments(context, false)
|
106
|
+
|
107
|
+
if !own_arguments.empty?
|
108
|
+
if !inherited_arguments.empty?
|
109
|
+
# Local definitions override inherited ones
|
110
|
+
inherited_arguments.merge(own_arguments)
|
111
|
+
else
|
112
|
+
own_arguments
|
113
|
+
end
|
114
|
+
else
|
115
|
+
inherited_arguments
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
def any_arguments?
|
120
|
+
super || superclass.any_arguments?
|
121
|
+
end
|
122
|
+
|
123
|
+
def all_argument_definitions
|
124
|
+
all_defns = {}
|
125
|
+
ancestors.reverse_each do |ancestor|
|
126
|
+
if ancestor.respond_to?(:own_arguments)
|
127
|
+
all_defns.merge!(ancestor.own_arguments)
|
128
|
+
end
|
129
|
+
end
|
130
|
+
all_defns = all_defns.values
|
131
|
+
all_defns.flatten!
|
132
|
+
all_defns
|
133
|
+
end
|
134
|
+
|
135
|
+
|
136
|
+
def get_argument(argument_name, context = GraphQL::Query::NullContext.instance)
|
137
|
+
warden = Warden.from_context(context)
|
138
|
+
skip_visible = context.respond_to?(:types) && context.types.is_a?(GraphQL::Schema::Visibility::Profile)
|
139
|
+
for ancestor in ancestors
|
140
|
+
if ancestor.respond_to?(:own_arguments) &&
|
141
|
+
(a = ancestor.own_arguments[argument_name]) &&
|
142
|
+
(skip_visible || (a = Warden.visible_entry?(:visible_argument?, a, context, warden)))
|
143
|
+
return a
|
144
|
+
end
|
72
145
|
end
|
146
|
+
nil
|
73
147
|
end
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
module FieldConfigured
|
152
|
+
def arguments(context = GraphQL::Query::NullContext.instance, _require_defined_arguments = nil)
|
153
|
+
own_arguments = super
|
154
|
+
if @resolver_class
|
155
|
+
inherited_arguments = @resolver_class.field_arguments(context)
|
156
|
+
if !own_arguments.empty?
|
157
|
+
if !inherited_arguments.empty?
|
158
|
+
inherited_arguments.merge(own_arguments)
|
159
|
+
else
|
160
|
+
own_arguments
|
161
|
+
end
|
162
|
+
else
|
163
|
+
inherited_arguments
|
164
|
+
end
|
165
|
+
else
|
166
|
+
own_arguments
|
167
|
+
end
|
168
|
+
end
|
169
|
+
|
170
|
+
def any_arguments?
|
171
|
+
super || (@resolver_class && @resolver_class.any_field_arguments?)
|
172
|
+
end
|
173
|
+
|
174
|
+
def all_argument_definitions
|
175
|
+
if @resolver_class
|
176
|
+
all_defns = {}
|
177
|
+
@resolver_class.all_field_argument_definitions.each do |arg_defn|
|
178
|
+
key = arg_defn.graphql_name
|
179
|
+
case (current_value = all_defns[key])
|
180
|
+
when nil
|
181
|
+
all_defns[key] = arg_defn
|
182
|
+
when Array
|
183
|
+
current_value << arg_defn
|
184
|
+
when GraphQL::Schema::Argument
|
185
|
+
all_defns[key] = [current_value, arg_defn]
|
186
|
+
else
|
187
|
+
raise "Invariant: Unexpected argument definition, #{current_value.class}: #{current_value.inspect}"
|
188
|
+
end
|
189
|
+
end
|
190
|
+
all_defns.merge!(own_arguments)
|
191
|
+
all_defns = all_defns.values
|
192
|
+
all_defns.flatten!
|
193
|
+
all_defns
|
194
|
+
else
|
195
|
+
super
|
196
|
+
end
|
197
|
+
end
|
198
|
+
end
|
199
|
+
|
200
|
+
def all_argument_definitions
|
201
|
+
if !own_arguments.empty?
|
202
|
+
all_defns = own_arguments.values
|
203
|
+
all_defns.flatten!
|
204
|
+
all_defns
|
205
|
+
else
|
206
|
+
EmptyObjects::EMPTY_ARRAY
|
207
|
+
end
|
208
|
+
end
|
209
|
+
|
210
|
+
# @return [GraphQL::Schema::Argument, nil] Argument defined on this thing, fetched by name.
|
211
|
+
def get_argument(argument_name, context = GraphQL::Query::NullContext.instance)
|
212
|
+
warden = Warden.from_context(context)
|
213
|
+
if (arg_config = own_arguments[argument_name]) && ((context.respond_to?(:types) && context.types.is_a?(GraphQL::Schema::Visibility::Profile)) || (visible_arg = Warden.visible_entry?(:visible_argument?, arg_config, context, warden)))
|
214
|
+
visible_arg || arg_config
|
215
|
+
elsif defined?(@resolver_class) && @resolver_class
|
216
|
+
@resolver_class.get_field_argument(argument_name, context)
|
217
|
+
else
|
74
218
|
nil
|
75
219
|
end
|
76
220
|
end
|
@@ -87,61 +231,59 @@ module GraphQL
|
|
87
231
|
#
|
88
232
|
# @param values [Hash<String, Object>]
|
89
233
|
# @param context [GraphQL::Query::Context]
|
90
|
-
# @yield [Interpreter::Arguments, Execution::Lazy<
|
91
|
-
# @return [Interpreter::Arguments, Execution::Lazy<
|
234
|
+
# @yield [Interpreter::Arguments, Execution::Lazy<Interpreter::Arguments>]
|
235
|
+
# @return [Interpreter::Arguments, Execution::Lazy<Interpreter::Arguments>]
|
92
236
|
def coerce_arguments(parent_object, values, context, &block)
|
93
237
|
# Cache this hash to avoid re-merging it
|
94
|
-
arg_defns =
|
238
|
+
arg_defns = context.types.arguments(self)
|
95
239
|
total_args_count = arg_defns.size
|
96
240
|
|
97
|
-
|
98
|
-
|
99
|
-
if
|
100
|
-
|
101
|
-
|
241
|
+
finished_args = nil
|
242
|
+
prepare_finished_args = -> {
|
243
|
+
if total_args_count == 0
|
244
|
+
finished_args = GraphQL::Execution::Interpreter::Arguments::EMPTY
|
245
|
+
if block_given?
|
246
|
+
block.call(finished_args)
|
247
|
+
end
|
102
248
|
else
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
begin
|
113
|
-
arg_defn.coerce_into_values(parent_object, values, context, argument_values)
|
114
|
-
rescue GraphQL::ExecutionError, GraphQL::UnauthorizedError => err
|
115
|
-
raised_error = true
|
116
|
-
if block_given?
|
117
|
-
block.call(err)
|
118
|
-
else
|
249
|
+
argument_values = {}
|
250
|
+
resolved_args_count = 0
|
251
|
+
raised_error = false
|
252
|
+
arg_defns.each do |arg_defn|
|
253
|
+
context.dataloader.append_job do
|
254
|
+
begin
|
255
|
+
arg_defn.coerce_into_values(parent_object, values, context, argument_values)
|
256
|
+
rescue GraphQL::ExecutionError, GraphQL::UnauthorizedError => err
|
257
|
+
raised_error = true
|
119
258
|
finished_args = err
|
259
|
+
if block_given?
|
260
|
+
block.call(finished_args)
|
261
|
+
end
|
120
262
|
end
|
121
|
-
end
|
122
|
-
|
123
|
-
resolved_args_count += 1
|
124
|
-
if resolved_args_count == total_args_count && !raised_error
|
125
|
-
finished_args = context.schema.after_any_lazies(argument_values.values) {
|
126
|
-
GraphQL::Execution::Interpreter::Arguments.new(
|
127
|
-
argument_values: argument_values,
|
128
|
-
)
|
129
|
-
}
|
130
263
|
|
131
|
-
|
132
|
-
|
264
|
+
resolved_args_count += 1
|
265
|
+
if resolved_args_count == total_args_count && !raised_error
|
266
|
+
finished_args = context.schema.after_any_lazies(argument_values.values) {
|
267
|
+
GraphQL::Execution::Interpreter::Arguments.new(
|
268
|
+
argument_values: argument_values,
|
269
|
+
)
|
270
|
+
}
|
271
|
+
if block_given?
|
272
|
+
block.call(finished_args)
|
273
|
+
end
|
133
274
|
end
|
134
275
|
end
|
135
276
|
end
|
136
277
|
end
|
278
|
+
}
|
137
279
|
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
280
|
+
if block_given?
|
281
|
+
prepare_finished_args.call
|
282
|
+
nil
|
283
|
+
else
|
284
|
+
# This API returns eagerly, gotta run it now
|
285
|
+
context.dataloader.run_isolated(&prepare_finished_args)
|
286
|
+
finished_args
|
145
287
|
end
|
146
288
|
end
|
147
289
|
|
@@ -149,7 +291,12 @@ module GraphQL
|
|
149
291
|
# but not for directives.
|
150
292
|
# TODO apply static validations on schema definitions?
|
151
293
|
def validate_directive_argument(arg_defn, value)
|
152
|
-
|
294
|
+
# this is only implemented on directives.
|
295
|
+
nil
|
296
|
+
end
|
297
|
+
|
298
|
+
module HasDirectiveArguments
|
299
|
+
def validate_directive_argument(arg_defn, value)
|
153
300
|
if value.nil? && arg_defn.type.non_null?
|
154
301
|
raise ArgumentError, "#{arg_defn.path} is required, but no value was given"
|
155
302
|
end
|
@@ -157,9 +304,11 @@ module GraphQL
|
|
157
304
|
end
|
158
305
|
|
159
306
|
def arguments_statically_coercible?
|
160
|
-
|
161
|
-
|
162
|
-
|
307
|
+
if defined?(@arguments_statically_coercible) && !@arguments_statically_coercible.nil?
|
308
|
+
@arguments_statically_coercible
|
309
|
+
else
|
310
|
+
@arguments_statically_coercible = all_argument_definitions.all?(&:statically_coercible?)
|
311
|
+
end
|
163
312
|
end
|
164
313
|
|
165
314
|
module ArgumentClassAccessor
|
@@ -186,43 +335,78 @@ module GraphQL
|
|
186
335
|
context.schema.object_from_id(id, context)
|
187
336
|
end
|
188
337
|
|
189
|
-
def load_application_object(argument,
|
338
|
+
def load_application_object(argument, id, context)
|
190
339
|
# See if any object can be found for this ID
|
191
340
|
if id.nil?
|
192
341
|
return nil
|
193
342
|
end
|
194
|
-
|
195
|
-
|
343
|
+
object_from_id(argument.loads, id, context)
|
344
|
+
end
|
345
|
+
|
346
|
+
def load_and_authorize_application_object(argument, id, context)
|
347
|
+
loaded_application_object = load_application_object(argument, id, context)
|
348
|
+
authorize_application_object(argument, id, context, loaded_application_object)
|
349
|
+
end
|
350
|
+
|
351
|
+
def authorize_application_object(argument, id, context, loaded_application_object)
|
352
|
+
context.query.after_lazy(loaded_application_object) do |application_object|
|
196
353
|
if application_object.nil?
|
197
|
-
err = GraphQL::LoadApplicationObjectFailedError.new(argument: argument, id: id, object: application_object)
|
198
|
-
load_application_object_failed(err)
|
354
|
+
err = GraphQL::LoadApplicationObjectFailedError.new(context: context, argument: argument, id: id, object: application_object)
|
355
|
+
application_object = load_application_object_failed(err)
|
199
356
|
end
|
200
357
|
# Double-check that the located object is actually of this type
|
201
358
|
# (Don't want to allow arbitrary access to objects this way)
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
359
|
+
if application_object.nil?
|
360
|
+
nil
|
361
|
+
else
|
362
|
+
arg_loads_type = argument.loads
|
363
|
+
maybe_lazy_resolve_type = context.schema.resolve_type(arg_loads_type, application_object, context)
|
364
|
+
context.query.after_lazy(maybe_lazy_resolve_type) do |resolve_type_result|
|
365
|
+
if resolve_type_result.is_a?(Array) && resolve_type_result.size == 2
|
366
|
+
application_object_type, application_object = resolve_type_result
|
367
|
+
else
|
368
|
+
application_object_type = resolve_type_result
|
369
|
+
# application_object is already assigned
|
370
|
+
end
|
371
|
+
|
372
|
+
passes_possible_types_check = if context.types.loadable?(arg_loads_type, context)
|
373
|
+
if arg_loads_type.kind.union?
|
374
|
+
# This union is used in `loads:` but not otherwise visible to this query
|
375
|
+
context.types.loadable_possible_types(arg_loads_type, context).include?(application_object_type)
|
376
|
+
else
|
377
|
+
true
|
378
|
+
end
|
379
|
+
else
|
380
|
+
context.types.possible_types(arg_loads_type).include?(application_object_type)
|
381
|
+
end
|
382
|
+
if !passes_possible_types_check
|
383
|
+
err = GraphQL::LoadApplicationObjectFailedError.new(context: context, argument: argument, id: id, object: application_object)
|
384
|
+
application_object = load_application_object_failed(err)
|
385
|
+
end
|
386
|
+
|
387
|
+
if application_object.nil?
|
388
|
+
nil
|
389
|
+
else
|
390
|
+
# This object was loaded successfully
|
391
|
+
# and resolved to the right type,
|
392
|
+
# now apply the `.authorized?` class method if there is one
|
393
|
+
context.query.after_lazy(application_object_type.authorized?(application_object, context)) do |authed|
|
214
394
|
if authed
|
215
395
|
application_object
|
216
396
|
else
|
217
|
-
|
397
|
+
err = GraphQL::UnauthorizedError.new(
|
218
398
|
object: application_object,
|
219
|
-
type:
|
399
|
+
type: application_object_type,
|
220
400
|
context: context,
|
221
401
|
)
|
402
|
+
if self.respond_to?(:unauthorized_object)
|
403
|
+
err.set_backtrace(caller)
|
404
|
+
unauthorized_object(err)
|
405
|
+
else
|
406
|
+
raise err
|
407
|
+
end
|
222
408
|
end
|
223
409
|
end
|
224
|
-
else
|
225
|
-
application_object
|
226
410
|
end
|
227
411
|
end
|
228
412
|
end
|
@@ -234,7 +418,7 @@ module GraphQL
|
|
234
418
|
end
|
235
419
|
end
|
236
420
|
|
237
|
-
NO_ARGUMENTS =
|
421
|
+
NO_ARGUMENTS = GraphQL::EmptyObjects::EMPTY_HASH
|
238
422
|
def own_arguments
|
239
423
|
@own_arguments || NO_ARGUMENTS
|
240
424
|
end
|
@@ -3,6 +3,16 @@ module GraphQL
|
|
3
3
|
class Schema
|
4
4
|
class Member
|
5
5
|
module HasAstNode
|
6
|
+
def self.extended(child_cls)
|
7
|
+
super
|
8
|
+
child_cls.ast_node = nil
|
9
|
+
end
|
10
|
+
|
11
|
+
def inherited(child_cls)
|
12
|
+
super
|
13
|
+
child_cls.ast_node = nil
|
14
|
+
end
|
15
|
+
|
6
16
|
# If this schema was parsed from a `.graphql` file (or other SDL),
|
7
17
|
# this is the AST node that defined this part of the schema.
|
8
18
|
def ast_node(new_ast_node = nil)
|
@@ -14,6 +24,8 @@ module GraphQL
|
|
14
24
|
nil
|
15
25
|
end
|
16
26
|
end
|
27
|
+
|
28
|
+
attr_writer :ast_node
|
17
29
|
end
|
18
30
|
end
|
19
31
|
end
|
@@ -5,17 +5,16 @@ module GraphQL
|
|
5
5
|
class Member
|
6
6
|
module HasDeprecationReason
|
7
7
|
# @return [String, nil] Explains why this member was deprecated (if present, this will be marked deprecated in introspection)
|
8
|
-
|
9
|
-
dir = self.directives.find { |d| d.is_a?(GraphQL::Schema::Directive::Deprecated) }
|
10
|
-
dir && dir.arguments[:reason]
|
11
|
-
end
|
8
|
+
attr_reader :deprecation_reason
|
12
9
|
|
13
10
|
# Set the deprecation reason for this member, or remove it by assigning `nil`
|
14
11
|
# @param text [String, nil]
|
15
12
|
def deprecation_reason=(text)
|
13
|
+
@deprecation_reason = text
|
16
14
|
if text.nil?
|
17
15
|
remove_directive(GraphQL::Schema::Directive::Deprecated)
|
18
16
|
else
|
17
|
+
# This removes a previously-attached directive, if there is one:
|
19
18
|
directive(GraphQL::Schema::Directive::Deprecated, reason: text)
|
20
19
|
end
|
21
20
|
end
|
@@ -4,6 +4,16 @@ module GraphQL
|
|
4
4
|
class Schema
|
5
5
|
class Member
|
6
6
|
module HasDirectives
|
7
|
+
def self.extended(child_cls)
|
8
|
+
super
|
9
|
+
child_cls.module_eval { self.own_directives = nil }
|
10
|
+
end
|
11
|
+
|
12
|
+
def inherited(child_cls)
|
13
|
+
super
|
14
|
+
child_cls.own_directives = nil
|
15
|
+
end
|
16
|
+
|
7
17
|
# Create an instance of `dir_class` for `self`, using `options`.
|
8
18
|
#
|
9
19
|
# It removes a previously-attached instance of `dir_class`, if there is one.
|
@@ -11,8 +21,7 @@ module GraphQL
|
|
11
21
|
# @return [void]
|
12
22
|
def directive(dir_class, **options)
|
13
23
|
@own_directives ||= []
|
14
|
-
|
15
|
-
@own_directives << dir_class.new(self, **options)
|
24
|
+
HasDirectives.add_directive(self, @own_directives, dir_class, options)
|
16
25
|
nil
|
17
26
|
end
|
18
27
|
|
@@ -20,78 +29,89 @@ module GraphQL
|
|
20
29
|
# @param dir_class [Class<GraphQL::Schema::Directive>]
|
21
30
|
# @return [viod]
|
22
31
|
def remove_directive(dir_class)
|
23
|
-
@own_directives
|
32
|
+
HasDirectives.remove_directive(@own_directives, dir_class)
|
24
33
|
nil
|
25
34
|
end
|
26
35
|
|
27
|
-
NO_DIRECTIVES = [].freeze
|
28
|
-
|
29
36
|
def directives
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
37
|
+
HasDirectives.get_directives(self, @own_directives, :directives)
|
38
|
+
end
|
39
|
+
|
40
|
+
class << self
|
41
|
+
def add_directive(schema_member, directives, directive_class, directive_options)
|
42
|
+
remove_directive(directives, directive_class) unless directive_class.repeatable?
|
43
|
+
directives << directive_class.new(schema_member, **directive_options)
|
44
|
+
end
|
45
|
+
|
46
|
+
def remove_directive(directives, directive_class)
|
47
|
+
directives && directives.reject! { |d| d.is_a?(directive_class) }
|
48
|
+
end
|
49
|
+
|
50
|
+
def get_directives(schema_member, directives, directives_method)
|
51
|
+
case schema_member
|
52
|
+
when Class
|
53
|
+
inherited_directives = if schema_member.superclass.respond_to?(directives_method)
|
54
|
+
get_directives(schema_member.superclass, schema_member.superclass.public_send(directives_method), directives_method)
|
55
|
+
else
|
56
|
+
GraphQL::EmptyObjects::EMPTY_ARRAY
|
57
|
+
end
|
58
|
+
if !inherited_directives.empty? && directives
|
59
|
+
dirs = []
|
60
|
+
merge_directives(dirs, inherited_directives)
|
61
|
+
merge_directives(dirs, directives)
|
62
|
+
dirs
|
63
|
+
elsif directives
|
64
|
+
directives
|
65
|
+
elsif !inherited_directives.empty?
|
66
|
+
inherited_directives
|
67
|
+
else
|
68
|
+
GraphQL::EmptyObjects::EMPTY_ARRAY
|
69
|
+
end
|
70
|
+
when Module
|
71
|
+
dirs = nil
|
72
|
+
schema_member.ancestors.reverse_each do |ancestor|
|
73
|
+
if ancestor.respond_to?(:own_directives) &&
|
74
|
+
!(anc_dirs = ancestor.own_directives).empty?
|
75
|
+
dirs ||= []
|
76
|
+
merge_directives(dirs, anc_dirs)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
if directives
|
54
80
|
dirs ||= []
|
55
|
-
merge_directives(dirs,
|
81
|
+
merge_directives(dirs, directives)
|
56
82
|
end
|
83
|
+
dirs || GraphQL::EmptyObjects::EMPTY_ARRAY
|
84
|
+
when HasDirectives
|
85
|
+
directives || GraphQL::EmptyObjects::EMPTY_ARRAY
|
86
|
+
else
|
87
|
+
raise "Invariant: how could #{schema_member} not be a Class, Module, or instance of HasDirectives?"
|
57
88
|
end
|
58
|
-
if own_directives
|
59
|
-
dirs ||= []
|
60
|
-
merge_directives(dirs, own_directives)
|
61
|
-
end
|
62
|
-
dirs || NO_DIRECTIVES
|
63
|
-
when HasDirectives
|
64
|
-
@own_directives || NO_DIRECTIVES
|
65
|
-
else
|
66
|
-
raise "Invariant: how could #{self} not be a Class, Module, or instance of HasDirectives?"
|
67
89
|
end
|
68
|
-
end
|
69
|
-
|
70
|
-
protected
|
71
|
-
|
72
|
-
def own_directives
|
73
|
-
@own_directives
|
74
|
-
end
|
75
90
|
|
76
|
-
|
91
|
+
private
|
77
92
|
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
93
|
+
# Modify `target` by adding items from `dirs` such that:
|
94
|
+
# - Any name conflict is overridden by the incoming member of `dirs`
|
95
|
+
# - Any other member of `dirs` is appended
|
96
|
+
# @param target [Array<GraphQL::Schema::Directive>]
|
97
|
+
# @param dirs [Array<GraphQL::Schema::Directive>]
|
98
|
+
# @return [void]
|
99
|
+
def merge_directives(target, dirs)
|
100
|
+
dirs.each do |dir|
|
101
|
+
if (idx = target.find_index { |d| d.graphql_name == dir.graphql_name })
|
102
|
+
target.slice!(idx)
|
103
|
+
target.insert(idx, dir)
|
104
|
+
else
|
105
|
+
target << dir
|
106
|
+
end
|
91
107
|
end
|
108
|
+
nil
|
92
109
|
end
|
93
|
-
nil
|
94
110
|
end
|
111
|
+
|
112
|
+
protected
|
113
|
+
|
114
|
+
attr_accessor :own_directives
|
95
115
|
end
|
96
116
|
end
|
97
117
|
end
|