We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a173a9b commit 55cda3cCopy full SHA for 55cda3c
netbox/tenancy/graphql/filter_mixins.py
@@ -9,7 +9,7 @@
9
10
if TYPE_CHECKING:
11
from netbox.graphql.filter_lookups import TreeNodeFilter
12
- from .filters import ContactFilter, TenantFilter, TenantGroupFilter
+ from .filters import ContactAssignmentFilter, TenantFilter, TenantGroupFilter
13
14
__all__ = (
15
'ContactFilterMixin',
@@ -19,7 +19,7 @@
19
20
@dataclass
21
class ContactFilterMixin(BaseFilterMixin):
22
- contacts: Annotated['ContactFilter', strawberry.lazy('tenancy.graphql.filters')] | None = (
+ contacts: Annotated['ContactAssignmentFilter', strawberry.lazy('tenancy.graphql.filters')] | None = (
23
strawberry_django.filter_field()
24
)
25
0 commit comments