Fork me on GitHub
#specter
<
2017-01-16
>
richiardiandrea01:01:00

so if i do something like:

(sp/transform [:family
                 :relationship
                 sp/ALL]
                #(dadada)
                family)
The :relationship key is created even when it is missing. Is there a way to avoid it? Meaning I don't want to create it at all if it was not there in the first place?

schmee08:01:38

richiardiandrea use (must :relationship)

schmee09:01:36

keypath might also be of interest

richiardiandrea15:01:45

@schmee thanks! Will try soon