artemis
artemis copied to clipboard
Ruby GraphQL client on Rails that actually makes you more productive
Addresses https://github.com/yuki24/artemis/issues/86
I've tried to access the errors from a call using `result.try(:errors)` but all I get is an empty array. If I use `result.original_hash["errors"]` I get the correct results. I am...
After upgrading Raiils 6.1 to 7.0, the app fails to boot because the [initializer](https://github.com/yuki24/artemis/blob/b314f25059ba912805d2c1ab718f261e81caacbc/lib/artemis/railtie.rb#L60-L72) `graphql.client.preload` cannot load the registered service. ``` /app/app/lib/my_graphql.rb:1:in `': uninitialized constant GraphqlClient (NameError) class MyGraphql <...
Is it possible to validate the variables / response in test according to the schema?