Skip to content

Commit 3a6cfdc

Browse files
committed
chore(tasks-query): temp increase # of task to fetch (pagination needed)
1 parent cc10118 commit 3a6cfdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooks/queries/useTasksQuery.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { gql } from 'graphql-request';
33

44
const tasksQuery = gql`
55
query TasksPage($skip: Int) {
6-
tasks(first: 100, skip: $skip, orderBy: deadline, orderDirection: asc) {
6+
tasks(first: 300, skip: $skip, orderBy: deadline, orderDirection: asc) {
77
id
88
assignedPrice
99
taskID

0 commit comments

Comments
 (0)