Skip to content
This repository was archived by the owner on Feb 6, 2025. It is now read-only.

Commit 42faf2c

Browse files
author
Selene Chew
committed
rename to query_planning
1 parent 869995d commit 42faf2c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
File renamed without changes.
File renamed without changes.

graphql_compiler/tests/schema_transformation_tests/test_make_query_plan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from graphql import parse, print_ast
66

7-
from ...query_planning_and_execution.make_query_plan import make_query_plan
7+
from ...query_planning.make_query_plan import make_query_plan
88
from ...schema_transformation.split_query import split_query
99
from .example_schema import basic_merged_schema
1010

mypy.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,9 @@ disallow_untyped_calls = False
160160
[mypy-graphql_compiler.query_pagination.query_parameterizer.*]
161161
disallow_untyped_calls = False
162162

163+
[mypy-graphql_compiler.query_planning.*]
164+
disallow_untyped_defs = False
165+
163166
[mypy-graphql_compiler.schema_generation.graphql_schema.*]
164167
check_untyped_defs = False
165168
disallow_incomplete_defs = False
@@ -189,9 +192,6 @@ check_untyped_defs = False
189192
[mypy-graphql_compiler.schema_transformation.*]
190193
disallow_untyped_calls = False
191194

192-
[mypy-graphql_compiler.schema_transformation.make_query_plan.*]
193-
disallow_untyped_defs = False
194-
195195
[mypy-graphql_compiler.schema_transformation.split_query.*]
196196
disallow_incomplete_defs = False
197197
disallow_untyped_defs = False

0 commit comments

Comments
 (0)