@zackbleach has joined the channel
@ghadi has joined the channel
@ghadi has left the channel
@gowder has joined the channel
Wow that's a super nested sequence
One thing to do in order to get rid of the nesting as a first step, if that sequence of vectors is stored associated with the symbol items, is (vec (flatten items))
And then you just have a vector of maps, and you can pluck out keys from them as you want
For example, if you want every map where "status" is the field you can use (filter #(= "status" (:field %)) (vec (flatten items)))
@surreal.analysis has joined the channel
Thanks! I’ll give that a try
No prob!