File tree 4 files changed +0
-55
lines changed
4 files changed +0
-55
lines changed Original file line number Diff line number Diff line change @@ -94,11 +94,6 @@ Comparators for types:
94
94
.. autofunction :: is_type_sub_type_of
95
95
.. autofunction :: do_types_overlap
96
96
97
- Assert that a string is a valid GraphQL name:
98
-
99
- .. autofunction :: assert_valid_name
100
- .. autofunction :: is_valid_name_error
101
-
102
97
Compare two GraphQLSchemas and detect breaking changes:
103
98
104
99
.. autofunction :: find_breaking_changes
Original file line number Diff line number Diff line change 212
212
is_equal_type ,
213
213
is_type_sub_type_of ,
214
214
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 ,
219
215
# Compare two GraphQLSchemas and detect breaking changes.
220
216
BreakingChange ,
221
217
BreakingChangeType ,
764
760
"is_equal_type" ,
765
761
"is_type_sub_type_of" ,
766
762
"do_types_overlap" ,
767
- "assert_valid_name" ,
768
- "is_valid_name_error" ,
769
763
"find_breaking_changes" ,
770
764
"find_dangerous_changes" ,
771
765
"BreakingChange" ,
Original file line number Diff line number Diff line change 68
68
# Comparators for types
69
69
from .type_comparators import is_equal_type , is_type_sub_type_of , do_types_overlap
70
70
71
- # Assert that a string is a valid GraphQL name.
72
- from .assert_valid_name import assert_valid_name , is_valid_name_error
73
-
74
71
# Compare two GraphQLSchemas and detect breaking changes.
75
72
from .find_breaking_changes import (
76
73
BreakingChange ,
89
86
"IntrospectionQuery" ,
90
87
"TypeInfo" ,
91
88
"TypeInfoVisitor" ,
92
- "assert_valid_name" ,
93
89
"ast_from_value" ,
94
90
"ast_to_dict" ,
95
91
"build_ast_schema" ,
105
101
"get_operation_ast" ,
106
102
"is_equal_type" ,
107
103
"is_type_sub_type_of" ,
108
- "is_valid_name_error" ,
109
104
"introspection_from_schema" ,
110
105
"lexicographic_sort_schema" ,
111
106
"print_introspection_schema" ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments