File tree Expand file tree Collapse file tree 4 files changed +0
-55
lines changed Expand file tree Collapse file tree 4 files changed +0
-55
lines changed Original file line number Diff line number Diff line change @@ -94,11 +94,6 @@ Comparators for types:
9494.. autofunction :: is_type_sub_type_of
9595.. autofunction :: do_types_overlap
9696
97- Assert that a string is a valid GraphQL name:
98-
99- .. autofunction :: assert_valid_name
100- .. autofunction :: is_valid_name_error
101-
10297Compare two GraphQLSchemas and detect breaking changes:
10398
10499.. autofunction :: find_breaking_changes
Original file line number Diff line number Diff line change 212212 is_equal_type ,
213213 is_type_sub_type_of ,
214214 do_types_overlap ,
215- # Assert a string is a valid GraphQL name.
216- assert_valid_name ,
217- # Determine if a string is a valid GraphQL name.
218- is_valid_name_error ,
219215 # Compare two GraphQLSchemas and detect breaking changes.
220216 BreakingChange ,
221217 BreakingChangeType ,
764760 "is_equal_type" ,
765761 "is_type_sub_type_of" ,
766762 "do_types_overlap" ,
767- "assert_valid_name" ,
768- "is_valid_name_error" ,
769763 "find_breaking_changes" ,
770764 "find_dangerous_changes" ,
771765 "BreakingChange" ,
Original file line number Diff line number Diff line change 6868# Comparators for types
6969from .type_comparators import is_equal_type , is_type_sub_type_of , do_types_overlap
7070
71- # Assert that a string is a valid GraphQL name.
72- from .assert_valid_name import assert_valid_name , is_valid_name_error
73-
7471# Compare two GraphQLSchemas and detect breaking changes.
7572from .find_breaking_changes import (
7673 BreakingChange ,
8986 "IntrospectionQuery" ,
9087 "TypeInfo" ,
9188 "TypeInfoVisitor" ,
92- "assert_valid_name" ,
9389 "ast_from_value" ,
9490 "ast_to_dict" ,
9591 "build_ast_schema" ,
105101 "get_operation_ast" ,
106102 "is_equal_type" ,
107103 "is_type_sub_type_of" ,
108- "is_valid_name_error" ,
109104 "introspection_from_schema" ,
110105 "lexicographic_sort_schema" ,
111106 "print_introspection_schema" ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments