Skip to content

Commit

Permalink
use interface instead
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria committed Aug 6, 2024
1 parent a3d69df commit 2eee30f
Show file tree
Hide file tree
Showing 8 changed files with 166 additions and 198 deletions.

Large diffs are not rendered by default.

56 changes: 28 additions & 28 deletions js_modules/dagster-ui/packages/ui-core/src/graphql/schema.graphql

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

148 changes: 77 additions & 71 deletions js_modules/dagster-ui/packages/ui-core/src/graphql/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@
from ..schema.errors import GrapheneRunNotFoundError
from ..schema.execution import GrapheneExecutionPlan
from ..schema.logs.events import GrapheneRunStepStats
from ..schema.mega_run import GrapheneMegaRun
from ..schema.pipelines.config import GraphenePipelineConfigValidationValid
from ..schema.pipelines.pipeline import GrapheneEventConnection, GrapheneMegaRun, GrapheneRun
from ..schema.pipelines.pipeline import GrapheneEventConnection, GrapheneRun
from ..schema.pipelines.pipeline_run_stats import GrapheneRunStatsSnapshot
from ..schema.runs import GrapheneRunGroup, GrapheneRunTagKeys, GrapheneRunTags
from ..schema.util import ResolveInfo
Expand Down Expand Up @@ -408,7 +409,7 @@ def get_mega_runs(
Cursor format: run_id;backfill_id
"""
from ..schema.pipelines.pipeline import GrapheneMegaRun
from ..schema.mega_run import GrapheneMegaRun

check.opt_str_param(cursor, "cursor")
check.opt_int_param(limit, "limit")
Expand Down
Loading

0 comments on commit 2eee30f

Please sign in to comment.