Lasse Laursen

Results 14 comments of Lasse Laursen

Reverting to `2.0.0-beta.3` seems to solve the problem

Hi I do not have any `visible?` methods implemented in any of my schemas. Actually we opt out of that feature in our schema: ```ruby use GraphQL::PersistedQueries, compiled_queries: true, store:...

I have investigated further. We are running several docker images with the same application deployed. It is random if a node returns the error or the correct data; so the...

After some time all the nodes will fail. So it might be some caching / parsing / stale object problem?

The returned "documentation" from the server also changes; some times the `pitLogs`entry is in the docs; other times not. ![Screenshot 2024-02-16 at 11 47 36](https://github.com/rmosolgo/graphql-ruby/assets/726682/b37f4e6c-b596-4fc2-94a6-27c8634d71ec)

Feel free to contact me directly so you can have a deeper look into the source code. [email protected]

Hi ```ruby # frozen_string_literal: true module Types class BaseObject < GraphQL::Schema::Object include GraphQL::Pro::PunditIntegration::ObjectIntegration pundit_role nil field_class Types::BaseField end end ``` ```ruby # frozen_string_literal: true module Types class BaseField < GraphQL::Schema::Field...

Update: I have run tons of tests via RSpec shooting off 100K requests to the endpoint without any issues. I have tested the application with production settings also and I...