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
I'm trying to implement a custom estimation that depends on which fields are selected under a type.
Here's an example:
query {
a: someType { id } # Only id is selected, so calculation happens one wayb: someType { id, some, fields } # More than id is selected so calculation happens another way
}
I don't believe that the exact behavior I want is achievable with childComplexity unfortunately, I need access to the selectionSet for the given node.