mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-18 10:16:34 +00:00
14 lines
251 B
Python
14 lines
251 B
Python
from typing import Annotated, List
|
|
|
|
import strawberry
|
|
|
|
__all__ = (
|
|
'ContactAssignmentsMixin',
|
|
)
|
|
|
|
|
|
@strawberry.type
|
|
class ContactAssignmentsMixin:
|
|
|
|
assignments: List[Annotated["ContactAssignmentType", strawberry.lazy('tenancy.graphql.types')]]
|