movie:
label: Movie
type: select
options: query
query:
page: movie
fetch: children
value: '{{uid}}'
text: '{{title}}'
flip: false
And in a template I would like to display some content from that selected page. All I can display is its uid, I couldn’t find the way to fetch any other field from that movie page. Is that even possible?
You can do that, but it would not make much sense, because the pages method returns a collection that you would have to loop through to get your page.
The code I posted above should work on the assumption that you are trying to output it in the template for the parent page of the page selected in your select. What sort of error message do you get when using the code?