Class: GraphQL::Query::NullContext
- Inherits:
-
Object
- Object
- GraphQL::Query::NullContext
- Extended by:
- Forwardable
- Defined in:
- lib/graphql/query/null_context.rb
Overview
This object can be ctx
in places where there is no query
Defined Under Namespace
Classes: NullQuery, NullSchema, NullWarden
Instance Attribute Summary collapse
-
#dataloader ⇒ Object
readonly
Returns the value of attribute dataloader.
-
#query ⇒ Object
readonly
Returns the value of attribute query.
-
#schema ⇒ Object
readonly
Returns the value of attribute schema.
-
#warden ⇒ Object
readonly
Returns the value of attribute warden.
Class Method Summary collapse
Instance Method Summary collapse
-
#[](key) ⇒ Object
-
#initialize ⇒ NullContext
constructor
A new instance of NullContext.
-
#interpreter? ⇒ Boolean
Constructor Details
#initialize ⇒ NullContext
Returns a new instance of NullContext.
25 26 27 28 29 30 31 32 33 34 |
# File 'lib/graphql/query/null_context.rb', line 25 def initialize @query = NullQuery.new @dataloader = GraphQL::Dataloader::NullDataloader.new @schema = NullSchema @warden = NullWarden.new( GraphQL::Filter.new, context: self, schema: @schema, ) end |
Instance Attribute Details
#dataloader ⇒ Object (readonly)
Returns the value of attribute dataloader.
23 24 25 |
# File 'lib/graphql/query/null_context.rb', line 23 def dataloader @dataloader end |
#query ⇒ Object (readonly)
Returns the value of attribute query.
23 24 25 |
# File 'lib/graphql/query/null_context.rb', line 23 def query @query end |
#schema ⇒ Object (readonly)
Returns the value of attribute schema.
23 24 25 |
# File 'lib/graphql/query/null_context.rb', line 23 def schema @schema end |
#warden ⇒ Object (readonly)
Returns the value of attribute warden.
23 24 25 |
# File 'lib/graphql/query/null_context.rb', line 23 def warden @warden end |
Class Method Details
.[](key) ⇒ Object
45 |
# File 'lib/graphql/query/null_context.rb', line 45 def [](key); end |
.instance ⇒ Object
47 48 49 |
# File 'lib/graphql/query/null_context.rb', line 47 def instance @instance ||= self.new end |
Instance Method Details
#[](key) ⇒ Object
36 |
# File 'lib/graphql/query/null_context.rb', line 36 def [](key); end |
#interpreter? ⇒ Boolean
38 39 40 |
# File 'lib/graphql/query/null_context.rb', line 38 def interpreter? true end |