Method: GraphQL.eager_load!
- Defined in:
- lib/graphql.rb
.eager_load! ⇒ Object
Load all autoload-configured classes, and also eager-load dependents who have autoloads of their own.
14 15 16 17 18 19 |
# File 'lib/graphql.rb', line 14 def self.eager_load! super Query.eager_load! Types.eager_load! Schema.eager_load! end |