feature/IO-3291-Tasks-Notifications: Final

This commit is contained in:
Dave Richer
2025-07-11 13:38:19 -04:00
parent 4dcfb382a9
commit e0b937474d
8 changed files with 54 additions and 16 deletions

View File

@@ -68,7 +68,7 @@ export const PARTIAL_TASK_FIELDS = gql`
`;
export const PARTIAL_TASK_CENTER_FIELDS = gql`
fragment TaskFields on tasks {
fragment PartialTaskFields on tasks {
id
title
description
@@ -103,7 +103,7 @@ export const QUERY_TASKS_WITH_DUE_DATES = gql`
}
order_by: $order
) {
...TaskFields
...PartialTaskFields
}
}
`;
@@ -128,7 +128,7 @@ export const QUERY_TASKS_NO_DUE_DATE_PAGINATED = gql`
limit: $limit
offset: $offset
) {
...TaskFields
...PartialTaskFields
}
tasks_aggregate(
where: {