pathom

:pathom: https://github.com/wilkerlucio/pathom/ & https://pathom3.wsscode.com & https://roamresearch.com/#/app/wsscode
Quentin Le Guennec 2020-07-24T07:12:15.347600Z

Does pathom integrate well with re-frame?

souenzzo 2020-07-24T12:21:26.351400Z

@quentin.leguennec1 I don't think that there is a re-frame<>EQL integration library But you can use a EQL backend(with pathom) as you use REST or GraphQL backend. Something like this

:http-xhrio {:method          :post
             :uri             "/api"
             :params          `[{:my/current [:query
                                              :with
                                              :params]}]
             :response-format (ajax/transit-response-format)
             :on-success      [:good-http-result]
             :on-failure      [:bad-http-result]}

👍 1
Quentin Le Guennec 2020-07-24T12:26:28.352200Z

@souenzzo I see, thank you