Back

-> (clj)

(source)

variable

The -> operator for accessing nested JSON(B) values as JSON(B). Ex.: ```clojure (sql/format {:select [[[:->> [:-> :my_column "kids" [:inline 0]] "name"]]]}) ; => ["SELECT (my_column -> ? -> 0) ->> ?" "kids" "name"] ``` Notice we need to wrap the keys/indices with :inline if we don't want them to become parameters.

Examples