1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
---
title: Relay wrong annotation Error
---
# Relay wrong annotation error
## Description
This error is thrown when a field on a relay connection has a wrong type
annotation. For example, the following code will throw this error:
```python
from typing import List
import strawberry
from strawberry import relay
@strawberry.type
class MyType(relay.Node): ...
@strawberry.type
class Query:
# The annotation is not a subclass of relay.Connection
my_type_conn: List[MyType] = relay.connection()
# Missing the Connection class annotation
@relay.connection
def my_type_conn_with_resolver(self) -> List[MyType]: ...
# The connection class is not a subclass of relay.Connection
@relay.connection(List[MyType])
def my_type_conn_with_resolver2(self) -> List[MyType]: ...
```
## How to fix this error
You can fix this error by properly annotating your attribute or resolver with
`relay.Connection` type subclass.
For example:
```python
from typing import List
import strawberry
from strawberry import relay
@strawberry.type
class MyType(relay.Node): ...
def get_my_type_list() -> List[MyType]: ...
@strawberry.type
class Query:
my_type_conn: relay.Connection[MyType] = relay.connection(
resolver=get_my_type_list,
)
# Missing the Connection class annotation
@relay.connection(relay.Connection[MyType])
def my_type_conn_with_resolver(self) -> List[MyType]: ...
# The connection class is not a subclass of relay.Connection
@relay.connection(relay.Connection[MyType])
def my_type_conn_with_resolver2(self) -> List[MyType]: ...
```
|