Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

All tasks do not show when creating task by status kanban #9095

Closed
phjackl3 opened this issue Dec 17, 2024 · 3 comments
Closed

All tasks do not show when creating task by status kanban #9095

phjackl3 opened this issue Dec 17, 2024 · 3 comments

Comments

@phjackl3
Copy link

Bug Description

When tasks are grouped by Status, all tasks do not show in the view

Example:
I have a long list of tasks, with most of them set to status 'TO DO'
Image
I have a view that groups by Status. I expect all the tasks to be shown in that view. But the number of tasks in the 'TO DO' Status is truncated to 10.
Image

Expected behavior

All tasks that are in the table view should appear in the Kanban view

@FurquanAnwer
Copy link

Please assign me this issue !

@pacyL2K19
Copy link
Contributor

pacyL2K19 commented Dec 18, 2024

Is this really an issue?
It seems like there is a pagination that limits the list of items by 10 per status, and when it reaches the bottom of the list, it triggers a new API call with variables like:

{
    "filter": {
        "status": {
            "in": [
                "TODO"
            ]
        }
    },
    "orderBy": [
        {
            "position": "AscNullsFirst"
        }
    ],
    "lastCursor": "eyJwb3NpdGlvbiI6LTEwLCJpZCI6ImU1MzRhN2FiLTQ1YTEtNGQ3NS05ODZlLWI4Mzc4ZGE0MDQ5ZCJ9",
    "limit": 10
}

# and

{
    "filter": {
        "status": {
            "in": [
                "IN_PROGRESS"
            ]
        }
    },
    "orderBy": [
        {
            "position": "AscNullsFirst"
        }
    ],
    "lastCursor": "eyJwb3NpdGlvbiI6LTEyLCJpZCI6IjFhZDEzNTQ1LWUwNzctNGNkZi1hMTIxLTM1MmIxY2M3N2U5ZCJ9",
    "limit": 10
}

Is this behavior intentional (what I assume), or should we work on this as an issue, fetching all the records once (as it's done in the All Tasks view)?
@FelixMalfait

@FelixMalfait
Copy link
Member

Thanks @pacyL2K19 you're right the pagination behavior is intentional.

The aggregate count might have been wrong bug that has likely been fixed with the new aggregate feature since we recoded that part from scratch (IS_AGGREGATE_QUERY_ENABLED feature flag). It might make it for this week's release. Most likely it will be in the early January release.

@github-project-automation github-project-automation bot moved this from 🆕 New to ✅ Done in 🎯 Roadmap & Sprints Dec 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

No branches or pull requests

4 participants