From 23b6419b428a0f1b4bd3a8124e49d899b86800a7 Mon Sep 17 00:00:00 2001 From: Sam Millar Date: Sun, 19 Apr 2020 20:42:00 +0100 Subject: [PATCH] Disable system checks for graphql_schema management command (#939) --- graphene_django/management/commands/graphql_schema.py | 1 + 1 file changed, 1 insertion(+) diff --git a/graphene_django/management/commands/graphql_schema.py b/graphene_django/management/commands/graphql_schema.py index 751a385..dcef73c 100644 --- a/graphene_django/management/commands/graphql_schema.py +++ b/graphene_django/management/commands/graphql_schema.py @@ -48,6 +48,7 @@ class CommandArguments(BaseCommand): class Command(CommandArguments): help = "Dump Graphene schema as a JSON or GraphQL file" can_import_settings = True + requires_system_checks = False def save_json_file(self, out, schema_dict, indent): with open(out, "w") as outfile: