graphql 0.16.0 → 2.0.15
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.
Potentially problematic release.
This version of graphql might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/.yardopts +5 -0
- data/lib/generators/graphql/core.rb +69 -0
- data/lib/generators/graphql/enum_generator.rb +27 -0
- 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/install/templates/base_mutation.erb +10 -0
- data/lib/generators/graphql/install/templates/mutation_type.erb +12 -0
- data/lib/generators/graphql/install_generator.rb +197 -0
- data/lib/generators/graphql/interface_generator.rb +27 -0
- data/lib/generators/graphql/loader_generator.rb +21 -0
- 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 +30 -0
- data/lib/generators/graphql/mutation_update_generator.rb +22 -0
- data/lib/generators/graphql/object_generator.rb +50 -0
- data/lib/generators/graphql/orm_mutations_base.rb +40 -0
- data/lib/generators/graphql/relay.rb +49 -0
- data/lib/generators/graphql/relay_generator.rb +21 -0
- data/lib/generators/graphql/scalar_generator.rb +22 -0
- data/lib/generators/graphql/templates/base_argument.erb +6 -0
- data/lib/generators/graphql/templates/base_connection.erb +8 -0
- data/lib/generators/graphql/templates/base_edge.erb +8 -0
- data/lib/generators/graphql/templates/base_enum.erb +6 -0
- data/lib/generators/graphql/templates/base_field.erb +7 -0
- data/lib/generators/graphql/templates/base_input_object.erb +7 -0
- data/lib/generators/graphql/templates/base_interface.erb +9 -0
- data/lib/generators/graphql/templates/base_object.erb +7 -0
- data/lib/generators/graphql/templates/base_scalar.erb +6 -0
- data/lib/generators/graphql/templates/base_union.erb +6 -0
- data/lib/generators/graphql/templates/enum.erb +11 -0
- data/lib/generators/graphql/templates/graphql_controller.erb +52 -0
- data/lib/generators/graphql/templates/input.erb +9 -0
- data/lib/generators/graphql/templates/interface.erb +10 -0
- data/lib/generators/graphql/templates/loader.erb +19 -0
- data/lib/generators/graphql/templates/mutation.erb +16 -0
- 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 +9 -0
- data/lib/generators/graphql/templates/object.erb +10 -0
- data/lib/generators/graphql/templates/query_type.erb +15 -0
- data/lib/generators/graphql/templates/scalar.erb +17 -0
- data/lib/generators/graphql/templates/schema.erb +30 -0
- data/lib/generators/graphql/templates/union.erb +9 -0
- data/lib/generators/graphql/type_generator.rb +135 -0
- data/lib/generators/graphql/union_generator.rb +33 -0
- data/lib/graphql/analysis/ast/analyzer.rb +84 -0
- data/lib/graphql/analysis/ast/field_usage.rb +57 -0
- data/lib/graphql/analysis/ast/max_query_complexity.rb +22 -0
- data/lib/graphql/analysis/ast/max_query_depth.rb +22 -0
- data/lib/graphql/analysis/ast/query_complexity.rb +230 -0
- data/lib/graphql/analysis/ast/query_depth.rb +55 -0
- data/lib/graphql/analysis/ast/visitor.rb +269 -0
- data/lib/graphql/analysis/ast.rb +81 -0
- data/lib/graphql/analysis.rb +2 -5
- data/lib/graphql/analysis_error.rb +1 -0
- data/lib/graphql/backtrace/inspect_result.rb +50 -0
- data/lib/graphql/backtrace/table.rb +141 -0
- data/lib/graphql/backtrace/traced_error.rb +54 -0
- data/lib/graphql/backtrace/tracer.rb +80 -0
- data/lib/graphql/backtrace.rb +58 -0
- data/lib/graphql/coercion_error.rb +13 -0
- data/lib/graphql/dataloader/null_dataloader.rb +24 -0
- data/lib/graphql/dataloader/request.rb +19 -0
- data/lib/graphql/dataloader/request_all.rb +19 -0
- data/lib/graphql/dataloader/source.rb +164 -0
- data/lib/graphql/dataloader.rb +311 -0
- data/lib/graphql/date_encoding_error.rb +16 -0
- data/lib/graphql/deprecation.rb +9 -0
- data/lib/graphql/dig.rb +19 -0
- data/lib/graphql/execution/directive_checks.rb +37 -0
- data/lib/graphql/execution/errors.rb +93 -0
- data/lib/graphql/execution/interpreter/argument_value.rb +28 -0
- data/lib/graphql/execution/interpreter/arguments.rb +88 -0
- data/lib/graphql/execution/interpreter/arguments_cache.rb +105 -0
- data/lib/graphql/execution/interpreter/execution_errors.rb +29 -0
- data/lib/graphql/execution/interpreter/handles_raw_value.rb +18 -0
- data/lib/graphql/execution/interpreter/resolve.rb +77 -0
- data/lib/graphql/execution/interpreter/runtime.rb +994 -0
- data/lib/graphql/execution/interpreter.rb +226 -0
- data/lib/graphql/execution/lazy/lazy_method_map.rb +98 -0
- data/lib/graphql/execution/lazy.rb +75 -0
- data/lib/graphql/execution/lookahead.rb +311 -0
- data/lib/graphql/execution/multiplex.rb +45 -0
- data/lib/graphql/execution.rb +18 -0
- data/lib/graphql/execution_error.rb +34 -1
- data/lib/graphql/filter.rb +53 -0
- data/lib/graphql/integer_decoding_error.rb +17 -0
- data/lib/graphql/integer_encoding_error.rb +36 -0
- data/lib/graphql/introspection/base_object.rb +13 -0
- data/lib/graphql/introspection/directive_location_enum.rb +12 -5
- data/lib/graphql/introspection/directive_type.rb +30 -10
- data/lib/graphql/introspection/dynamic_fields.rb +12 -0
- data/lib/graphql/introspection/entry_points.rb +22 -0
- data/lib/graphql/introspection/enum_value_type.rb +21 -8
- data/lib/graphql/introspection/field_type.rb +26 -10
- data/lib/graphql/introspection/input_value_type.rb +64 -14
- data/lib/graphql/introspection/introspection_query.rb +7 -76
- data/lib/graphql/introspection/schema_type.rb +42 -17
- data/lib/graphql/introspection/type_kind_enum.rb +11 -5
- data/lib/graphql/introspection/type_type.rb +104 -16
- data/lib/graphql/introspection.rb +104 -13
- data/lib/graphql/invalid_name_error.rb +11 -0
- data/lib/graphql/invalid_null_error.rb +36 -8
- data/lib/graphql/language/block_string.rb +99 -0
- data/lib/graphql/language/cache.rb +37 -0
- data/lib/graphql/language/definition_slice.rb +41 -0
- data/lib/graphql/language/document_from_schema_definition.rb +335 -0
- data/lib/graphql/language/generation.rb +16 -86
- data/lib/graphql/language/lexer.rb +1436 -705
- data/lib/graphql/language/lexer.rl +172 -64
- data/lib/graphql/language/nodes.rb +617 -105
- data/lib/graphql/language/parser.rb +1524 -430
- data/lib/graphql/language/parser.y +348 -73
- data/lib/graphql/language/printer.rb +386 -0
- data/lib/graphql/language/sanitized_printer.rb +222 -0
- data/lib/graphql/language/token.rb +16 -3
- data/lib/graphql/language/visitor.rb +169 -25
- data/lib/graphql/language.rb +30 -0
- data/lib/graphql/load_application_object_failed_error.rb +22 -0
- data/lib/graphql/name_validator.rb +11 -0
- data/lib/graphql/pagination/active_record_relation_connection.rb +85 -0
- data/lib/graphql/pagination/array_connection.rb +79 -0
- data/lib/graphql/pagination/connection.rb +253 -0
- data/lib/graphql/pagination/connections.rb +135 -0
- data/lib/graphql/pagination/mongoid_relation_connection.rb +25 -0
- data/lib/graphql/pagination/relation_connection.rb +228 -0
- data/lib/graphql/pagination/sequel_dataset_connection.rb +28 -0
- data/lib/graphql/pagination.rb +6 -0
- data/lib/graphql/parse_error.rb +24 -0
- data/lib/graphql/query/context.rb +266 -12
- data/lib/graphql/query/fingerprint.rb +26 -0
- data/lib/graphql/query/input_validation_result.rb +34 -7
- data/lib/graphql/query/null_context.rb +52 -0
- data/lib/graphql/query/result.rb +63 -0
- data/lib/graphql/query/validation_pipeline.rb +114 -0
- data/lib/graphql/query/variable_validation_error.rb +27 -3
- data/lib/graphql/query/variables.rb +75 -24
- data/lib/graphql/query.rb +359 -92
- data/lib/graphql/railtie.rb +13 -0
- data/lib/graphql/rake_task/validate.rb +63 -0
- data/lib/graphql/rake_task.rb +146 -0
- data/lib/graphql/relay/range_add.rb +52 -0
- data/lib/graphql/relay.rb +3 -0
- 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.rb +4 -0
- data/lib/graphql/runtime_type_error.rb +5 -0
- data/lib/graphql/schema/addition.rb +245 -0
- data/lib/graphql/schema/argument.rb +395 -0
- data/lib/graphql/schema/base_64_bp.rb +26 -0
- data/lib/graphql/schema/base_64_encoder.rb +21 -0
- data/lib/graphql/schema/build_from_definition/resolve_map/default_resolve.rb +47 -0
- data/lib/graphql/schema/build_from_definition/resolve_map.rb +78 -0
- data/lib/graphql/schema/build_from_definition.rb +492 -0
- data/lib/graphql/schema/built_in_types.rb +12 -0
- data/lib/graphql/schema/directive/deprecated.rb +18 -0
- data/lib/graphql/schema/directive/feature.rb +66 -0
- data/lib/graphql/schema/directive/flagged.rb +57 -0
- data/lib/graphql/schema/directive/include.rb +25 -0
- data/lib/graphql/schema/directive/one_of.rb +12 -0
- data/lib/graphql/schema/directive/skip.rb +25 -0
- data/lib/graphql/schema/directive/transform.rb +60 -0
- data/lib/graphql/schema/directive.rb +212 -0
- data/lib/graphql/schema/enum.rb +176 -0
- data/lib/graphql/schema/enum_value.rb +77 -0
- data/lib/graphql/schema/field/connection_extension.rb +80 -0
- data/lib/graphql/schema/field/scope_extension.rb +22 -0
- data/lib/graphql/schema/field.rb +862 -0
- data/lib/graphql/schema/field_extension.rb +156 -0
- data/lib/graphql/schema/find_inherited_value.rb +36 -0
- data/lib/graphql/schema/finder.rb +155 -0
- data/lib/graphql/schema/input_object.rb +258 -0
- data/lib/graphql/schema/interface.rb +113 -0
- data/lib/graphql/schema/introspection_system.rb +164 -0
- data/lib/graphql/schema/invalid_type_error.rb +1 -0
- data/lib/graphql/schema/late_bound_type.rb +37 -0
- data/lib/graphql/schema/list.rb +86 -0
- data/lib/graphql/schema/loader.rb +228 -0
- data/lib/graphql/schema/member/base_dsl_methods.rb +124 -0
- data/lib/graphql/schema/member/build_type.rb +178 -0
- data/lib/graphql/schema/member/graphql_type_names.rb +21 -0
- data/lib/graphql/schema/member/has_arguments.rb +376 -0
- data/lib/graphql/schema/member/has_ast_node.rb +20 -0
- data/lib/graphql/schema/member/has_deprecation_reason.rb +25 -0
- data/lib/graphql/schema/member/has_directives.rb +113 -0
- data/lib/graphql/schema/member/has_fields.rb +163 -0
- data/lib/graphql/schema/member/has_interfaces.rb +88 -0
- data/lib/graphql/schema/member/has_path.rb +25 -0
- data/lib/graphql/schema/member/has_unresolved_type_error.rb +15 -0
- data/lib/graphql/schema/member/has_validators.rb +31 -0
- data/lib/graphql/schema/member/relay_shortcuts.rb +73 -0
- data/lib/graphql/schema/member/scoped.rb +21 -0
- data/lib/graphql/schema/member/type_system_helpers.rb +38 -0
- data/lib/graphql/schema/member/validates_input.rb +33 -0
- data/lib/graphql/schema/member.rb +39 -0
- data/lib/graphql/schema/mutation.rb +85 -0
- data/lib/graphql/schema/non_null.rb +67 -0
- data/lib/graphql/schema/null_mask.rb +11 -0
- data/lib/graphql/schema/object.rb +117 -0
- data/lib/graphql/schema/printer.rb +72 -128
- data/lib/graphql/schema/relay_classic_mutation.rb +179 -0
- data/lib/graphql/schema/resolver/has_payload_type.rb +106 -0
- data/lib/graphql/schema/resolver.rb +402 -0
- data/lib/graphql/schema/scalar.rb +68 -0
- data/lib/graphql/schema/subscription.rb +148 -0
- data/lib/graphql/schema/timeout.rb +123 -0
- data/lib/graphql/schema/type_expression.rb +29 -5
- data/lib/graphql/schema/type_membership.rb +51 -0
- data/lib/graphql/schema/union.rb +81 -0
- data/lib/graphql/schema/unique_within_type.rb +34 -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 +33 -0
- data/lib/graphql/schema/validator/format_validator.rb +48 -0
- data/lib/graphql/schema/validator/inclusion_validator.rb +35 -0
- data/lib/graphql/schema/validator/length_validator.rb +59 -0
- data/lib/graphql/schema/validator/numericality_validator.rb +82 -0
- data/lib/graphql/schema/validator/required_validator.rb +82 -0
- data/lib/graphql/schema/validator.rb +171 -0
- data/lib/graphql/schema/warden.rb +413 -0
- data/lib/graphql/schema/wrapper.rb +24 -0
- data/lib/graphql/schema.rb +1179 -104
- data/lib/graphql/static_validation/all_rules.rb +14 -0
- data/lib/graphql/static_validation/base_visitor.rb +200 -0
- data/lib/graphql/static_validation/definition_dependencies.rb +198 -0
- data/lib/graphql/static_validation/error.rb +46 -0
- data/lib/graphql/static_validation/interpreter_visitor.rb +14 -0
- data/lib/graphql/static_validation/literal_validator.rb +113 -22
- data/lib/graphql/static_validation/rules/argument_literals_are_compatible.rb +59 -11
- data/lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb +48 -0
- data/lib/graphql/static_validation/rules/argument_names_are_unique.rb +31 -0
- data/lib/graphql/static_validation/rules/argument_names_are_unique_error.rb +30 -0
- data/lib/graphql/static_validation/rules/arguments_are_defined.rb +62 -8
- data/lib/graphql/static_validation/rules/arguments_are_defined_error.rb +37 -0
- data/lib/graphql/static_validation/rules/directives_are_defined.rb +20 -13
- data/lib/graphql/static_validation/rules/directives_are_defined_error.rb +29 -0
- data/lib/graphql/static_validation/rules/directives_are_in_valid_locations.rb +32 -26
- data/lib/graphql/static_validation/rules/directives_are_in_valid_locations_error.rb +31 -0
- data/lib/graphql/static_validation/rules/fields_are_defined_on_type.rb +21 -23
- data/lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb +32 -0
- data/lib/graphql/static_validation/rules/fields_have_appropriate_selections.rb +55 -18
- data/lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb +31 -0
- data/lib/graphql/static_validation/rules/fields_will_merge.rb +390 -70
- data/lib/graphql/static_validation/rules/fields_will_merge_error.rb +53 -0
- data/lib/graphql/static_validation/rules/fragment_names_are_unique.rb +30 -0
- data/lib/graphql/static_validation/rules/fragment_names_are_unique_error.rb +29 -0
- data/lib/graphql/static_validation/rules/fragment_spreads_are_possible.rb +54 -37
- data/lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb +35 -0
- data/lib/graphql/static_validation/rules/fragment_types_exist.rb +26 -16
- data/lib/graphql/static_validation/rules/fragment_types_exist_error.rb +29 -0
- data/lib/graphql/static_validation/rules/fragments_are_finite.rb +13 -19
- data/lib/graphql/static_validation/rules/fragments_are_finite_error.rb +29 -0
- data/lib/graphql/static_validation/rules/fragments_are_named.rb +16 -0
- data/lib/graphql/static_validation/rules/fragments_are_named_error.rb +26 -0
- data/lib/graphql/static_validation/rules/fragments_are_on_composite_types.rb +25 -20
- data/lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb +30 -0
- data/lib/graphql/static_validation/rules/fragments_are_used.rb +22 -33
- data/lib/graphql/static_validation/rules/fragments_are_used_error.rb +29 -0
- data/lib/graphql/static_validation/rules/input_object_names_are_unique.rb +30 -0
- data/lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb +30 -0
- data/lib/graphql/static_validation/rules/mutation_root_exists.rb +17 -0
- data/lib/graphql/static_validation/rules/mutation_root_exists_error.rb +26 -0
- data/lib/graphql/static_validation/rules/no_definitions_are_present.rb +41 -0
- data/lib/graphql/static_validation/rules/no_definitions_are_present_error.rb +25 -0
- 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/operation_names_are_valid.rb +36 -0
- data/lib/graphql/static_validation/rules/operation_names_are_valid_error.rb +28 -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 +22 -21
- data/lib/graphql/static_validation/rules/required_arguments_are_present_error.rb +35 -0
- data/lib/graphql/static_validation/rules/required_input_object_attributes_are_present.rb +59 -0
- data/lib/graphql/static_validation/rules/required_input_object_attributes_are_present_error.rb +35 -0
- data/lib/graphql/static_validation/rules/subscription_root_exists.rb +17 -0
- data/lib/graphql/static_validation/rules/subscription_root_exists_error.rb +26 -0
- data/lib/graphql/static_validation/rules/unique_directives_per_location.rb +56 -0
- data/lib/graphql/static_validation/rules/unique_directives_per_location_error.rb +29 -0
- data/lib/graphql/static_validation/rules/variable_default_values_are_correctly_typed.rb +36 -18
- data/lib/graphql/static_validation/rules/variable_default_values_are_correctly_typed_error.rb +39 -0
- data/lib/graphql/static_validation/rules/variable_names_are_unique.rb +24 -0
- data/lib/graphql/static_validation/rules/variable_names_are_unique_error.rb +29 -0
- data/lib/graphql/static_validation/rules/variable_usages_are_allowed.rb +103 -39
- data/lib/graphql/static_validation/rules/variable_usages_are_allowed_error.rb +38 -0
- data/lib/graphql/static_validation/rules/variables_are_input_types.rb +22 -14
- data/lib/graphql/static_validation/rules/variables_are_input_types_error.rb +32 -0
- data/lib/graphql/static_validation/rules/variables_are_used_and_defined.rb +92 -70
- data/lib/graphql/static_validation/rules/variables_are_used_and_defined_error.rb +37 -0
- data/lib/graphql/static_validation/type_stack.rb +85 -24
- data/lib/graphql/static_validation/validation_context.rb +25 -46
- data/lib/graphql/static_validation/validation_timeout_error.rb +25 -0
- data/lib/graphql/static_validation/validator.rb +46 -15
- data/lib/graphql/static_validation.rb +6 -3
- data/lib/graphql/string_encoding_error.rb +20 -0
- data/lib/graphql/subscriptions/action_cable_subscriptions.rb +247 -0
- data/lib/graphql/subscriptions/broadcast_analyzer.rb +81 -0
- data/lib/graphql/subscriptions/default_subscription_resolve_extension.rb +58 -0
- data/lib/graphql/subscriptions/event.rb +144 -0
- data/lib/graphql/subscriptions/instrumentation.rb +28 -0
- data/lib/graphql/subscriptions/serialize.rb +158 -0
- data/lib/graphql/subscriptions.rb +306 -0
- data/lib/graphql/tracing/active_support_notifications_tracing.rb +21 -0
- data/lib/graphql/tracing/appoptics_tracing.rb +173 -0
- data/lib/graphql/tracing/appsignal_tracing.rb +51 -0
- data/lib/graphql/tracing/data_dog_tracing.rb +100 -0
- data/lib/graphql/tracing/instrumentation_tracing.rb +83 -0
- data/lib/graphql/tracing/new_relic_tracing.rb +51 -0
- data/lib/graphql/tracing/notifications_tracing.rb +59 -0
- data/lib/graphql/tracing/platform_tracing.rb +122 -0
- data/lib/graphql/tracing/prometheus_tracing/graphql_collector.rb +32 -0
- data/lib/graphql/tracing/prometheus_tracing.rb +67 -0
- data/lib/graphql/tracing/scout_tracing.rb +54 -0
- data/lib/graphql/tracing/statsd_tracing.rb +42 -0
- data/lib/graphql/tracing.rb +94 -0
- data/lib/graphql/type_kinds.rb +50 -22
- data/lib/graphql/types/big_int.rb +23 -0
- data/lib/graphql/types/boolean.rb +18 -0
- data/lib/graphql/types/float.rb +19 -0
- data/lib/graphql/types/id.rb +24 -0
- data/lib/graphql/types/int.rb +36 -0
- data/lib/graphql/types/iso_8601_date.rb +45 -0
- data/lib/graphql/types/iso_8601_date_time.rb +76 -0
- data/lib/graphql/types/json.rb +25 -0
- data/lib/graphql/types/relay/base_connection.rb +49 -0
- data/lib/graphql/types/relay/base_edge.rb +29 -0
- data/lib/graphql/types/relay/connection_behaviors.rb +154 -0
- data/lib/graphql/types/relay/default_relay.rb +21 -0
- data/lib/graphql/types/relay/edge_behaviors.rb +64 -0
- data/lib/graphql/types/relay/has_node_field.rb +41 -0
- data/lib/graphql/types/relay/has_nodes_field.rb +41 -0
- data/lib/graphql/types/relay/node.rb +15 -0
- data/lib/graphql/types/relay/node_behaviors.rb +19 -0
- data/lib/graphql/types/relay/page_info.rb +11 -0
- data/lib/graphql/types/relay/page_info_behaviors.rb +25 -0
- data/lib/graphql/types/relay.rb +39 -0
- data/lib/graphql/types/string.rb +29 -0
- data/lib/graphql/types.rb +11 -0
- data/lib/graphql/unauthorized_error.rb +29 -0
- data/lib/graphql/unauthorized_field_error.rb +23 -0
- data/lib/graphql/unresolved_type_error.rb +35 -0
- data/lib/graphql/version.rb +2 -1
- data/lib/graphql.rb +86 -41
- data/readme.md +15 -101
- metadata +394 -279
- data/lib/graphql/analysis/analyze_query.rb +0 -73
- data/lib/graphql/analysis/max_query_complexity.rb +0 -25
- data/lib/graphql/analysis/max_query_depth.rb +0 -25
- data/lib/graphql/analysis/query_complexity.rb +0 -122
- data/lib/graphql/analysis/query_depth.rb +0 -54
- data/lib/graphql/argument.rb +0 -25
- data/lib/graphql/base_type.rb +0 -115
- data/lib/graphql/boolean_type.rb +0 -9
- data/lib/graphql/define/assign_argument.rb +0 -20
- data/lib/graphql/define/assign_enum_value.rb +0 -16
- data/lib/graphql/define/assign_object_field.rb +0 -21
- data/lib/graphql/define/assignment_dictionary.rb +0 -26
- data/lib/graphql/define/defined_object_proxy.rb +0 -32
- data/lib/graphql/define/instance_definable.rb +0 -79
- data/lib/graphql/define/non_null_with_bang.rb +0 -15
- data/lib/graphql/define/type_definer.rb +0 -30
- data/lib/graphql/define.rb +0 -8
- data/lib/graphql/directive/include_directive.rb +0 -10
- data/lib/graphql/directive/skip_directive.rb +0 -11
- data/lib/graphql/directive.rb +0 -49
- data/lib/graphql/enum_type.rb +0 -95
- data/lib/graphql/field.rb +0 -131
- data/lib/graphql/float_type.rb +0 -5
- data/lib/graphql/id_type.rb +0 -12
- data/lib/graphql/input_object_type.rb +0 -71
- data/lib/graphql/int_type.rb +0 -5
- data/lib/graphql/interface_type.rb +0 -38
- data/lib/graphql/internal_representation/node.rb +0 -81
- data/lib/graphql/internal_representation/rewrite.rb +0 -177
- data/lib/graphql/internal_representation.rb +0 -2
- data/lib/graphql/introspection/arguments_field.rb +0 -5
- data/lib/graphql/introspection/enum_values_field.rb +0 -13
- data/lib/graphql/introspection/fields_field.rb +0 -13
- data/lib/graphql/introspection/input_fields_field.rb +0 -12
- data/lib/graphql/introspection/interfaces_field.rb +0 -5
- data/lib/graphql/introspection/of_type_field.rb +0 -6
- data/lib/graphql/introspection/possible_types_field.rb +0 -11
- data/lib/graphql/introspection/schema_field.rb +0 -15
- data/lib/graphql/introspection/type_by_name_field.rb +0 -16
- data/lib/graphql/introspection/typename_field.rb +0 -15
- data/lib/graphql/list_type.rb +0 -46
- data/lib/graphql/non_null_type.rb +0 -43
- data/lib/graphql/object_type.rb +0 -93
- data/lib/graphql/query/arguments.rb +0 -76
- data/lib/graphql/query/directive_resolution.rb +0 -16
- data/lib/graphql/query/executor.rb +0 -45
- data/lib/graphql/query/literal_input.rb +0 -90
- data/lib/graphql/query/serial_execution/execution_context.rb +0 -31
- data/lib/graphql/query/serial_execution/field_resolution.rb +0 -82
- data/lib/graphql/query/serial_execution/operation_resolution.rb +0 -27
- data/lib/graphql/query/serial_execution/selection_resolution.rb +0 -42
- data/lib/graphql/query/serial_execution/value_resolution.rb +0 -107
- data/lib/graphql/query/serial_execution.rb +0 -41
- data/lib/graphql/query/type_resolver.rb +0 -25
- data/lib/graphql/scalar_type.rb +0 -53
- data/lib/graphql/schema/catchall_middleware.rb +0 -34
- data/lib/graphql/schema/middleware_chain.rb +0 -28
- data/lib/graphql/schema/possible_types.rb +0 -34
- data/lib/graphql/schema/reduce_types.rb +0 -68
- data/lib/graphql/schema/rescue_middleware.rb +0 -53
- data/lib/graphql/schema/timeout_middleware.rb +0 -67
- data/lib/graphql/schema/type_map.rb +0 -30
- data/lib/graphql/schema/validation.rb +0 -164
- data/lib/graphql/static_validation/arguments_validator.rb +0 -48
- data/lib/graphql/static_validation/message.rb +0 -36
- data/lib/graphql/string_type.rb +0 -5
- data/lib/graphql/union_type.rb +0 -38
- data/spec/graphql/analysis/analyze_query_spec.rb +0 -50
- data/spec/graphql/analysis/max_query_complexity_spec.rb +0 -62
- data/spec/graphql/analysis/max_query_depth_spec.rb +0 -100
- data/spec/graphql/analysis/query_complexity_spec.rb +0 -235
- data/spec/graphql/analysis/query_depth_spec.rb +0 -80
- data/spec/graphql/argument_spec.rb +0 -20
- data/spec/graphql/base_type_spec.rb +0 -24
- data/spec/graphql/boolean_type_spec.rb +0 -20
- data/spec/graphql/define/instance_definable_spec.rb +0 -55
- data/spec/graphql/directive_spec.rb +0 -77
- data/spec/graphql/enum_type_spec.rb +0 -31
- data/spec/graphql/execution_error_spec.rb +0 -61
- data/spec/graphql/field_spec.rb +0 -92
- data/spec/graphql/float_type_spec.rb +0 -15
- data/spec/graphql/id_type_spec.rb +0 -32
- data/spec/graphql/input_object_type_spec.rb +0 -162
- data/spec/graphql/int_type_spec.rb +0 -15
- data/spec/graphql/interface_type_spec.rb +0 -56
- data/spec/graphql/internal_representation/rewrite_spec.rb +0 -120
- data/spec/graphql/introspection/directive_type_spec.rb +0 -50
- data/spec/graphql/introspection/input_value_type_spec.rb +0 -42
- data/spec/graphql/introspection/introspection_query_spec.rb +0 -10
- data/spec/graphql/introspection/schema_type_spec.rb +0 -45
- data/spec/graphql/introspection/type_type_spec.rb +0 -122
- data/spec/graphql/language/generation_spec.rb +0 -42
- data/spec/graphql/language/parser_spec.rb +0 -442
- data/spec/graphql/language/visitor_spec.rb +0 -49
- data/spec/graphql/list_type_spec.rb +0 -32
- data/spec/graphql/non_null_type_spec.rb +0 -31
- data/spec/graphql/object_type_spec.rb +0 -42
- data/spec/graphql/query/arguments_spec.rb +0 -25
- data/spec/graphql/query/context_spec.rb +0 -83
- data/spec/graphql/query/executor_spec.rb +0 -273
- data/spec/graphql/query/serial_execution/execution_context_spec.rb +0 -53
- data/spec/graphql/query/serial_execution/value_resolution_spec.rb +0 -66
- data/spec/graphql/query/type_resolver_spec.rb +0 -8
- data/spec/graphql/query/variables_spec.rb +0 -28
- data/spec/graphql/query_spec.rb +0 -363
- data/spec/graphql/scalar_type_spec.rb +0 -61
- data/spec/graphql/schema/catchall_middleware_spec.rb +0 -32
- data/spec/graphql/schema/middleware_chain_spec.rb +0 -42
- data/spec/graphql/schema/printer_spec.rb +0 -190
- data/spec/graphql/schema/reduce_types_spec.rb +0 -102
- data/spec/graphql/schema/rescue_middleware_spec.rb +0 -33
- data/spec/graphql/schema/timeout_middleware_spec.rb +0 -180
- data/spec/graphql/schema/type_expression_spec.rb +0 -38
- data/spec/graphql/schema/validation_spec.rb +0 -219
- data/spec/graphql/schema_spec.rb +0 -23
- data/spec/graphql/static_validation/rules/argument_literals_are_compatible_spec.rb +0 -63
- data/spec/graphql/static_validation/rules/arguments_are_defined_spec.rb +0 -48
- data/spec/graphql/static_validation/rules/directives_are_defined_spec.rb +0 -34
- data/spec/graphql/static_validation/rules/directives_are_in_valid_locations_spec.rb +0 -39
- data/spec/graphql/static_validation/rules/fields_are_defined_on_type_spec.rb +0 -60
- data/spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb +0 -31
- data/spec/graphql/static_validation/rules/fields_will_merge_spec.rb +0 -48
- data/spec/graphql/static_validation/rules/fragment_spreads_are_possible_spec.rb +0 -47
- data/spec/graphql/static_validation/rules/fragment_types_exist_spec.rb +0 -39
- data/spec/graphql/static_validation/rules/fragments_are_finite_spec.rb +0 -44
- data/spec/graphql/static_validation/rules/fragments_are_on_composite_types_spec.rb +0 -49
- data/spec/graphql/static_validation/rules/fragments_are_used_spec.rb +0 -25
- data/spec/graphql/static_validation/rules/required_arguments_are_present_spec.rb +0 -42
- data/spec/graphql/static_validation/rules/variable_default_values_are_correctly_typed_spec.rb +0 -44
- data/spec/graphql/static_validation/rules/variable_usages_are_allowed_spec.rb +0 -63
- data/spec/graphql/static_validation/rules/variables_are_input_types_spec.rb +0 -37
- data/spec/graphql/static_validation/rules/variables_are_used_and_defined_spec.rb +0 -53
- data/spec/graphql/static_validation/type_stack_spec.rb +0 -37
- data/spec/graphql/static_validation/validator_spec.rb +0 -69
- data/spec/graphql/string_type_spec.rb +0 -15
- data/spec/graphql/union_type_spec.rb +0 -31
- data/spec/spec_helper.rb +0 -18
- data/spec/support/dairy_app.rb +0 -309
- data/spec/support/dairy_data.rb +0 -23
- data/spec/support/minimum_input_object.rb +0 -16
- data/spec/support/star_wars_data.rb +0 -71
- data/spec/support/star_wars_schema.rb +0 -76
@@ -0,0 +1,113 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module GraphQL
|
3
|
+
class Schema
|
4
|
+
module Interface
|
5
|
+
include GraphQL::Schema::Member::GraphQLTypeNames
|
6
|
+
module DefinitionMethods
|
7
|
+
include GraphQL::Schema::Member::BaseDSLMethods
|
8
|
+
# ConfigurationExtension's responsibilities are in `def included` below
|
9
|
+
include GraphQL::Schema::Member::TypeSystemHelpers
|
10
|
+
include GraphQL::Schema::Member::HasFields
|
11
|
+
include GraphQL::Schema::Member::HasPath
|
12
|
+
include GraphQL::Schema::Member::RelayShortcuts
|
13
|
+
include GraphQL::Schema::Member::Scoped
|
14
|
+
include GraphQL::Schema::Member::HasAstNode
|
15
|
+
include GraphQL::Schema::Member::HasUnresolvedTypeError
|
16
|
+
include GraphQL::Schema::Member::HasDirectives
|
17
|
+
include GraphQL::Schema::Member::HasInterfaces
|
18
|
+
|
19
|
+
# Methods defined in this block will be:
|
20
|
+
# - Added as class methods to this interface
|
21
|
+
# - Added as class methods to all child interfaces
|
22
|
+
def definition_methods(&block)
|
23
|
+
self::DefinitionMethods.module_eval(&block)
|
24
|
+
end
|
25
|
+
|
26
|
+
# @see {Schema::Warden} hides interfaces without visible implementations
|
27
|
+
def visible?(context)
|
28
|
+
true
|
29
|
+
end
|
30
|
+
|
31
|
+
# The interface is accessible if any of its possible types are accessible
|
32
|
+
def accessible?(context)
|
33
|
+
context.schema.possible_types(self, context).each do |type|
|
34
|
+
if context.schema.accessible?(type, context)
|
35
|
+
return true
|
36
|
+
end
|
37
|
+
end
|
38
|
+
false
|
39
|
+
end
|
40
|
+
|
41
|
+
def type_membership_class(membership_class = nil)
|
42
|
+
if membership_class
|
43
|
+
@type_membership_class = membership_class
|
44
|
+
else
|
45
|
+
@type_membership_class || find_inherited_value(:type_membership_class, GraphQL::Schema::TypeMembership)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
# Here's the tricky part. Make sure behavior keeps making its way down the inheritance chain.
|
50
|
+
def included(child_class)
|
51
|
+
if !child_class.is_a?(Class)
|
52
|
+
# In this case, it's been included into another interface.
|
53
|
+
# This is how interface inheritance is implemented
|
54
|
+
|
55
|
+
# We need this before we can call `own_interfaces`
|
56
|
+
child_class.extend(Schema::Interface::DefinitionMethods)
|
57
|
+
|
58
|
+
child_class.type_membership_class(self.type_membership_class)
|
59
|
+
child_class.ancestors.reverse_each do |ancestor|
|
60
|
+
if ancestor.const_defined?(:DefinitionMethods)
|
61
|
+
child_class.extend(ancestor::DefinitionMethods)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
# Use an instance variable to tell whether it's been included previously or not;
|
66
|
+
# You can't use constant detection because constants are brought into scope
|
67
|
+
# by `include`, which has already happened at this point.
|
68
|
+
if !child_class.instance_variable_defined?(:@_definition_methods)
|
69
|
+
defn_methods_module = Module.new
|
70
|
+
child_class.instance_variable_set(:@_definition_methods, defn_methods_module)
|
71
|
+
child_class.const_set(:DefinitionMethods, defn_methods_module)
|
72
|
+
child_class.extend(child_class::DefinitionMethods)
|
73
|
+
end
|
74
|
+
child_class.introspection(introspection)
|
75
|
+
child_class.description(description)
|
76
|
+
# If interfaces are mixed into each other, only define this class once
|
77
|
+
if !child_class.const_defined?(:UnresolvedTypeError, false)
|
78
|
+
add_unresolved_type_error(child_class)
|
79
|
+
end
|
80
|
+
elsif child_class < GraphQL::Schema::Object
|
81
|
+
# This is being included into an object type, make sure it's using `implements(...)`
|
82
|
+
backtrace_line = caller(0, 10).find { |line| line.include?("schema/member/has_interfaces.rb") && line.include?("in `implements'")}
|
83
|
+
if !backtrace_line
|
84
|
+
raise "Attach interfaces using `implements(#{self})`, not `include(#{self})`"
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
super
|
89
|
+
end
|
90
|
+
|
91
|
+
def orphan_types(*types)
|
92
|
+
if types.any?
|
93
|
+
@orphan_types = types
|
94
|
+
else
|
95
|
+
all_orphan_types = @orphan_types || []
|
96
|
+
all_orphan_types += super if defined?(super)
|
97
|
+
all_orphan_types.uniq
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
def kind
|
102
|
+
GraphQL::TypeKinds::INTERFACE
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
extend DefinitionMethods
|
107
|
+
|
108
|
+
def unwrap
|
109
|
+
self
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
@@ -0,0 +1,164 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module GraphQL
|
3
|
+
class Schema
|
4
|
+
class IntrospectionSystem
|
5
|
+
attr_reader :types, :possible_types
|
6
|
+
|
7
|
+
def initialize(schema)
|
8
|
+
@schema = schema
|
9
|
+
@class_based = !!@schema.is_a?(Class)
|
10
|
+
@built_in_namespace = GraphQL::Introspection
|
11
|
+
@custom_namespace = if @class_based
|
12
|
+
schema.introspection || @built_in_namespace
|
13
|
+
else
|
14
|
+
schema.introspection_namespace || @built_in_namespace
|
15
|
+
end
|
16
|
+
|
17
|
+
type_defns = [
|
18
|
+
load_constant(:SchemaType),
|
19
|
+
load_constant(:TypeType),
|
20
|
+
load_constant(:FieldType),
|
21
|
+
load_constant(:DirectiveType),
|
22
|
+
load_constant(:EnumValueType),
|
23
|
+
load_constant(:InputValueType),
|
24
|
+
load_constant(:TypeKindEnum),
|
25
|
+
load_constant(:DirectiveLocationEnum)
|
26
|
+
]
|
27
|
+
@types = {}
|
28
|
+
@possible_types = {}
|
29
|
+
type_defns.each do |t|
|
30
|
+
@types[t.graphql_name] = t
|
31
|
+
@possible_types[t.graphql_name] = [t]
|
32
|
+
end
|
33
|
+
@entry_point_fields =
|
34
|
+
if schema.disable_introspection_entry_points?
|
35
|
+
{}
|
36
|
+
else
|
37
|
+
entry_point_fields = get_fields_from_class(class_sym: :EntryPoints)
|
38
|
+
entry_point_fields.delete('__schema') if schema.disable_schema_introspection_entry_point?
|
39
|
+
entry_point_fields.delete('__type') if schema.disable_type_introspection_entry_point?
|
40
|
+
entry_point_fields
|
41
|
+
end
|
42
|
+
@dynamic_fields = get_fields_from_class(class_sym: :DynamicFields)
|
43
|
+
end
|
44
|
+
|
45
|
+
def entry_points
|
46
|
+
@entry_point_fields.values
|
47
|
+
end
|
48
|
+
|
49
|
+
def entry_point(name:)
|
50
|
+
@entry_point_fields[name]
|
51
|
+
end
|
52
|
+
|
53
|
+
def dynamic_fields
|
54
|
+
@dynamic_fields.values
|
55
|
+
end
|
56
|
+
|
57
|
+
def dynamic_field(name:)
|
58
|
+
@dynamic_fields[name]
|
59
|
+
end
|
60
|
+
|
61
|
+
# The introspection system is prepared with a bunch of LateBoundTypes.
|
62
|
+
# Replace those with the objects that they refer to, since LateBoundTypes
|
63
|
+
# aren't handled at runtime.
|
64
|
+
#
|
65
|
+
# @api private
|
66
|
+
# @return void
|
67
|
+
def resolve_late_bindings
|
68
|
+
@types.each do |name, t|
|
69
|
+
if t.kind.fields?
|
70
|
+
t.fields.each do |_name, field_defn|
|
71
|
+
field_defn.type = resolve_late_binding(field_defn.type)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
@entry_point_fields.each do |name, f|
|
77
|
+
f.type = resolve_late_binding(f.type)
|
78
|
+
end
|
79
|
+
|
80
|
+
@dynamic_fields.each do |name, f|
|
81
|
+
f.type = resolve_late_binding(f.type)
|
82
|
+
end
|
83
|
+
nil
|
84
|
+
end
|
85
|
+
|
86
|
+
private
|
87
|
+
|
88
|
+
def resolve_late_binding(late_bound_type)
|
89
|
+
case late_bound_type
|
90
|
+
when GraphQL::Schema::LateBoundType
|
91
|
+
@schema.get_type(late_bound_type.name)
|
92
|
+
when GraphQL::Schema::List
|
93
|
+
resolve_late_binding(late_bound_type.of_type).to_list_type
|
94
|
+
when GraphQL::Schema::NonNull
|
95
|
+
resolve_late_binding(late_bound_type.of_type).to_non_null_type
|
96
|
+
when Module
|
97
|
+
# It's a normal type -- no change required
|
98
|
+
late_bound_type
|
99
|
+
else
|
100
|
+
raise "Invariant: unexpected type: #{late_bound_type} (#{late_bound_type.class})"
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
def load_constant(class_name)
|
105
|
+
const = @custom_namespace.const_get(class_name)
|
106
|
+
dup_type_class(const)
|
107
|
+
rescue NameError
|
108
|
+
# Dup the built-in so that the cached fields aren't shared
|
109
|
+
dup_type_class(@built_in_namespace.const_get(class_name))
|
110
|
+
end
|
111
|
+
|
112
|
+
def get_fields_from_class(class_sym:)
|
113
|
+
object_type_defn = load_constant(class_sym)
|
114
|
+
|
115
|
+
if object_type_defn.is_a?(Module)
|
116
|
+
object_type_defn.fields
|
117
|
+
else
|
118
|
+
extracted_field_defns = {}
|
119
|
+
object_class = object_type_defn.metadata[:type_class]
|
120
|
+
object_type_defn.all_fields.each do |field_defn|
|
121
|
+
inner_resolve = field_defn.resolve_proc
|
122
|
+
resolve_with_instantiate = PerFieldProxyResolve.new(object_class: object_class, inner_resolve: inner_resolve)
|
123
|
+
extracted_field_defns[field_defn.name] = field_defn.redefine(resolve: resolve_with_instantiate)
|
124
|
+
end
|
125
|
+
extracted_field_defns
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
# This is probably not 100% robust -- but it has to be good enough to avoid modifying the built-in introspection types
|
130
|
+
def dup_type_class(type_class)
|
131
|
+
type_name = type_class.graphql_name
|
132
|
+
Class.new(type_class) do
|
133
|
+
# This won't be inherited like other things will
|
134
|
+
graphql_name(type_name)
|
135
|
+
|
136
|
+
if type_class.kind.fields?
|
137
|
+
type_class.fields.each do |_name, field_defn|
|
138
|
+
dup_field = field_defn.dup
|
139
|
+
dup_field.owner = self
|
140
|
+
add_field(dup_field)
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
class PerFieldProxyResolve
|
147
|
+
def initialize(object_class:, inner_resolve:)
|
148
|
+
@object_class = object_class
|
149
|
+
@inner_resolve = inner_resolve
|
150
|
+
end
|
151
|
+
|
152
|
+
def call(obj, args, ctx)
|
153
|
+
query_ctx = ctx.query.context
|
154
|
+
# Remove the QueryType wrapper
|
155
|
+
if obj.is_a?(GraphQL::Schema::Object)
|
156
|
+
obj = obj.object
|
157
|
+
end
|
158
|
+
wrapped_object = @object_class.authorized_new(obj, query_ctx)
|
159
|
+
@inner_resolve.call(wrapped_object, args, ctx)
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
163
|
+
end
|
164
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module GraphQL
|
3
|
+
class Schema
|
4
|
+
# A stand-in for a type which will be resolved in a given schema, by name.
|
5
|
+
# TODO: support argument types too, make this a public API somehow
|
6
|
+
# @api Private
|
7
|
+
class LateBoundType
|
8
|
+
attr_reader :name
|
9
|
+
alias :graphql_name :name
|
10
|
+
def initialize(local_name)
|
11
|
+
@name = local_name
|
12
|
+
end
|
13
|
+
|
14
|
+
def unwrap
|
15
|
+
self
|
16
|
+
end
|
17
|
+
|
18
|
+
def to_non_null_type
|
19
|
+
@to_non_null_type ||= GraphQL::Schema::NonNull.new(self)
|
20
|
+
end
|
21
|
+
|
22
|
+
def to_list_type
|
23
|
+
@to_list_type ||= GraphQL::Schema::List.new(self)
|
24
|
+
end
|
25
|
+
|
26
|
+
def inspect
|
27
|
+
"#<LateBoundType @name=#{name}>"
|
28
|
+
end
|
29
|
+
|
30
|
+
def non_null?
|
31
|
+
false
|
32
|
+
end
|
33
|
+
|
34
|
+
alias :to_s :inspect
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,86 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module GraphQL
|
4
|
+
class Schema
|
5
|
+
# Represents a list type in the schema.
|
6
|
+
# Wraps a {Schema::Member} as a list type.
|
7
|
+
# @see {Schema::Member::TypeSystemHelpers#to_list_type}
|
8
|
+
class List < GraphQL::Schema::Wrapper
|
9
|
+
include Schema::Member::ValidatesInput
|
10
|
+
|
11
|
+
# @return [GraphQL::TypeKinds::LIST]
|
12
|
+
def kind
|
13
|
+
GraphQL::TypeKinds::LIST
|
14
|
+
end
|
15
|
+
|
16
|
+
# @return [true]
|
17
|
+
def list?
|
18
|
+
true
|
19
|
+
end
|
20
|
+
|
21
|
+
def to_type_signature
|
22
|
+
"[#{@of_type.to_type_signature}]"
|
23
|
+
end
|
24
|
+
|
25
|
+
# This is for introspection, where it's expected the name will be `null`
|
26
|
+
def graphql_name
|
27
|
+
nil
|
28
|
+
end
|
29
|
+
|
30
|
+
# Also for implementing introspection
|
31
|
+
def description
|
32
|
+
nil
|
33
|
+
end
|
34
|
+
|
35
|
+
def coerce_result(value, ctx)
|
36
|
+
value.map { |i| i.nil? ? nil : of_type.coerce_result(i, ctx) }
|
37
|
+
end
|
38
|
+
|
39
|
+
def coerce_input(value, ctx)
|
40
|
+
if value.nil?
|
41
|
+
nil
|
42
|
+
else
|
43
|
+
coerced = ensure_array(value).map { |item| item.nil? ? item : of_type.coerce_input(item, ctx) }
|
44
|
+
ctx.schema.after_any_lazies(coerced, &:itself)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def validate_non_null_input(value, ctx, max_errors: nil)
|
49
|
+
result = GraphQL::Query::InputValidationResult.new
|
50
|
+
ensure_array(value).each_with_index do |item, index|
|
51
|
+
item_result = of_type.validate_input(item, ctx)
|
52
|
+
unless item_result.valid?
|
53
|
+
if max_errors
|
54
|
+
if max_errors == 0
|
55
|
+
add_max_errros_reached_message(result)
|
56
|
+
break
|
57
|
+
end
|
58
|
+
|
59
|
+
max_errors -= 1
|
60
|
+
end
|
61
|
+
|
62
|
+
result.merge_result!(index, item_result)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
result.valid? ? nil : result
|
66
|
+
end
|
67
|
+
|
68
|
+
private
|
69
|
+
|
70
|
+
def ensure_array(value)
|
71
|
+
# `Array({ a: 1 })` makes `[[:a, 1]]`, so do it manually
|
72
|
+
if value.is_a?(Array)
|
73
|
+
value
|
74
|
+
else
|
75
|
+
[value]
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
def add_max_errros_reached_message(result)
|
80
|
+
message = "Too many errors processing list variable, max validation error limit reached. Execution aborted"
|
81
|
+
item_result = GraphQL::Query::InputValidationResult.from_problem(message)
|
82
|
+
result.merge_result!(nil, item_result)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
@@ -0,0 +1,228 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module GraphQL
|
3
|
+
class Schema
|
4
|
+
# You can use the result of {GraphQL::Introspection::INTROSPECTION_QUERY}
|
5
|
+
# to make a schema. This schema is missing some important details like
|
6
|
+
# `resolve` functions, but it does include the full type system,
|
7
|
+
# so you can use it to validate queries.
|
8
|
+
#
|
9
|
+
# @see GraphQL::Schema.from_introspection for a public API
|
10
|
+
module Loader
|
11
|
+
extend self
|
12
|
+
|
13
|
+
# Create schema with the result of an introspection query.
|
14
|
+
# @param introspection_result [Hash] A response from {GraphQL::Introspection::INTROSPECTION_QUERY}
|
15
|
+
# @return [Class] the schema described by `input`
|
16
|
+
def load(introspection_result)
|
17
|
+
schema = introspection_result.fetch("data").fetch("__schema")
|
18
|
+
|
19
|
+
types = {}
|
20
|
+
type_resolver = ->(type) { resolve_type(types, type) }
|
21
|
+
|
22
|
+
schema.fetch("types").each do |type|
|
23
|
+
next if type.fetch("name").start_with?("__")
|
24
|
+
type_object = define_type(type, type_resolver)
|
25
|
+
types[type["name"]] = type_object
|
26
|
+
end
|
27
|
+
|
28
|
+
directives = []
|
29
|
+
schema.fetch("directives", []).each do |directive|
|
30
|
+
next if GraphQL::Schema.default_directives.include?(directive.fetch("name"))
|
31
|
+
directives << define_directive(directive, type_resolver)
|
32
|
+
end
|
33
|
+
|
34
|
+
Class.new(GraphQL::Schema) do
|
35
|
+
orphan_types(types.values)
|
36
|
+
directives(directives)
|
37
|
+
description(schema["description"])
|
38
|
+
|
39
|
+
def self.resolve_type(*)
|
40
|
+
raise(GraphQL::RequiredImplementationMissingError, "This schema was loaded from string, so it can't resolve types for objects")
|
41
|
+
end
|
42
|
+
|
43
|
+
[:query, :mutation, :subscription].each do |root|
|
44
|
+
type = schema["#{root}Type"]
|
45
|
+
if type
|
46
|
+
type_defn = types.fetch(type.fetch("name"))
|
47
|
+
self.public_send(root, type_defn)
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
NullScalarCoerce = ->(val, _ctx) { val }
|
54
|
+
|
55
|
+
class << self
|
56
|
+
private
|
57
|
+
|
58
|
+
def resolve_type(types, type)
|
59
|
+
case kind = type.fetch("kind")
|
60
|
+
when "ENUM", "INTERFACE", "INPUT_OBJECT", "OBJECT", "SCALAR", "UNION"
|
61
|
+
type_name = type.fetch("name")
|
62
|
+
type = types[type_name] || Schema::BUILT_IN_TYPES[type_name]
|
63
|
+
if type.nil?
|
64
|
+
GraphQL::Schema::LateBoundType.new(type_name)
|
65
|
+
else
|
66
|
+
type
|
67
|
+
end
|
68
|
+
when "LIST"
|
69
|
+
Schema::List.new(resolve_type(types, type.fetch("ofType")))
|
70
|
+
when "NON_NULL"
|
71
|
+
Schema::NonNull.new(resolve_type(types, type.fetch("ofType")))
|
72
|
+
else
|
73
|
+
fail GraphQL::RequiredImplementationMissingError, "#{kind} not implemented"
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
def extract_default_value(default_value_str, input_value_ast)
|
78
|
+
case input_value_ast
|
79
|
+
when String, Integer, Float, TrueClass, FalseClass
|
80
|
+
input_value_ast
|
81
|
+
when GraphQL::Language::Nodes::Enum
|
82
|
+
input_value_ast.name
|
83
|
+
when GraphQL::Language::Nodes::NullValue
|
84
|
+
nil
|
85
|
+
when GraphQL::Language::Nodes::InputObject
|
86
|
+
input_value_ast.to_h
|
87
|
+
when Array
|
88
|
+
input_value_ast.map { |element| extract_default_value(default_value_str, element) }
|
89
|
+
else
|
90
|
+
raise(
|
91
|
+
"Encountered unexpected type when loading default value. "\
|
92
|
+
"input_value_ast.class is #{input_value_ast.class} "\
|
93
|
+
"default_value is #{default_value_str}"
|
94
|
+
)
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
def define_type(type, type_resolver)
|
99
|
+
loader = self
|
100
|
+
case type.fetch("kind")
|
101
|
+
when "ENUM"
|
102
|
+
Class.new(GraphQL::Schema::Enum) do
|
103
|
+
graphql_name(type["name"])
|
104
|
+
description(type["description"])
|
105
|
+
type["enumValues"].each do |enum_value|
|
106
|
+
value(
|
107
|
+
enum_value["name"],
|
108
|
+
description: enum_value["description"],
|
109
|
+
deprecation_reason: enum_value["deprecationReason"],
|
110
|
+
)
|
111
|
+
end
|
112
|
+
end
|
113
|
+
when "INTERFACE"
|
114
|
+
Module.new do
|
115
|
+
include GraphQL::Schema::Interface
|
116
|
+
graphql_name(type["name"])
|
117
|
+
description(type["description"])
|
118
|
+
loader.build_fields(self, type["fields"] || [], type_resolver)
|
119
|
+
end
|
120
|
+
when "INPUT_OBJECT"
|
121
|
+
Class.new(GraphQL::Schema::InputObject) do
|
122
|
+
graphql_name(type["name"])
|
123
|
+
description(type["description"])
|
124
|
+
loader.build_arguments(self, type["inputFields"], type_resolver)
|
125
|
+
end
|
126
|
+
when "OBJECT"
|
127
|
+
Class.new(GraphQL::Schema::Object) do
|
128
|
+
graphql_name(type["name"])
|
129
|
+
description(type["description"])
|
130
|
+
if type["interfaces"]
|
131
|
+
type["interfaces"].each do |interface_type|
|
132
|
+
implements(type_resolver.call(interface_type))
|
133
|
+
end
|
134
|
+
end
|
135
|
+
loader.build_fields(self, type["fields"], type_resolver)
|
136
|
+
end
|
137
|
+
when "SCALAR"
|
138
|
+
type_name = type.fetch("name")
|
139
|
+
if (builtin = GraphQL::Schema::BUILT_IN_TYPES[type_name])
|
140
|
+
builtin
|
141
|
+
else
|
142
|
+
Class.new(GraphQL::Schema::Scalar) do
|
143
|
+
graphql_name(type["name"])
|
144
|
+
description(type["description"])
|
145
|
+
specified_by_url(type["specifiedByURL"])
|
146
|
+
end
|
147
|
+
end
|
148
|
+
when "UNION"
|
149
|
+
Class.new(GraphQL::Schema::Union) do
|
150
|
+
graphql_name(type["name"])
|
151
|
+
description(type["description"])
|
152
|
+
possible_types(*(type["possibleTypes"].map { |pt| type_resolver.call(pt) }))
|
153
|
+
end
|
154
|
+
else
|
155
|
+
fail GraphQL::RequiredImplementationMissingError, "#{type["kind"]} not implemented"
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
def define_directive(directive, type_resolver)
|
160
|
+
loader = self
|
161
|
+
Class.new(GraphQL::Schema::Directive) do
|
162
|
+
graphql_name(directive["name"])
|
163
|
+
description(directive["description"])
|
164
|
+
locations(*directive["locations"].map(&:to_sym))
|
165
|
+
repeatable(directive["isRepeatable"])
|
166
|
+
loader.build_arguments(self, directive["args"], type_resolver)
|
167
|
+
end
|
168
|
+
end
|
169
|
+
|
170
|
+
public
|
171
|
+
|
172
|
+
def build_fields(type_defn, fields, type_resolver)
|
173
|
+
loader = self
|
174
|
+
fields.each do |field_hash|
|
175
|
+
unwrapped_field_hash = field_hash
|
176
|
+
while (of_type = unwrapped_field_hash["ofType"])
|
177
|
+
unwrapped_field_hash = of_type
|
178
|
+
end
|
179
|
+
type_name = unwrapped_field_hash["name"]
|
180
|
+
|
181
|
+
type_defn.field(
|
182
|
+
field_hash["name"],
|
183
|
+
type: type_resolver.call(field_hash["type"]),
|
184
|
+
description: field_hash["description"],
|
185
|
+
deprecation_reason: field_hash["deprecationReason"],
|
186
|
+
null: true,
|
187
|
+
camelize: false,
|
188
|
+
connection_extension: nil,
|
189
|
+
connection: type_name.end_with?("Connection"),
|
190
|
+
) do
|
191
|
+
if field_hash["args"].any?
|
192
|
+
loader.build_arguments(self, field_hash["args"], type_resolver)
|
193
|
+
end
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
def build_arguments(arg_owner, args, type_resolver)
|
199
|
+
args.each do |arg|
|
200
|
+
kwargs = {
|
201
|
+
type: type_resolver.call(arg["type"]),
|
202
|
+
description: arg["description"],
|
203
|
+
deprecation_reason: arg["deprecationReason"],
|
204
|
+
required: false,
|
205
|
+
camelize: false,
|
206
|
+
}
|
207
|
+
|
208
|
+
if arg["defaultValue"]
|
209
|
+
default_value_str = arg["defaultValue"]
|
210
|
+
|
211
|
+
dummy_query_str = "query getStuff($var: InputObj = #{default_value_str}) { __typename }"
|
212
|
+
|
213
|
+
# Returns a `GraphQL::Language::Nodes::Document`:
|
214
|
+
dummy_query_ast = GraphQL.parse(dummy_query_str)
|
215
|
+
|
216
|
+
# Reach into the AST for the default value:
|
217
|
+
input_value_ast = dummy_query_ast.definitions.first.variables.first.default_value
|
218
|
+
|
219
|
+
kwargs[:default_value] = extract_default_value(default_value_str, input_value_ast)
|
220
|
+
end
|
221
|
+
|
222
|
+
arg_owner.argument(arg["name"], **kwargs)
|
223
|
+
end
|
224
|
+
end
|
225
|
+
end
|
226
|
+
end
|
227
|
+
end
|
228
|
+
end
|