Custom Text List
A custom text list. Useful for adding custom texts such as product tags etc.
Settings
Basic
Name
: The human-friendly name of this field.Data Key
: The field name in published data. It must be in UpperCamelCase.Description
: The description of this field, should be a human-friendly text shown for content editor.Hidden
: Hide this field from the template. Used to create document with hidden default values. It is recommended that put this field to bottom.
Options
Allow duplicates
: Allow adding duplicated texts.
Default
The default value of this field when create a new document based on this template.
Publish
Data Key
is set as tags
and input red
, big
, light
.
JSON data
The value of this field will be published as a string array
.
{
"tags": [
"red",
"big",
"light"
]
}
GraphQL API
The value of this field will be published as a string array
.
{
"tags": [
"red",
"big",
"light"
]
}