Class: GraphQL::Dataloader::NullDataloader
- Inherits:
-
GraphQL::Dataloader
- Object
- GraphQL::Dataloader
- GraphQL::Dataloader::NullDataloader
- Defined in:
- lib/graphql/dataloader/null_dataloader.rb
Overview
The default implementation of dataloading – all no-ops.
The Dataloader interface isn’t public, but it enables simple internal code while adding the option to add Dataloader.
Instance Method Summary collapse
-
#append_job ⇒ Object
-
#run ⇒ Object
These are all no-ops because code was executed sychronously.
-
#yield ⇒ Object
Methods inherited from GraphQL::Dataloader
Constructor Details
This class inherits a constructor from GraphQL::Dataloader
Instance Method Details
#append_job ⇒ Object
15 16 17 18 |
# File 'lib/graphql/dataloader/null_dataloader.rb', line 15 def append_job yield nil end |
#run ⇒ Object
These are all no-ops because code was executed sychronously.
12 |
# File 'lib/graphql/dataloader/null_dataloader.rb', line 12 def run; end |
#yield ⇒ Object
13 |
# File 'lib/graphql/dataloader/null_dataloader.rb', line 13 def yield; end |