mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
16 lines
277 B
Python
16 lines
277 B
Python
from typing import Annotated, List
|
|
|
|
import strawberry
|
|
import strawberry_django
|
|
|
|
|
|
__all__ = (
|
|
'ContactAssignmentsMixin',
|
|
)
|
|
|
|
|
|
@strawberry.type
|
|
class ContactAssignmentsMixin:
|
|
|
|
assignments: List[Annotated["ContactAssignmentType", strawberry.lazy('tenancy.graphql.types')]]
|