Fork me on GitHub
#reitit
<
2023-05-02
>
tlonist23:05:18

so https://github.com/metosin/reitit/blob/master/doc/http/pedestal.md deviates from pedestal way of routing? By pedestal way I mean using :server/routes for routing. If you read the docs it seems that the routing is processed inwardly from the reitit custom interceptor. And here are more questions. • What is a better way of using lacinia + pedestal + reitit all at once? https://github.com/walmartlabs/lacinia-pedestal#:~:text=(def%20service%20(lp/default%2Dservice%20hello%2Dschema%20nil)), it suggests using default-service but this creates a pedestal service map (https://github.com/walmartlabs/lacinia-pedestal/blob/88468c0c1ba0bc7a84fcafb20ce6150e48545e18/src/com/walmartlabs/lacinia/pedestal2.clj#L326) which is not compatible with reitit router. Should I just have it defined with a new url with reitit.pedestal and execute lacinia with lacinia/execute manually?