# Adding detail to the pages preset view

**URL:** https://forum.getkirby.com/t/adding-detail-to-the-pages-preset-view/16817
**Category:** Questions
**Tags:** v3
**Created:** [January 9, 2020, 12:53am UTC](https://forum.getkirby.com/t/adding-detail-to-the-pages-preset-view/16817 "2020-01-09T00:53:22Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![CallumND](https://avatars.discourse-cdn.com/v4/letter/c/a5b964/32.png) [@CallumND](https://forum.getkirby.com/u/CallumND)
#### Post date: [January 9, 2020, 12:53am UTC](https://forum.getkirby.com/t/adding-detail-to-the-pages-preset-view/16817/1 "2020-01-09T00:53:22Z")

</div>

In my `home.yml` I have a multi-select field which queries the children of a particular page so that these pages can be selected. It’s possible that same of these pages will have the same name, therefore, I would like to display some additional info into the tag itself. Is this possible?

 ![Screenshot 2020-01-09 at 00.50.50](https://europe1.discourse-cdn.com/flex017/uploads/getkirby/original/2X/2/23fe0f338fe85aca9497ca7c8e5c65d2e99ff885.png)

---

<div class="post-metadata">

### Author: ![texnixe](https://dub1.discourse-cdn.com/flex017/user_avatar/forum.getkirby.com/texnixe/32/5754_2.png) [@texnixe](https://forum.getkirby.com/u/texnixe)
#### Post date: [January 9, 2020, 8:33am UTC](https://forum.getkirby.com/t/adding-detail-to-the-pages-preset-view/16817/2 "2020-01-09T08:33:28Z")

</div>

Yes:

```auto
  category:
    label: Category
    type: multiselect
    options: query
    query:
      fetch: site.children.published
      text: "{{ page.title }} / {{ page.id }}" # this can be anything else
      value: "{{ page.slug }}"

```

---

<div class="post-metadata">

### Author: ![CallumND](https://avatars.discourse-cdn.com/v4/letter/c/a5b964/32.png) [@CallumND](https://forum.getkirby.com/u/CallumND)
#### Post date: [January 9, 2020, 6:16pm UTC](https://forum.getkirby.com/t/adding-detail-to-the-pages-preset-view/16817/3 "2020-01-09T18:16:11Z")

</div>

Thank you. I did try this as I saw it in the docs, however, I am getting the error:

> The property “query” is required

Any help in to want I’m doing wrong would be greatly appreciated.

```
fields:
      carousel:
        label: Carousel
        type: multiselect
        help: Add the projects that you want to see in the Carousel
        options: query
        query: kirby.page("work").children
          text: "{{ page.title }} | {{ page.id }}"
          value: "{{ page.slug }}"

```

---

<div class="post-metadata">

### Author: ![texnixe](https://dub1.discourse-cdn.com/flex017/user_avatar/forum.getkirby.com/texnixe/32/5754_2.png) [@texnixe](https://forum.getkirby.com/u/texnixe)
#### Post date: [January 9, 2020, 6:18pm UTC](https://forum.getkirby.com/t/adding-detail-to-the-pages-preset-view/16817/4 "2020-01-09T18:18:47Z")

</div>

You are missing the `fetch` option and put the query directly in the line with query. See my example above.
