Comment
Comment contains comments associated to an issue.
type Comment {
id: ID!
authorUser: User!
authorIdUser: ID!
createdAt: DateTime!
issue: Issue!
issueId: ID!
text: String!
updatedAt: DateTime!
}
Fields
Comment.id ● ID! non-null scalar
Comment.authorUser ● User! non-null object
Comment.authorIdUser ● ID! non-null scalar
Comment.createdAt ● DateTime! non-null scalar
Comment.issue ● Issue! non-null object
ID of the issued this comment is attached to.
Comment.issueId ● ID! non-null scalar
Comment.text ● String! non-null scalar
Content of the comment.
Comment.updatedAt ● DateTime! non-null scalar
Member Of
Issue object