Skip to content

Commit 3b0319b

Browse files
committed
update
1 parent 8972aac commit 3b0319b

File tree

1 file changed

+0
-9
lines changed
  • python_modules/dagster-graphql/dagster_graphql/schema/roots

1 file changed

+0
-9
lines changed

python_modules/dagster-graphql/dagster_graphql/schema/roots/query.py

-9
Original file line numberDiff line numberDiff line change
@@ -638,12 +638,6 @@ class Meta:
638638
description="Retrieve the executions for a given asset check.",
639639
)
640640

641-
orderAssetsByLastMaterializedTime = graphene.Field(
642-
non_null_list(GrapheneAssetKey),
643-
assetKeys=graphene.Argument(non_null_list(GrapheneAssetKeyInput)),
644-
description="Retrieve a list of asset keys sorted by their last materialized or observed time. Includes materialization attempts that failed to materialize the asset.",
645-
)
646-
647641
@capture_error
648642
def resolve_repositoriesOrError(
649643
self,
@@ -1363,6 +1357,3 @@ def resolve_assetCheckExecutions(
13631357
limit=limit,
13641358
cursor=cursor,
13651359
)
1366-
1367-
def resolve_orderAssetsByLastMaterializedTime(self, graphene_info, assetKeys: Sequence[GrapheneAssetKeyInput]) -> Sequence[GrapheneAssetKeyInput]:
1368-

0 commit comments

Comments
 (0)