We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Something like this would be useful:
(defn resource-obj->statements [{:keys [grafter.rdf/uri] :as res-obj}] (let [po-pairs (dissoc res-obj :grafter.rdf/uri)] (mapcat (fn [[p os]] (if (or (set? os) (seq? os)) (map (fn [o] (pr/->Triple uri p o)) os) [(pr/->Triple uri p os)])) po-pairs)))
Ideally we should extend to-statements to do this, via clojure 1.10.0's metadata protocols....
to-statements
Actually thinking about this, we should put this in matcha not here. It will depend on #145.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Something like this would be useful:
Ideally we should extend
to-statements
to do this, via clojure 1.10.0's metadata protocols....Actually thinking about this, we should put this in matcha not here. It will depend on #145.
The text was updated successfully, but these errors were encountered: