We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7040ffa commit d59bf56Copy full SHA for d59bf56
api/schema/usecase_schema.py
@@ -128,7 +128,6 @@ def use_cases(
128
129
@strawberry_django.field(
130
filters=UseCaseFilter,
131
- pagination=True,
132
order=UseCaseOrder,
133
)
134
@trace_resolver(name="get_published_use_cases", attributes={"component": "usecase"})
@@ -150,7 +149,6 @@ def published_use_cases(
150
149
151
# Apply pagination
152
if pagination is not strawberry.UNSET:
153
- # Get the offset and limit from pagination
154
offset = getattr(pagination, "offset", 0) or 0
155
limit = getattr(pagination, "limit", None)
156
0 commit comments