How to perform field methods on array Items in KQL?

Hi There!
I try to perform a field method on an array of tags in KQL.
I couldn’t find any solution so far – is there a possibility to do that?
F.ex. like:

        sluggedTags: {
          query: 'page.tags.split',
          select: {
            item: 'item.slug'
          }
        },

Many thanks!

page.tags.split only returns an array, so you don’t get a field item to call a field method on. This behaves differently from the options query in a blueprint, where you are probably getting this syntax from, it seems.

1 Like

Makes sense! Many thanks for the quick help.