@@ -99,17 +99,17 @@ def visible_type?(type_defn, _ctx = nil); true; end
9999 def visible_enum_value? ( enum_value , _ctx = nil ) ; true ; end
100100 def visible_type_membership? ( type_membership , _ctx = nil ) ; true ; end
101101 def interface_type_memberships ( obj_type , _ctx = nil ) ; obj_type . interface_type_memberships ; end
102- def get_type ( type_name ) ; @schema . get_type ( type_name ) ; end
102+ def get_type ( type_name ) ; @schema . get_type ( type_name ) ; end # rubocop:disable Development/ContextIsPassedCop
103103 def arguments ( argument_owner , ctx = nil ) ; argument_owner . arguments ( ctx ) . values ; end
104- def enum_values ( enum_defn ) ; enum_defn . enum_values ; end
105- def get_argument ( parent_type , argument_name ) ; parent_type . get_argument ( argument_name ) ; end
106- def types ; @schema . types ; end
104+ def enum_values ( enum_defn ) ; enum_defn . enum_values ; end # rubocop:disable Development/ContextIsPassedCop
105+ def get_argument ( parent_type , argument_name ) ; parent_type . get_argument ( argument_name ) ; end # rubocop:disable Development/ContextIsPassedCop
106+ def types ; @schema . types ; end # rubocop:disable Development/ContextIsPassedCop
107107 def root_type_for_operation ( op_name ) ; @schema . root_type_for_operation ( op_name ) ; end
108108 def directives ; @schema . directives . values ; end
109- def fields ( type_defn ) ; type_defn . fields ; end
109+ def fields ( type_defn ) ; type_defn . fields ; end # rubocop:disable Development/ContextIsPassedCop
110110 def get_field ( parent_type , field_name ) ; @schema . get_field ( parent_type , field_name ) ; end
111111 def reachable_type? ( type_name ) ; true ; end
112- def reachable_types ; @schema . types . values ; end
112+ def reachable_types ; @schema . types . values ; end # rubocop:disable Development/ContextIsPassedCop
113113 def possible_types ( type_defn ) ; @schema . possible_types ( type_defn ) ; end
114114 def interfaces ( obj_type ) ; obj_type . interfaces ; end
115115 end
0 commit comments