Skip to content

InternalComment

An internal comment for tracking work on tasks and other objects

Fields

content · String! · required · The content of this comment
created_at · ISO8601DateTime! · required · The date on which the comment was created
edited · Boolean! · required · Has the comment been edited since it was first created?
id · ID! · required · The unique identifier of the internal comment
provider · User! · required · Provider who created the comment
updated_at · ISO8601DateTime! · required · The date on which the comment was last updated

Used By

Definition

"""
An internal comment for tracking work on tasks and other objects
"""
type InternalComment {
"""
The content of this comment
"""
content: String!
"""
The date on which the comment was created
"""
created_at: ISO8601DateTime!
"""
Has the comment been edited since it was first created?
"""
edited: Boolean!
"""
The unique identifier of the internal comment
"""
id: ID!
"""
Provider who created the comment
"""
provider: User!
"""
The date on which the comment was last updated
"""
updated_at: ISO8601DateTime!
}