Circular reference in subquery
Have table
Is it possible to rewrite it to Drizzle query? Something like:
messages with following columns: id, body and parent_id (ref to parent message from the same table). Now select all messages and for each messages return also count of messages that have this message's id as parent_id. The SQL query is roughly:Is it possible to rewrite it to Drizzle query? Something like: