Function map_entries

Source
fn map_entries(map: MapRef<'_>) -> ListValue
Expand description

ยงExample

query T
select map_entries(map{'a':1, 'b':2, 'c':3});
----
{"(a,1)","(b,2)","(c,3)"}