Quote
Quote(id, insight, text, author, author_profession, link, link_preview, category, comment)
type Quote {
id: UUID!
text: String!
author: String!
authorProfession: String!
link: String!
linkPreview: LinkPreview!
category: String!
comment: String!
reactions: ReactionCounts!
reactors(
offset: Int! = 0
limit: Int! = 10
): UserPaged!
myReaction: ReactionCounts!
}
Fields
Quote.id
● UUID!
non-null scalar
Quote.text
● String!
non-null scalar
Quote.author
● String!
non-null scalar
Quote.authorProfession
● String!
non-null scalar
Quote.link
● String!
non-null scalar
Quote.linkPreview
● LinkPreview!
non-null object
Quote.category
● String!
non-null scalar
Quote.comment
● String!
non-null scalar
Quote.reactions
● ReactionCounts!
non-null object
Quote.reactors
● UserPaged!
non-null object
Quote.reactors.offset
● Int!
non-null scalar
Quote.reactors.limit
● Int!
non-null scalar
Quote.myReaction
● ReactionCounts!
non-null object
Returned By
updateQuoteReaction
mutation
Member Of
Insight
object