Issue
Issue contains issues associated to a User and an Asset.
type Issue {
id: ID!
asset: Asset
assetId: ID!
assigneeUser: User
assigneeIdUser: ID
authorUser: User!
authorIdUser: ID!
comments: [Comment!]
createdAt: DateTime!
objectMid: String
project: Project
projectId: ID!
status: IssueStatus!
type: IssueType!
updatedAt: DateTime!
}
Fields
Issue.id ● ID! non-null scalar
Issue.asset ● Asset object
Issue.assetId ● ID! non-null scalar
ID of the asset related to the issue.
Issue.assigneeUser ● User object
Issue.assigneeIdUser ● ID scalar
Issue.authorUser ● User! non-null object
Issue.authorIdUser ● ID! non-null scalar
Issue.comments ● [Comment!] list object
All the comments related to this issue
Issue.createdAt ● DateTime! non-null scalar
Issue.objectMid ● String scalar
Object MID of the issue
Issue.project ● Project object
ID of the project of the issue.
Issue.projectId ● ID! non-null scalar
Issue.status ● IssueStatus! non-null enum
Current annotation status of the issue. Can take the values: OPENED, SOLVED, CANCELLED.