CreateIssueInput
InputAutogenerated input type of CreateIssue
mutation { organization(id: $organizationId) { project(id: $projectId) { createIssue } } }
Example
mutation CreateIssue(
$organizationId: ID!
$projectId: ID!
$input: CreateIssueInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createIssue(input: $input) {
errors
}
}
}
}Fields
| Field | Type | Description |
|---|---|---|
| clientMutationId | String | A unique identifier for the client performing the mutation. |
| companyAccessible | Boolean! | — |
| createdAt | ISO8601DateTime | — |
| id | ID! | — |
| membershipId | ID! | — |
| mutationMetadata | JSON | — |
| organizationAccessible | Boolean! | — |
| status | String! | — |
| title | String! | — |
| updatedAt | ISO8601DateTime | — |