We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a40b17 commit 25bf7cbCopy full SHA for 25bf7cb
python_modules/dagster-graphql/dagster_graphql/schema/asset_graph.py
@@ -1576,16 +1576,16 @@ def resolve_partitionKeyConnection(
1576
),
1577
dynamic_partitions_store=self._dynamic_partitions_loader,
1578
)
1579
- conn = partitions_def.get_partition_key_connection(
+ results = partitions_def.get_paginated_partition_keys(
1580
context=context,
1581
limit=limit,
1582
ascending=ascending,
1583
cursor=cursor,
1584
1585
return GraphenePartitionKeyConnection(
1586
- results=conn.results,
1587
- cursor=conn.cursor,
1588
- hasMore=conn.has_more,
+ results=results.results,
+ cursor=results.cursor,
+ hasMore=results.has_more,
1589
1590
1591
def resolve_partitionDefinition(
0 commit comments