Fork me on GitHub
#fulcro
<
2022-03-28
>
njj17:03:07

If there is a lot of data being passed into the props for a component (too much to possibly have an entry in the query for each keyword), is there a way to say query all the things that are passed in? A previous developer on my team wrote a strange macro wrapper around the old defui that somehow allows '* to be passed as a query and it has all the items expected in the props

njj17:03:37

I seems doing this is working so far…:

(prim/defsc SearchTableRow [this props {:keys [columns role] :as computed}]
  {:query ['*]}