InvalidTemplate. Unable to process template language expressions in action 'Compose' inputs at line '1' and column '2469': 'The template language expression 'items('Apply_to_each')?['key1']' cannot be evaluated because property 'key1' cannot be selected. Array elements can only be selected using an integer index. Please see https://aka.ms/logicexpressions for usage details.'.

This post is all about unnecessarily complicated data structures like nested arrays with a single item in them.

Nested arrays Example

How often do you see data like this coming out of an action in Microsoft Flow where an array has a single item with another array:

[
  [
    {
      "key1": "value 1",
      "key2": "value 2"
    },
    {
      "key1": "value 3",
      "key2": "value 4"
    }
  ]
]

So often I see people getting the following error:

Apply to each with a single item

InvalidTemplate. Unable to process template language expressions in action ‘Compose’ inputs at line ‘1’ and column ‘2469’: ‘The template language expression ‘items(‘Apply_to_each’)?[‘key1′]’ cannot be evaluated because property ‘key1′ cannot be selected. Array elements can only be selected using an integer index. Please see https://aka.ms/logicexpressions for usage details.’.

What does this error mean?

Obviously, you only wanted to get the Key1’s value from the array and you start to think, why doesn’t this just work?

Did you notice in the data that there were two square brackets around the item?

In my case there will only be 1 array of arrays and therefore I can select just the first item. We need to have a look at my overall flow here.

Flow using the nested arrays of data and an Apply to each

The apply each is taking my nested array and the apply to each still has to handle the inner array.

Therefore rather than using outputs(‘Compose_2’) I could be using outputs(‘Compose_2’)[0] to get to my array of items. Alternatively, you can also use the first() function

first(outputs('Compose_2'))
Using the first function

By Pieter Veenstra

Business Applications and Office Apps & Services Microsoft MVP working as a Microsoft Productivity Principal Consultant at HybrIT Services. You can contact me using contact@veenstra.me.uk.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

%d bloggers like this: