Multiple Select Field
Like Select, but multiple options can be selected. Good for selecting multiple options such as product's categories 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 selecting an item multiple times.Options: Manage select options.
Default
The default value of this field when create a new document based on this template.
Transform
This field can be transformed to Select Field.
Publish
Data Key is set as categories and select big, new option.
JSON data
The value of this field will be published as a string array.
{
"categories": [
"big",
"new"
]
}
GraphQL API
The value of this field will be published as a string array.
{
"categories": [
"big",
"new"
]
}
