Class: GraphQL::StaticValidation::ValidationContext
- Inherits:
-
Object
- Object
- GraphQL::StaticValidation::ValidationContext
- Defined in:
- lib/graphql/static_validation/validation_context.rb
Overview
The validation context gets passed to each validator.
It exposes a Language::Visitor where validators may add hooks. (Visitor#visit is called in GraphQL::StaticValidation::Validator#validate)
It provides access to the schema & fragments which validators may read from.
It holds a list of errors which each validator may add to.
It also provides limited access to the TypeStack instance, which tracks state as you climb in and out of different fields.
Instance Attribute Summary collapse
-
#document ⇒ Object
readonly
Returns the value of attribute document.
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
-
#fragments ⇒ Object
readonly
Returns the value of attribute fragments.
-
#operations ⇒ Object
readonly
Returns the value of attribute operations.
-
#schema ⇒ Object
readonly
Returns the value of attribute schema.
-
#visitor ⇒ Object
readonly
Returns the value of attribute visitor.
Instance Method Summary collapse
-
#argument_definition ⇒ GraphQL::Argument?
The most-recently-entered GraphQL::Argument, if currently inside one.
-
#directive_definition ⇒ GraphQL::Directive?
The most-recently-entered GraphQL::Directive, if currently inside one.
-
#field_definition ⇒ GraphQL::Field?
The most-recently-entered GraphQL::Field, if currently inside one.
-
#initialize(schema, document) ⇒ ValidationContext
constructor
A new instance of ValidationContext.
- #object_types ⇒ Object
-
#skip_field?(field_name) ⇒ Boolean
Don’t try to validate dynamic fields since they aren’t defined by the type system.
Constructor Details
#initialize(schema, document) ⇒ ValidationContext
Returns a new instance of ValidationContext.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/graphql/static_validation/validation_context.rb', line 15 def initialize(schema, document) @schema = schema @document = document @fragments = {} @operations = {} document.definitions.each do |definition| case definition when GraphQL::Language::Nodes::FragmentDefinition @fragments[definition.name] = definition when GraphQL::Language::Nodes::OperationDefinition @operations[definition.name] = definition end end @errors = [] @visitor = GraphQL::Language::Visitor.new @type_stack = GraphQL::StaticValidation::TypeStack.new(schema, visitor) end |
Instance Attribute Details
#document ⇒ Object (readonly)
Returns the value of attribute document.
14 15 16 |
# File 'lib/graphql/static_validation/validation_context.rb', line 14 def document @document end |
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
14 15 16 |
# File 'lib/graphql/static_validation/validation_context.rb', line 14 def errors @errors end |
#fragments ⇒ Object (readonly)
Returns the value of attribute fragments.
14 15 16 |
# File 'lib/graphql/static_validation/validation_context.rb', line 14 def fragments @fragments end |
#operations ⇒ Object (readonly)
Returns the value of attribute operations.
14 15 16 |
# File 'lib/graphql/static_validation/validation_context.rb', line 14 def operations @operations end |
#schema ⇒ Object (readonly)
Returns the value of attribute schema.
14 15 16 |
# File 'lib/graphql/static_validation/validation_context.rb', line 14 def schema @schema end |
#visitor ⇒ Object (readonly)
Returns the value of attribute visitor.
14 15 16 |
# File 'lib/graphql/static_validation/validation_context.rb', line 14 def visitor @visitor end |
Instance Method Details
#argument_definition ⇒ GraphQL::Argument?
Returns The most-recently-entered GraphQL::Argument, if currently inside one.
50 51 52 53 54 |
# File 'lib/graphql/static_validation/validation_context.rb', line 50 def argument_definition # Don't get the _last_ one because that's the current one. # Get the second-to-last one, which is the parent of the current one. @type_stack.argument_definitions[-2] end |
#directive_definition ⇒ GraphQL::Directive?
Returns The most-recently-entered GraphQL::Directive, if currently inside one.
45 46 47 |
# File 'lib/graphql/static_validation/validation_context.rb', line 45 def directive_definition @type_stack.directive_definitions.last end |
#field_definition ⇒ GraphQL::Field?
Returns The most-recently-entered GraphQL::Field, if currently inside one.
40 41 42 |
# File 'lib/graphql/static_validation/validation_context.rb', line 40 def field_definition @type_stack.field_definitions.last end |
#object_types ⇒ Object
35 36 37 |
# File 'lib/graphql/static_validation/validation_context.rb', line 35 def object_types @type_stack.object_types end |
#skip_field?(field_name) ⇒ Boolean
Don’t try to validate dynamic fields since they aren’t defined by the type system
58 59 60 |
# File 'lib/graphql/static_validation/validation_context.rb', line 58 def skip_field?(field_name) GraphQL::Schema::DYNAMIC_FIELDS.include?(field_name) end |