File tree Expand file tree Collapse file tree 2 files changed +15
-7
lines changed Expand file tree Collapse file tree 2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -149,6 +149,14 @@ def input_deprecation(string: str) -> str | None:
149
149
ofType {{
150
150
kind
151
151
name
152
+ ofType {{
153
+ kind
154
+ name
155
+ ofType {{
156
+ kind
157
+ name
158
+ }}
159
+ }}
152
160
}}
153
161
}}
154
162
}}
Original file line number Diff line number Diff line change @@ -991,11 +991,11 @@ def throws_when_missing_directive_args():
991
991
build_client_schema (introspection )
992
992
993
993
def describe_very_deep_decorators_are_not_supported ():
994
- def fails_on_very_deep_lists_more_than_7_levels ():
994
+ def fails_on_very_deep_lists_more_than_8_levels ():
995
995
schema = build_schema (
996
996
"""
997
997
type Query {
998
- foo: [[[[[[[[String]]]]]]]]
998
+ foo: [[[[[[[[[[ String]] ]]]]]]]]
999
999
}
1000
1000
"""
1001
1001
)
@@ -1010,11 +1010,11 @@ def fails_on_very_deep_lists_more_than_7_levels():
1010
1010
" Decorated type deeper than introspection query."
1011
1011
)
1012
1012
1013
- def fails_on_a_very_deep_non_null_more_than_7_levels ():
1013
+ def fails_on_a_very_deep_more_than_8_levels_non_null ():
1014
1014
schema = build_schema (
1015
1015
"""
1016
1016
type Query {
1017
- foo: [[[[String!]!]!]!]
1017
+ foo: [[[[[ String!] !]!]!]!]
1018
1018
}
1019
1019
"""
1020
1020
)
@@ -1029,12 +1029,12 @@ def fails_on_a_very_deep_non_null_more_than_7_levels():
1029
1029
" Decorated type deeper than introspection query."
1030
1030
)
1031
1031
1032
- def succeeds_on_deep_types_less_or_equal_7_levels ():
1033
- # e.g., fully non-null 3D matrix
1032
+ def succeeds_on_deep_less_or_equal_8_levels_types ():
1033
+ # e.g., fully non-null 4D matrix
1034
1034
sdl = dedent (
1035
1035
"""
1036
1036
type Query {
1037
- foo: [[[String!]!]!]!
1037
+ foo: [[[[ String!] !]!]!]!
1038
1038
}
1039
1039
"""
1040
1040
)
You can’t perform that action at this time.
0 commit comments