Hubert

Results 54 comments of Hubert

I just ran in the same issue. I'm using seamless-immutable like this: ``` import { combineReducers } from 'redux-seamless-immutable'; import orm from '../orm/orm'; import Immutable from 'seamless-immutable'; export default combineReducers(Immutable({...

Is there any news on this? I get the same warnings when updating to graphql-ruby 1.13.8

I just tried to find a fix for this, but I'm not sure how to get the `metadata` from `schema_member` without using `graphql_definition` in those lines: https://github.com/exAspArk/graphql-guard/blob/fb42e72112c51cde2380c0a62d31fb3d63515d45/lib/graphql/guard.rb#L16-L19 In sum there...

I just discovered, that it's not only a deprecation warning, but an error: ``` NoMethodError: undefined method `graphql_definition' for # Did you mean? graphql_name # /usr/local/bundle/gems/graphql-guard-2.0.0/lib/graphql/guard.rb:17:in `block in ' ```

@rmosolgo thanks for the quick answer! It seems, that the changes require more work than I first anticipated to get masking to work. So I wondered, if you can give...

Consider this test for RSpec ``` it "looks if graphql schema has changed" do old_schema = File.read(Rails.root.join("schema.graphql")) new_schema = MySchema.to_graphql result = GraphQL::SchemaComparator.compare(old_schema, new_schema) expect(result).to be_identical end ``` When we...

+1 I would also need this. Any chance that this PR gets merged?