Does slot mappings work on the list slot type?

Does Rasa form action’s slot mappings handle list slots e.g does it make slot ‘test_list = [‘cbc’]’ to 'test_list = [‘cbc’, ‘zinc’] when the user adds another test to it.

Does it appends the values to the list? I have tried but slot_mappings filled the slot with the desired entity given for the slot but converted my list slot to text and returned back, but i want a list with appended value. Am i missing something or rasa does not handle this? Thanks.

Hello @noman,

the list slot type is to the user select a item from it, not build a list, you should built this list on you backend/business rules environment.

Cya!

i think it works when its name is similar to the entity name