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

[Feature Request] History Section #52

Open
syedaliasad649 opened this issue Jun 10, 2022 · 2 comments
Open

[Feature Request] History Section #52

syedaliasad649 opened this issue Jun 10, 2022 · 2 comments
Labels
enhancement New feature or request

Comments

@syedaliasad649
Copy link

What feature should be added to Tachidesk-JUI?

A section that logs manga that you've read.
A very traditional history similar to Tachiyomi which can read the data in Tachiyomi backups.

Why/Project's Benefit/Existing Problem

Enhance the experience of using Tachidesk.

@syedaliasad649 syedaliasad649 added the enhancement New feature or request label Jun 10, 2022
@Syer10
Copy link
Collaborator

Syer10 commented Jun 10, 2022

Blocked by Tachidesk-Server not having history support

@Syer10
Copy link
Collaborator

Syer10 commented Jun 25, 2024

May be able to implement using a query like this

query History($first: Int = 100, $offset: Int = 0) {
  chapters(
    condition: {isRead: true}
    orderByType: DESC
    orderBy: LAST_READ_AT
    first: $first
    offset: $offset
  ) {
    totalCount
    nodes {
      id
      name
      manga {
        thumbnailUrl
        id
        title
      }
    }
    pageInfo {
      hasNextPage
      hasPreviousPage
    }
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants