Created
August 31, 2010 03:30
-
-
Save kumarshantanu/558500 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(in-txn db | |
(let [e (find-by-id blog-entry-meta 3) | |
r ((find-rels e entry-comment-meta) e) | |
c (first r)] | |
(println "** Deleting comment **") | |
(delete c) | |
(println "** Deleting entry-comment graph **") | |
(delete-cascade e))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment