[FA-misc] Switches to using DTOs, updates frontend with details and reader page, updates novel import to be an upsert

This commit is contained in:
gamer147
2025-12-08 18:30:00 -05:00
parent c9d93a4e55
commit 81e4e88ad4
48 changed files with 3298 additions and 329 deletions

View File

@@ -1,36 +1,24 @@
query Novels($first: Int, $after: String) {
novels(first: $first, after: $after) {
query Novels($first: Int, $after: String, $where: NovelDtoFilterInput) {
novels(first: $first, after: $after, where: $where) {
edges {
cursor
node {
id
url
name {
texts {
language
text
}
}
description {
texts {
language
text
}
}
name
description
coverImage {
originalPath
newPath
}
rawStatus
lastUpdatedTime
chapters {
order
name {
texts {
language
text
}
}
name
}
tags {
key
displayName
}
}
}