Matt's Roof Garden

Powered by 🌱Roam Garden

October 20th, 2021

questions What is my "Guide to Unhappiness"?

clicking into a page title shrinks the text. It should not shrink


{
  let query = `[:find (pull ?e [:block/props])
                      :where 
                        [?e :block/props ]
                        ]`;

  var result = window.roamAlphaAPI.q(query).flat();
    
  var filteredResult = result.filter(word => "slider" in word["props"]);
  console.log(filteredResult[0]);
}