Skip to content

Commit 1e4ec29

Browse files
committed
rebase
1 parent 0f9ca6c commit 1e4ec29

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: python_modules/dagster-graphql/dagster_graphql/schema/asset_graph.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1576,16 +1576,16 @@ def resolve_partitionKeyConnection(
15761576
),
15771577
dynamic_partitions_store=self._dynamic_partitions_loader,
15781578
)
1579-
conn = partitions_def.get_partition_key_connection(
1579+
results = partitions_def.get_paginated_partition_keys(
15801580
context=context,
15811581
limit=limit,
15821582
ascending=ascending,
15831583
cursor=cursor,
15841584
)
15851585
return GraphenePartitionKeyConnection(
1586-
results=conn.results,
1587-
cursor=conn.cursor,
1588-
hasMore=conn.has_more,
1586+
results=results.results,
1587+
cursor=results.cursor,
1588+
hasMore=results.has_more,
15891589
)
15901590

15911591
def resolve_partitionDefinition(

0 commit comments

Comments
 (0)