-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Description
Hello,
In section All Variables Used...
Current example:
query variableNotUsedWithinFragment($atOtherHomes: Boolean) {
...isHousetrainedWithoutVariableFragment
}
fragment isHousetrainedWithoutVariableFragment on Dog {
isHousetrained
}
I believe it should query on Dog first... so it should be updated to:
query variableNotUsedWithinFragment($atOtherHomes: Boolean) {
dog {
...isHousetrainedWithoutVariableFragment
}
}
fragment isHousetrainedWithoutVariableFragment on Dog {
isHousetrained
}
Thank you for all the test examples in the document! It makes my life much easier
- Barret
Metadata
Metadata
Assignees
Labels
No labels