I would like to build a pathom3 dynamic resolver for postgrest (https://github.com/PostgREST/postgrest) that will help querying postgrest from clojurescript. Is this doable ? Any recommendation on what could help me in that process ?
it should be doable, currently the docs are kinda lacking, the best is to understand via some other dynamic resolver implementations: https://github.com/wilkerlucio/pathom3-datomic https://github.com/wilkerlucio/pathom3-graphql I'm also available to answer any questions related to it
but one thing in advance, this usually works better when you wanna give full access to the underlying resource, or if access control is managed already (by some token used on the integration, or something like it, in general I mean the visibility of the process is the same as what you want to expose). otherwise, IME it ends up being easier to write specific resolvers than try to implement dynamic resolvers for complete access
I see, thanks for your insight! I’ll ask questions if needed.
Maybe I’ll just stick to static resolvers.