Skip to content

Commit 23b6419

Browse files
authored
Disable system checks for graphql_schema management command (#939)
1 parent fba6de4 commit 23b6419

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

graphene_django/management/commands/graphql_schema.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def add_arguments(self, parser):
4848
class Command(CommandArguments):
4949
help = "Dump Graphene schema as a JSON or GraphQL file"
5050
can_import_settings = True
51+
requires_system_checks = False
5152

5253
def save_json_file(self, out, schema_dict, indent):
5354
with open(out, "w") as outfile:

0 commit comments

Comments
 (0)