Update Key Values in a Dictionary

Dicts are immutable, there are two options:

  • Use merge to create a new dict
  • Use newScratch (see docs), update as you please, and then use e.g. $scratch.Values to get the map.
1 Like