Skip to content

Commit

Permalink
Allow variable definition directives in validation
Browse files Browse the repository at this point in the history
  • Loading branch information
adampetro committed Aug 20, 2024
1 parent 761191d commit ee4daa8
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ def on_directive(node, parent)
Nodes::InlineFragment => GraphQL::Schema::Directive::INLINE_FRAGMENT,
Nodes::FragmentSpread => GraphQL::Schema::Directive::FRAGMENT_SPREAD,
Nodes::FragmentDefinition => GraphQL::Schema::Directive::FRAGMENT_DEFINITION,
Nodes::VariableDefinition => GraphQL::Schema::Directive::VARIABLE_DEFINITION,
}

SIMPLE_LOCATION_NODES = SIMPLE_LOCATIONS.keys
Expand Down
9 changes: 9 additions & 0 deletions spec/graphql/introspection/directive_type_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@
"onFragment" => false,
"onOperation" => false,
},
{
"name"=>"directiveForVariableDefinition",
"args"=>[],
"locations"=>["VARIABLE_DEFINITION"],
"isRepeatable"=>false,
"onField"=>false,
"onFragment"=>false,
"onOperation"=>false,
},
{
"name"=>"doStuff",
"args"=>[],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,56 @@

describe GraphQL::StaticValidation::DirectivesAreInValidLocations do
include StaticValidationHelpers
let(:query_string) {"
query getCheese @skip(if: true) {
okCheese: cheese(id: 1) {
id @skip(if: true),
source
... on Cheese @skip(if: true) {
flavor
... whatever

describe "invalid directive locations" do
let(:query_string) {"
query getCheese @skip(if: true) {
okCheese: cheese(id: 1) {
id @skip(if: true),
source
... on Cheese @skip(if: true) {
flavor
... whatever
}
}
}
}
fragment whatever on Cheese @skip(if: true) {
id
}
"}
fragment whatever on Cheese @skip(if: true) {
id
}
"}

describe "invalid directive locations" do
it "makes errors for them" do
expected = [
{
"message"=> "'@skip' can't be applied to queries (allowed: fields, fragment spreads, inline fragments)",
"locations"=>[{"line"=>2, "column"=>21}],
"locations"=>[{"line"=>2, "column"=>23}],
"path"=>["query getCheese"],
"extensions"=>{"code"=>"directiveCannotBeApplied", "targetName"=>"queries", "name"=>"skip"}
},
{
"message"=>"'@skip' can't be applied to fragment definitions (allowed: fields, fragment spreads, inline fragments)",
"locations"=>[{"line"=>13, "column"=>33}],
"locations"=>[{"line"=>13, "column"=>35}],
"path"=>["fragment whatever"],
"extensions"=>{"code"=>"directiveCannotBeApplied", "targetName"=>"fragment definitions", "name"=>"skip"}
},
]
assert_equal(expected, errors)
end
end

describe "valid directive locations" do
let(:query_string) {"
query getCheese($id: Int! @directiveForVariableDefinition) {
cheese(id: $id) {
id
}
}
"}

it "does not make errors for them" do
expected = []
assert_equal(expected, errors)
end
end
end
8 changes: 8 additions & 0 deletions spec/support/dummy/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ class BaseInputObject < GraphQL::Schema::InputObject
class BaseScalar < GraphQL::Schema::Scalar
end

class BaseDirective < GraphQL::Schema::Directive
end

module LocalProduct
include BaseInterface
description "Something that comes from somewhere"
Expand Down Expand Up @@ -530,6 +533,10 @@ def replace_values(input:)
end
end

class DirectiveForVariableDefinition < BaseDirective
locations(VARIABLE_DEFINITION)
end

class Subscription < BaseObject
field :test, String
def test; "Test"; end
Expand All @@ -542,6 +549,7 @@ class Schema < GraphQL::Schema
max_depth 5
orphan_types Honey
trace_with GraphQL::Tracing::CallLegacyTracers
directives(DirectiveForVariableDefinition)

rescue_from(NoSuchDairyError) { |err| raise GraphQL::ExecutionError, err.message }

Expand Down

0 comments on commit ee4daa8

Please sign in to comment.