<!-- Provide a general summary of the bug in the title above. --> <!--- This template is entirely optional and can be removed, but is here to help both you and us. --> <!--- Anything on lines wrapped in comments like these will not show up in the final text. --> ## Describe the Bug I'm testing `strawberry.Streamable`. My code looks analogous to what is in the docs: https://strawberry.rocks/docs/types/defer-and-stream. But, unlike the docs, the response I get from the server does not follow the spec for `path`. Instead of something like ``` "path": ["blogPost", "comments", 2] ``` I get ``` "path": ["blogPost", "comments"] ``` which looks like what it should be for `@defer`, not `@stream`. ## System Information ```sh ❯ uv pip show strawberry-graphql Name: strawberry-graphql Version: 0.281.0 ```