Query children blocks of a specific block?

Apparently :block/uuid is not a proper string.

  • Try replacing this:
    [?block :block/uuid "66102291-e5bf-485b-996c-2bb1a3311c02"]
    
  • with this:
    [?block :block/uuid ?uuid]
    [(str ?uuid) ?str]
    [(= ?str "66102291-e5bf-485b-996c-2bb1a3311c02")]
    
1 Like