mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Update packages/api-nest/schema.graphql
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
parent
0181bcbcdb
commit
f1574018fe
1 changed files with 3 additions and 4 deletions
|
|
@ -119,9 +119,8 @@ type LibraryItem {
|
|||
description: String
|
||||
folder: String!
|
||||
id: ID!
|
||||
|
||||
"""Legacy alias for thumbnail"""
|
||||
image: String
|
||||
image: String @deprecated(reason: "Use `thumbnail`")
|
||||
|
||||
"""Item type (ARTICLE, FILE, VIDEO, etc.)"""
|
||||
itemType: String!
|
||||
|
|
@ -131,7 +130,7 @@ type LibraryItem {
|
|||
originalUrl: String!
|
||||
|
||||
"""Legacy alias for itemType"""
|
||||
pageType: String!
|
||||
pageType: String! @deprecated(reason: "Use `itemType`")
|
||||
publishedAt: DateTime
|
||||
readAt: DateTime
|
||||
readingProgressBottomPercent: Float
|
||||
|
|
@ -155,7 +154,7 @@ type LibraryItem {
|
|||
wordCount: Float
|
||||
|
||||
"""Legacy alias for wordCount"""
|
||||
wordsCount: Float
|
||||
wordsCount: Float @deprecated(reason: "Use `wordCount`")
|
||||
}
|
||||
|
||||
enum LibraryItemState {
|
||||
|
|
|
|||
Loading…
Reference in a new issue