@@ -81,10 +81,19 @@ def match?(pattern)
8181# Order matters for these:
8282
8383require "graphql/execution_error"
84+ require "graphql/runtime_type_error"
85+ require "graphql/unresolved_type_error"
86+ require "graphql/invalid_null_error"
87+ require "graphql/analysis_error"
88+ require "graphql/coercion_error"
89+ require "graphql/invalid_name_error"
90+ require "graphql/integer_decoding_error"
91+ require "graphql/integer_encoding_error"
92+ require "graphql/string_encoding_error"
93+
8494require "graphql/define"
8595require "graphql/base_type"
8696require "graphql/object_type"
87-
8897require "graphql/enum_type"
8998require "graphql/input_object_type"
9099require "graphql/interface_type"
@@ -109,9 +118,6 @@ def match?(pattern)
109118require "graphql/tracing"
110119require "graphql/dig"
111120require "graphql/execution"
112- require "graphql/runtime_type_error"
113- require "graphql/unresolved_type_error"
114- require "graphql/invalid_null_error"
115121require "graphql/pagination"
116122require "graphql/schema"
117123require "graphql/query"
@@ -133,12 +139,6 @@ def match?(pattern)
133139require "graphql/dataloader"
134140require "graphql/introspection"
135141
136- require "graphql/analysis_error"
137- require "graphql/coercion_error"
138- require "graphql/invalid_name_error"
139- require "graphql/integer_decoding_error"
140- require "graphql/integer_encoding_error"
141- require "graphql/string_encoding_error"
142142require "graphql/version"
143143require "graphql/compatibility"
144144require "graphql/function"
0 commit comments