gqlgen icon indicating copy to clipboard operation
gqlgen copied to clipboard

Anynomous @defer doesnt work

Open raphaelfff opened this issue 1 year ago • 0 comments

This works fine:

node {
  id
  ... on Tenant @defer {
    stats {
      somefields
    }
  }
}

While this doesnt...

node {
  id
  ... @defer {
    stats {
      somefields
    }
  }
}

But from a defer perspective, it should have the same behavior

raphaelfff avatar Sep 06 '24 10:09 raphaelfff