createTag
Mutation
mutation createTag($input: CreateTagInput!) {
createTag(input: $input) {
description
id
slug
spaceId
title
}
}
Variables
{
"input": "CreateTagInput"
}
Response
{
"data": {
"createTag": {
"description": "abc123",
"id": "4",
"slug": "abc123",
"spaceId": "abc123",
"title": "abc123"
}
}
}