Issue
Issue contains issues associated to a User and an Asset.
type Issue {
id: ID!
asset: Asset
assetId: ID!
assignee: ProjectUser @deprecated
assigneeUser: User
assigneeId: ID @deprecated
assigneeIdUser: ID
author: ProjectUser @deprecated
authorUser: User!
authorId: ID! @deprecated
authorIdUser: ID!
comments: [Comment!]
createdAt: DateTime!
hasBeenSeen: Boolean! @deprecated
issueNumber: Int! @deprecated
objectMid: String
project: Project
projectId: ID!
status: IssueStatus!
type: IssueType!
updatedAt: DateTime!
}
Fields
Issue.id
● ID!
non-null scalar
Issue.asset
● Asset
object
ID of the asset related to the issue.
Issue.assetId
● ID!
non-null scalar
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.