Fields
ColumnKey
The property to get the value fromIndexKey
The property in the provided list to use as the index for the returned list.Sample Data
| Input | ColumnKey | IndexKey | Result |
|---|---|---|---|
| [{“name”: “A”,”price”: 19 }, { “name”: “B”,”price”: 10 }] | name | [“A”, “B”] | |
| [{“name”: “A”,”price”: 19 }, { “name”: “B”,”price”: 10 }] | name | price | { “10”: “B”,”19”: “A”} |