You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When executing cargo fuzz run parser documents are created with input values with variables e.g.
interface s {
U0(s0: ID = $FQAAAAAAAAAAAAAAAAAAAAAAA, A1: A0, A2: A0): A0
M1: A0
}
This is invalid as per https://spec.graphql.org/October2021/#Value
Variables should not be used in a const context. This means that within a graphql schema variables should not be used, only within an operation.
The text was updated successfully, but these errors were encountered:
As per the spec: https://spec.graphql.org/October2021/#Value
Values should not be variables in a const context.
The TLDR of this is that within schema definitions variables should bot be used on arguments.
Within operations variables can should be used.
Fixes#810
As per the spec: https://spec.graphql.org/October2021/#Value
Values should not be variables in a const context.
The TLDR of this is that within schema definitions variables should bot be used on arguments.
Within operations variables can should be used.
Fixes#810
* Add constness to input value generation.
As per the spec: https://spec.graphql.org/October2021/#Value
Values should not be variables in a const context.
The TLDR of this is that within schema definitions variables should bot be used on arguments.
Within operations variables can should be used.
Fixes#810
When executing
cargo fuzz run parser
documents are created with input values with variables e.g.This is invalid as per https://spec.graphql.org/October2021/#Value
Variables should not be used in a const context. This means that within a graphql schema variables should not be used, only within an operation.
The text was updated successfully, but these errors were encountered: