Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit aa55f93

Browse files
fix: has_{next,previous}_page are not nullable (#970)
1 parent 1af369e commit aa55f93

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

graphql_api/types/test_analytics/test_analytics.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,12 @@ def generate_test_results(
189189
return TestResultConnection(
190190
edges=[],
191191
total_count=0,
192-
page_info={},
192+
page_info={
193+
"has_next_page": False,
194+
"has_previous_page": False,
195+
"start_cursor": None,
196+
"end_cursor": None,
197+
},
193198
)
194199

195200
if term:

0 commit comments

Comments
 (0)