SetDrawingTagsInput
InputAutogenerated input type of SetDrawingTags
mutation { organization(id: $organizationId) { project(id: $projectId) { setDrawingTags } } }
Example
mutation SetDrawingTags(
$organizationId: ID!
$projectId: ID!
$input: SetDrawingTagsInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
setDrawingTags(input: $input) {
errors
}
}
}
}Fields
| Field | Type | Description |
|---|---|---|
| clientMutationId | String | A unique identifier for the client performing the mutation. |
| drawingIds | [ID!] | — |
| mode | AddRemoveEditModeEnum! | — |
| mutationMetadata | JSON | — |
| newTaggings | [DrawingTaggingInput!] | — |
| newTags | [DrawingTagInput!] | — |
| now | ISO8601DateTime | — |
| tagIds | [ID!] | — |