Does pathom integrate well with re-frame?
@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]}
@souenzzo I see, thank you