Changeset View
Changeset View
Standalone View
Standalone View
python_modules/dagster-graphql/dagster_graphql/schema/__init__.py
from __future__ import absolute_import | from __future__ import absolute_import | ||||
from dagster_graphql import dauphin | from dagster_graphql import dauphin | ||||
def create_schema(): | def create_schema(): | ||||
# dauphin depends on import-based side effects | # dauphin depends on import-based side effects | ||||
# pylint: disable=W0611 | # pylint: disable=W0611 | ||||
from . import config_types, errors, execution, paging, pipelines, roots, runs, runtime_types | from . import ( | ||||
config_types, | |||||
errors, | |||||
execution, | |||||
paging, | |||||
pipelines, | |||||
roots, | |||||
runs, | |||||
run_schedule, | |||||
runtime_types, | |||||
) | |||||
return dauphin.create_schema() | return dauphin.create_schema() |