I am missing something obvious... I get a list of maps back from a function and I want to find the elements with nil
(({:a2p-id "1", :dh-uuid "abc-def-ghi-klm"} {:a2p-id "2", :dh-uuid "def-ghi-klm-opq"} {:a2p-id "3", :dh-uuid nil}) ({:a2p-id "1", :dh-uuid "abc-def-ghi-klm"} {:a2p-id "2", :dh-uuid "def-ghi-klm-opq"} {:a2p-id "3", :dh-uuid nil}))
I try the select function but it has no effect ... same list
(set/select #(not (:dh-uuid %)) (map find-records query-parts))
also tried the previously working example... same list
(filter #(not (:dh-uuid %)) (map find-records query-parts))
I am assuming that I am not indexing into each of the maps but I cannot remember or find out how to do this ... all examples only show one map
Thanks
Ray