Skip to content

Comment

A comment of an entry

Fields

author · User · User who created comment
content · String · The content of this comment
created_at · String! · required · The date on which the comment was posted
creator · User · User who created comment
cursor · Cursor! · required · Pagination cursor
entry_id · String · The id of the entry associated with the comment
id · ID! · required · The unique identifier of the comment
is_reaction · Boolean! · required · Indicates when posting an emoji reaction
poster · User · User who created comment
user_id · ID! · required · the owner of the comment

Used By

Definition

"""
A comment of an entry
"""
type Comment {
"""
User who created comment
"""
author: User
"""
The content of this comment
"""
content: String
"""
The date on which the comment was posted
"""
created_at: String!
"""
User who created comment
"""
creator: User
"""
Pagination cursor
"""
cursor: Cursor!
"""
The id of the entry associated with the comment
"""
entry_id: String
"""
The unique identifier of the comment
"""
id: ID!
"""
Indicates when posting an emoji reaction
"""
is_reaction: Boolean!
"""
User who created comment
"""
poster: User
"""
the owner of the comment
"""
user_id: ID!
}