-
Hi, i'm trying to create some sort of 'event' content type, this event will consist out of a multiple groups
now the fields dor these artists are exactly the same, so do i have to duplicate all these fields? or is there a way to reuse a group of fields multiple times in the same content type? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hey @cereal2nd , welcome to Bolt! There are a couple of things to consider here.
For example, a collection of any number of Authors, where each Author has a name and a date of birth can look like this: authors:
type: collection
fields:
author:
type: set
fields:
name:
type: text
dob:
type: date In short, a Collection gives you the repeat functionality, a Set gives you the group functionality. Hope this helps! |
Beta Was this translation helpful? Give feedback.
Hey @cereal2nd , welcome to Bolt! There are a couple of things to consider here.
viewless: true
and you can "link" each artist to an event using Relations or a Select fieldFor example, a collection of any number of Authors, where each Author…