User field - query template

Hi,
I try to query certain templates in a userfield. But it doesn’t seem to work. The same code works fine in a normal blueprint (not user).
My code:

fields:
  league:
    label: League
    type: select
    options: query
    query:
      fetch: pages
      template: league
      value: '{{title}}'
      text: '{{title}}'

In the users setting I just get an empty select field.
Is there a way to workaround or how can I assign such a page to a user?

Your field should look similar to this:

fields:
  league:
    label: League
    type: select
    options: query
    query:
      page: /
      fetch: pages
      template: league
      value: '{{title}}'
      text: '{{title}}'

(The page part is missing in yours)

Wow, that was quick… Thanks alot, works great.