How can I reference the index of my sub-container in a Slate repeating container?

Hey,

I have a Slate where I want to repeat a container N times, where N is the number of objects I load in a Query. I’m able to have my container repeat by supplying the count of the list of objects:

However, I’m unable to reference which object each sub-container should render in the definition of the container. My hope was that the sub-container would get a counter “i” from the parent repeating container, but I was unable to find such a variable. Does one exist and/or are there other ways to do this?

The child Container widget of the Repeating Container Widget has an index property that can be accessed via Handlebars which should provide the index of the current Repeating Container.

In the provided example, the index can be accessed via:
{{w_container_2.index}}