Sha256: b8afe680513b0c1fef4e1aa763b47982fe802a9eb436c898e8f9d5f41f512666
Contents?: true
Size: 1.12 KB
Versions: 2
Compression:
Stored size: 1.12 KB
Contents
module GraphQL module StaticValidation class FieldsAreDefinedOnType include GraphQL::StaticValidation::Message::MessageHelper def validate(context) visitor = context.visitor visitor[GraphQL::Language::Nodes::Field] << ->(node, parent) { return if context.skip_field?(node.name) parent_type = context.object_types[-2] parent_type = parent_type.unwrap validate_field(context, node, parent_type, parent) } end private def validate_field(context, ast_field, parent_type, parent) if parent_type.kind.union? context.errors << message("Selections can't be made directly on unions (see selections on #{parent_type.name})", parent, context: context) return GraphQL::Language::Visitor::SKIP end field = context.schema.get_field(parent_type, ast_field.name) if field.nil? context.errors << message("Field '#{ast_field.name}' doesn't exist on type '#{parent_type.name}'", ast_field, context: context) return GraphQL::Language::Visitor::SKIP end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
graphql-1.0.0 | lib/graphql/static_validation/rules/fields_are_defined_on_type.rb |
graphql-0.19.4 | lib/graphql/static_validation/rules/fields_are_defined_on_type.rb |