Links

RoadmapItemCommentType

The RoadmapItemCommentType object includes the data for an individual comment. It also holds data for parent comments that it could be associated with.

GraphQL Object Type

type RoadmapItemCommentType {
id: String
comment: String
member: MembershipType
createdAt: DateTime
updatedAt: DateTime
roadmapItemComment: [RoadmapItemCommentType]
parentComment: RoadmapItemCommentType
}

Fields

Field
Input Type
Description
id
String
id of roadmapItemComment
comment
String
content of roadmapItemComment
member
member associated with comment
createdAt
DateTime
date/time comment was created
updatedAt
DateTime
date/time comment was last updated
roadmapItemComment
array of comments associated with this comment
parentComment
any parent comment that may be associated with this comment