Hello, wanting to do some recursive queries on my app state atom. Have elements called "blurbs" and said "blurbs" can have "comments." Makes most sense to represent this as the tree that it is, or have references to parent elements (which is preferred because of how the server passes messages to the client). How can I do a recursive query on something like comments of comments for my om.next Ui?
I found this page, which shows how to write the query line using '[ :outside [:inside { :recursionthing ... }]] https://anmonteiro.com/2016/01/om-next-query-syntax/
But i'm not clear on how to use the queried-for elements in my code (as UI elements)
i get the data side but could use some illumination on the view side
@sova: For more documentation on recursive queries: http://book.fulcrologic.com/#_recursive_queries