Mario Celi

Results 39 comments of Mario Celi

@00dav00 reopening this one as a feature request. Changing names of the queries should be straightforward and a nice addition. Perhaps something in the resource loaders like: ```ruby GraphqlDevise::ResourceLoader.new(User, only:...

Hey @TomasBarry! You can actually already customize this message if you are using the `SchemaPlugin`. Take a look at this lambda which is the default https://github.com/graphql-devise/graphql_devise/blob/adf4e742633e2b61e3d29bf09a26d56ef0d6aec8/lib/graphql_devise/schema_plugin.rb#L7 You can initialize your...

Hey @wolak88! Currently, not really. You can safely use the [Devise Invitable](https://github.com/scambra/devise_invitable) gem together with this one. Take a look at #156 as it was discussed before.

I did some research on the issue and just wanted to post my findings. This issue only affects rails >= 6.0 After reading the source of `Rails::Generators::TestCase` I'm still unable...

So it's definitively not a problem with this gem, and it makes sense as the public interface for `TestCase` remains the same. I didn't quite get the exact code that...

Hey @janosrusiczki! You are not doing something wrong, this is the correct behavior of the gem as commented in https://github.com/graphql-devise/graphql_devise/blob/c9011c62f13e0c2838cd4ccbda87ab11742558a4/lib/graphql_devise/schema_plugin.rb#L26 This was done for performance reasons at first as not...

We need to think about this a bit more, but I kind of feel we might not want to allow this unless it has a very low impact to performance....

Awesome, will try to push something for review soon.

That's a good idea. That might be a good alternative. graphql-guard definitively looks abandoned. But I still have to look into supporting this in this gem. As I said before,...

Hey, @jpmermoz! I don't think there's a way now. We need to do something similar to what is described in https://graphql-ruby.org/schema/introspection.html#disabling-introspection for the separate route. We do support public or...