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
These two query plans are for the same query, but in the lower one we are using variables and unneeded branching is occurring.
query NpcFriends {
npc(id: 301) {
__typename
id
name
exCrawler
... on Manager {
friends(first: 2) {
id
name
}
}
... on Staff {
friends(first: 2) {
id
name
}
}
}
}
But here, unneeded branching and combining is occurring after a lambda step:
query NpcFriendsWithVariables($first: Int) @variables(values: { first: 2 }) {
npc(id: 301) {
__typename
id
name
exCrawler
... on Manager {
friends(first: $first) {
id
name
}
}
... on Staff {
friends(first: $first) {
id
name
}
}
}
}
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Ref
grafast/grafast/__tests__/dcc/queries/npc-friends.test.graphql
These two query plans are for the same query, but in the lower one we are using variables and unneeded branching is occurring.
But here, unneeded branching and combining is occurring after a lambda step:
The text was updated successfully, but these errors were encountered: