Class: GraphQL::StaticValidation::ValidationContext
- Inherits:
-
Object
- Object
- GraphQL::StaticValidation::ValidationContext
- Extended by:
- Forwardable
- 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. (Language::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
-
#dependencies ⇒ Object
readonly
Returns the value of attribute dependencies.
-
#document ⇒ Object
readonly
Returns the value of attribute document.
-
#each_irep_node_handlers ⇒ Object
readonly
Returns the value of attribute each_irep_node_handlers.
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
-
#query ⇒ Object
readonly
Returns the value of attribute query.
-
#schema ⇒ Object
readonly
Returns the value of attribute schema.
-
#visitor ⇒ Object
readonly
Returns the value of attribute visitor.
-
#warden ⇒ Object
readonly
Returns the value of attribute warden.
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.
- #each_irep_node(&handler) ⇒ Object
-
#field_definition ⇒ GraphQL::Field?
The most-recently-entered GraphQL::Field, if currently inside one.
-
#initialize(query) ⇒ ValidationContext
constructor
A new instance of ValidationContext.
- #object_types ⇒ Object
- #on_dependency_resolve(&handler) ⇒ Object
-
#parent_type_definition ⇒ GraphQL::BaseType
The type which the current type came from.
-
#path ⇒ Array<String>
Field names to get to the current field.
-
#type_definition ⇒ GraphQL::BaseType
The current object type.
- #valid_literal?(ast_value, type) ⇒ Boolean
Constructor Details
#initialize(query) ⇒ ValidationContext
Returns a new instance of ValidationContext.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/graphql/static_validation/validation_context.rb', line 23 def initialize(query) @query = query @literal_validator = LiteralValidator.new(warden: warden) @errors = [] @visitor = GraphQL::Language::Visitor.new(document) @type_stack = GraphQL::StaticValidation::TypeStack.new(schema, visitor) definition_dependencies = DefinitionDependencies.mount(self) @on_dependency_resolve_handlers = [] @each_irep_node_handlers = [] visitor[GraphQL::Language::Nodes::Document].leave << ->(_n, _p) { @dependencies = definition_dependencies.dependency_map { |defn, spreads, frag| @on_dependency_resolve_handlers.each { |h| h.call(defn, spreads, frag) } } } end |
Instance Attribute Details
#dependencies ⇒ Object (readonly)
Returns the value of attribute dependencies.
17 18 19 |
# File 'lib/graphql/static_validation/validation_context.rb', line 17 def dependencies @dependencies end |
#document ⇒ Object (readonly)
Returns the value of attribute document.
17 18 19 |
# File 'lib/graphql/static_validation/validation_context.rb', line 17 def document @document end |
#each_irep_node_handlers ⇒ Object (readonly)
Returns the value of attribute each_irep_node_handlers.
17 18 19 |
# File 'lib/graphql/static_validation/validation_context.rb', line 17 def each_irep_node_handlers @each_irep_node_handlers end |
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
17 18 19 |
# File 'lib/graphql/static_validation/validation_context.rb', line 17 def errors @errors end |
#query ⇒ Object (readonly)
Returns the value of attribute query.
17 18 19 |
# File 'lib/graphql/static_validation/validation_context.rb', line 17 def query @query end |
#schema ⇒ Object (readonly)
Returns the value of attribute schema.
17 18 19 |
# File 'lib/graphql/static_validation/validation_context.rb', line 17 def schema @schema end |
#visitor ⇒ Object (readonly)
Returns the value of attribute visitor.
17 18 19 |
# File 'lib/graphql/static_validation/validation_context.rb', line 17 def visitor @visitor end |
#warden ⇒ Object (readonly)
Returns the value of attribute warden.
17 18 19 |
# File 'lib/graphql/static_validation/validation_context.rb', line 17 def warden @warden end |
Instance Method Details
#argument_definition ⇒ GraphQL::Argument?
Returns The most-recently-entered GraphQL::Argument, if currently inside one.
78 79 80 81 82 |
# File 'lib/graphql/static_validation/validation_context.rb', line 78 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.
73 74 75 |
# File 'lib/graphql/static_validation/validation_context.rb', line 73 def directive_definition @type_stack.directive_definitions.last end |
#each_irep_node(&handler) ⇒ Object
48 49 50 |
# File 'lib/graphql/static_validation/validation_context.rb', line 48 def each_irep_node(&handler) @each_irep_node_handlers << handler end |
#field_definition ⇒ GraphQL::Field?
Returns The most-recently-entered GraphQL::Field, if currently inside one.
63 64 65 |
# File 'lib/graphql/static_validation/validation_context.rb', line 63 def field_definition @type_stack.field_definitions.last end |
#object_types ⇒ Object
44 45 46 |
# File 'lib/graphql/static_validation/validation_context.rb', line 44 def object_types @type_stack.object_types end |
#on_dependency_resolve(&handler) ⇒ Object
40 41 42 |
# File 'lib/graphql/static_validation/validation_context.rb', line 40 def on_dependency_resolve(&handler) @on_dependency_resolve_handlers << handler end |
#parent_type_definition ⇒ GraphQL::BaseType
Returns The type which the current type came from.
58 59 60 |
# File 'lib/graphql/static_validation/validation_context.rb', line 58 def parent_type_definition object_types[-2] end |
#path ⇒ Array<String>
Returns Field names to get to the current field.
68 69 70 |
# File 'lib/graphql/static_validation/validation_context.rb', line 68 def path @type_stack.path.dup end |
#type_definition ⇒ GraphQL::BaseType
Returns The current object type.
53 54 55 |
# File 'lib/graphql/static_validation/validation_context.rb', line 53 def type_definition object_types.last end |
#valid_literal?(ast_value, type) ⇒ Boolean
84 85 86 |
# File 'lib/graphql/static_validation/validation_context.rb', line 84 def valid_literal?(ast_value, type) @literal_validator.validate(ast_value, type) end |