Class: GraphQL::ExecutionError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/graphql/execution_error.rb

Overview

If a field's resolve function returns a ExecutionError, the error will be inserted into the response's "errors" key and the field will resolve to nil.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, ast_node: nil, ast_nodes: nil, options: nil, extensions: nil) ⇒ ExecutionError

Returns a new instance of ExecutionError.



21
22
23
24
25
26
# File 'lib/graphql/execution_error.rb', line 21

def initialize(message, ast_node: nil, ast_nodes: nil, options: nil, extensions: nil)
  @ast_nodes = ast_nodes || [ast_node]
  @options = options
  @extensions = extensions
  super(message)
end

Instance Attribute Details

#extensionsHash

under the extensions key.

Returns:

  • (Hash)

    Optional custom data for error objects which will be added



19
20
21
# File 'lib/graphql/execution_error.rb', line 19

def extensions
  @extensions
end

#optionsHash

Deprecated.

Use extensions instead of options. The GraphQL spec

recommends that any custom entries in an error be under the extensions key.

Returns:

  • (Hash)

    Optional data for error objects



15
16
17
# File 'lib/graphql/execution_error.rb', line 15

def options
  @options
end

#pathString

response which corresponds to this error.

Returns:

  • (String)

    an array describing the JSON-path into the execution



9
10
11
# File 'lib/graphql/execution_error.rb', line 9

def path
  @path
end

Instance Method Details

#finalize_graphql_result(query, result_data, key) ⇒ Object



28
29
30
31
32
33
34
35
# File 'lib/graphql/execution_error.rb', line 28

def finalize_graphql_result(query, result_data, key)
  if ast_node.is_a?(GraphQL::Language::Nodes::Directive)
    # This is for backwards compatibility ... what does the spec say?
    result_data.delete(key)
  else
    result_data[key] = nil
  end
end

#to_hHash

Returns An entry for the response's "errors" key.

Returns:

  • (Hash)

    An entry for the response's "errors" key



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/graphql/execution_error.rb', line 38

def to_h
  hash = {
    "message" => message,
  }
  if ast_node
    hash["locations"] = @ast_nodes.map { |a| { "line" => a.line, "column" => a.col } }
  end
  if path
    hash["path"] = path
  end
  if options
    hash.merge!(options)
  end
  if extensions
    hash["extensions"] = extensions.each_with_object({}) { |(key, value), ext|
      ext[key.to_s] = value
    }
  end
  hash
end