File blueprint with select that queries page

Hello. I have a page that contains a tags field. That page has a files section. The files in that section use a template that allows me to collect some file data using a file blueprint. The file blueprint contains a select field. Can the select field query the tags field that I setup on the page. This is snippet from my field blueprint.

my_field:
  label: Some Label 
  type: select 
  options: query
  query:
    fetch: page.my_tags_field.split
    text: "{{ arrayItem.value }}"
    value: "{{ arrayItem.value.slug }}"

This doesn’t pull anything. I’m I missing something? Any insight would be appreciated.

Must be

fetch: file.parent.my_tags_field.split
1 Like

That did it. Perfect. Thanks @texnixe !