Skip to main content

Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.

CreateTermInput

Input object expected by the query or mutation

input CreateTermInput {
description: String!
linkedTagId: String
name: String!
parentTermId: String
}

Fields

CreateTermInput.description ● String! non-null scalar general

Description for the term, supports markdown

CreateTermInput.linkedTagId ● String scalar general

ID of the tag to link to the term

CreateTermInput.name ● String! non-null scalar general

Name of the term

CreateTermInput.parentTermId ● String scalar general

ID of the parent term, no value will create a root term

Example

{
"description": "Information about our **customers**",
"linkedTagId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"name": "Customer",
"parentTermId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba"
}

Member Of