mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Double max length of quote in highlights
This commit is contained in:
parent
e15119e808
commit
8d79f858c3
1 changed files with 3 additions and 3 deletions
|
|
@ -697,7 +697,7 @@ const schema = gql`
|
|||
shortId: String!
|
||||
articleId: ID!
|
||||
patch: String
|
||||
quote: String @sanitize(maxLength: 6000, minLength: 1)
|
||||
quote: String @sanitize(maxLength: 12000, minLength: 1)
|
||||
prefix: String @sanitize
|
||||
suffix: String @sanitize
|
||||
annotation: String @sanitize(maxLength: 4000)
|
||||
|
|
@ -731,7 +731,7 @@ const schema = gql`
|
|||
shortId: ID!
|
||||
articleId: ID!
|
||||
patch: String!
|
||||
quote: String! @sanitize(maxLength: 6000, minLength: 1)
|
||||
quote: String! @sanitize(maxLength: 12000, minLength: 1)
|
||||
prefix: String @sanitize
|
||||
suffix: String @sanitize
|
||||
annotation: String @sanitize(maxLength: 8000)
|
||||
|
|
@ -764,7 +764,7 @@ const schema = gql`
|
|||
highlightId: ID!
|
||||
annotation: String @sanitize(maxLength: 4000)
|
||||
sharedAt: Date
|
||||
quote: String @sanitize(maxLength: 6000, minLength: 1)
|
||||
quote: String @sanitize(maxLength: 12000, minLength: 1)
|
||||
html: String
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue