Ilmo Raunio
Ilmo Raunio
### Description `lein midje :autotest` will not rerun tests in external dependencies after modifying .clj files under `src/` folder. ### Steps to reproduce bug (example project) 1. Clone `training-day` repository...
Closes #8 This PR introduces the following pieces: - Name transformers are now supported both globally and using overrides. - We are initially adding transformation support for names, fields, enums,...
It was possible to write: ```clojure (oksa.core/gql [[:foo {} [:qux :baz]] [:basho]]) ; or (oksa.core/gql (oksa.alpha.api/select (oksa.alpha.api/field :foo (oksa.alpha.api/select :qux :baz)) (oksa.alpha.api/select :basho))) ``` resulting in incorrect GraphQL: ```graphql {foo{qux...
We should consider supporting non-standard compliant representations for field names through name transformers. The name transformers should convert the field names either at parse time or during unparse time. ####...