Not sure how to convert this from K2 to K3

I had this in my blueprints, how do I do the same in K3?

       author:
         label: Authors
         type: select
         options: query
         query:
           page: authors
           fetch: children

This is what I have, but it doesn’t match to what already exists in the content .txt file

  author:
    label: Authors
    type: select
    options: query
    query: site.find("authors").children

What do you have in the content text file?

It holds the slug

So for me example is daniel-rivers

Have you tried to set it up like in this example:

 options: query
  query:
    fetch: site.find("authors").children
    text: "{{ page.title }}" 
    value: "{{ page.slug }}"
1 Like

Perfecto - Thank you!