Class: GraphQL::Execution::PrepareObjectStep
- Inherits:
-
Object
- Object
- GraphQL::Execution::PrepareObjectStep
- Defined in:
- lib/graphql/execution/prepare_object_step.rb
Instance Method Summary collapse
- #authorize ⇒ Object
- #call ⇒ Object
- #create_result ⇒ Object
-
#initialize(object:, runner:, graphql_result:, key:, is_non_null:, field_resolve_step:, next_objects:, next_results:, is_from_array:) ⇒ PrepareObjectStep
constructor
A new instance of PrepareObjectStep.
- #value ⇒ Object
Constructor Details
#initialize(object:, runner:, graphql_result:, key:, is_non_null:, field_resolve_step:, next_objects:, next_results:, is_from_array:) ⇒ PrepareObjectStep
Returns a new instance of PrepareObjectStep.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/graphql/execution/prepare_object_step.rb', line 5 def initialize(object:, runner:, graphql_result:, key:, is_non_null:, field_resolve_step:, next_objects:, next_results:, is_from_array:) @object = object @runner = runner @field_resolve_step = field_resolve_step @is_non_null = is_non_null @next_objects = next_objects @next_results = next_results @graphql_result = graphql_result @resolved_type = nil @authorized_value = nil @authorization_error = nil @key = key @next_step = :resolve_type @is_from_array = is_from_array end |
Instance Method Details
#authorize ⇒ Object
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/graphql/execution/prepare_object_step.rb', line 70 def if @field_resolve_step.was_scoped && !@resolved_type. @authorized_value = @object create_result return end query = @field_resolve_step.selections_step.query begin query.current_trace.(@resolved_type, @object, query.context) @authorized_value = @resolved_type.(@object, query.context) query.current_trace.(@resolved_type, @object, query.context, @authorized_value) rescue GraphQL::UnauthorizedError => auth_err @authorization_error = auth_err end if @runner.resolves_lazies && @runner.lazy?(@authorized_value) @runner.dataloader.lazy_at_depth(@field_resolve_step.path.size, self) @next_step = :create_result else create_result end rescue GraphQL::RuntimeError => err @graphql_result[@key] = @field_resolve_step.add_graphql_error(err) rescue StandardError => err query ||= @field_resolve_step.selections_step.query begin query.handle_or_reraise(err, field: @field_resolve_step.field_definition, arguments: @field_resolve_step.arguments, object: @object) # rubocop:disable Development/ContextIsPassedCop rescue GraphQL::RuntimeError => err @graphql_result[@key] = @field_resolve_step.add_graphql_error(err) end end |
#call ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/graphql/execution/prepare_object_step.rb', line 41 def call case @next_step when :resolve_type static_type = @field_resolve_step.static_type if static_type.kind.abstract? query = @field_resolve_step.selections_step.query @resolved_type, new_value = ResolveTypeStep.resolve_type(static_type, @object, query) if new_value ResolveTypeStep.assert_valid_resolved_type(static_type, @resolved_type, new_value, @field_resolve_step) @object = new_value end else @resolved_type = static_type end if @runner.resolves_lazies && @runner.lazy?(@resolved_type) @next_step = :authorize @runner.dataloader.lazy_at_depth(@field_resolve_step.path.size, self) else end when :authorize when :create_result create_result else raise ArgumentError, "This is a bug, unknown step: #{@next_step.inspect}" end end |
#create_result ⇒ Object
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/graphql/execution/prepare_object_step.rb', line 103 def create_result if !@authorized_value @authorization_error ||= GraphQL::UnauthorizedError.new(object: @object, type: @resolved_type, context: @field_resolve_step.selections_step.query.context) end if @authorization_error begin new_obj = @runner.schema.(@authorization_error) if new_obj @authorized_value = true @object = new_obj elsif @is_non_null @graphql_result[@key] = @field_resolve_step.add_non_null_error(@is_from_array) else @graphql_result[@key] = @field_resolve_step.add_graphql_error(@authorization_error) end rescue GraphQL::RuntimeError => err if @is_non_null @graphql_result[@key] = @field_resolve_step.add_non_null_error(@is_from_array) else @graphql_result[@key] = @field_resolve_step.add_graphql_error(err) end end end if @authorized_value next_result_h = {} @next_results << next_result_h @next_objects << @object @graphql_result[@key] = next_result_h @runner.runtime_type_at[next_result_h] = @resolved_type @runner.static_type_at[next_result_h] = @field_resolve_step.static_type end @field_resolve_step.(self) end |
#value ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/graphql/execution/prepare_object_step.rb', line 21 def value if @authorized_value query = @field_resolve_step.selections_step.query query.current_trace.(@resolved_type, @object, query.context) @authorized_value = @field_resolve_step.sync(@authorized_value) query.current_trace.(@resolved_type, @object, query.context, @authorized_value) elsif @resolved_type ctx = @field_resolve_step.selections_step.query.context st = @field_resolve_step.static_type ctx.query.current_trace.begin_resolve_type(st, @object, ctx) @resolved_type, new_value = @field_resolve_step.sync(@resolved_type) ResolveTypeStep.assert_valid_resolved_type(st, @resolved_type, new_value, @field_resolve_step) if new_value @object = new_value end ctx.query.current_trace.end_resolve_type(st, @object, ctx, @resolved_type) end @runner.add_step(self) end |