Open leoloso opened 4 years ago
To clarify: this bug also happens if no operation type directives were defined in the query; in that case, the overriding $directives
is an empty array
Ops, I closed by mistake.
This branch in my fork deals with this issue:
https://github.com/getpop/graphql-parser/tree/fix-overriding-directives
Can you make a PR?
Alright. I just added a test, will submit the PR now.
The bug happens only when adding "query" at the beginning of the query:
query {
user @include(if:false) {
name
}
}
This query had no issue:
{
user @include(if:false) {
name
}
}
In the following query, all directives declared in the ancestor fields are lost, only the ones in the leaf fields are parsed correctly from the AST:
For instance, in this query the
@include
directive is lost, andtitle
is included when it should not:Inspecting the code, I found out that in
Parser/Parser.php
, functionparseOperation
, the operation type directive is being set into$operation
:However, the
$operation
already had its own directives, parsed throughparseBodyItem
. Hence, these are being overridden.Merging the 2 sets of directives, instead, it works well:
Is that the right solution? Must directives defined next to the operation type be copied into all ancestor fields? And what about leaf fields, which currently have no problem with their own directives? (This solution seems to fix the bug, but I don't know if I may be creating another one? I can't find any reference in the GraphQL spec to what is the expected behavior for operation type directives...)