Hi, I have a question. What I want to do now is to set the items of a multi-select dropdown from the tags (structure fields). It works, but I want to allow the users to share the items of the multi-select.
blueprint/users/tester.yml
It works
tags:
label: Tags
type: structure
width: 1/2
fields:
tagname:
type: text
tagpool:
type: multiselect
widht: 1/2
options:
type: query
query: kirby.user.tags.toStructure.pluck("tagname", ",", true) # Here!
but What I want to do
tags:
label: Tags
type: structure
width: 1/2
fields:
tagname:
type: text
tagpool:
type: multiselect
widht: 1/2
options:
type: query
query: kirby.users.tags.toStructure.pluck("tagname", ",", true) # Here!!