5
5
6
6
from circuits .graphql .types import ProviderType
7
7
from dcim .graphql .types import SiteType
8
+ from extras .graphql .mixins import ContactsMixin
8
9
from ipam import models
9
10
from netbox .graphql .scalars import BigInt
10
11
from netbox .graphql .types import BaseObjectType , NetBoxObjectType , OrganizationalObjectType
@@ -83,7 +84,7 @@ class ASNRangeType(NetBoxObjectType):
83
84
fields = '__all__' ,
84
85
filters = AggregateFilter
85
86
)
86
- class AggregateType (NetBoxObjectType , BaseIPAddressFamilyType ):
87
+ class AggregateType (NetBoxObjectType , ContactsMixin , BaseIPAddressFamilyType ):
87
88
prefix : str
88
89
rir : Annotated ["RIRType" , strawberry .lazy ('ipam.graphql.types' )] | None
89
90
tenant : Annotated ["TenantType" , strawberry .lazy ('tenancy.graphql.types' )] | None
@@ -120,7 +121,7 @@ def interface(self) -> Annotated[Union[
120
121
exclude = ('assigned_object_type' , 'assigned_object_id' , 'address' ),
121
122
filters = IPAddressFilter
122
123
)
123
- class IPAddressType (NetBoxObjectType , BaseIPAddressFamilyType ):
124
+ class IPAddressType (NetBoxObjectType , ContactsMixin , BaseIPAddressFamilyType ):
124
125
address : str
125
126
vrf : Annotated ["VRFType" , strawberry .lazy ('ipam.graphql.types' )] | None
126
127
tenant : Annotated ["TenantType" , strawberry .lazy ('tenancy.graphql.types' )] | None
@@ -144,7 +145,7 @@ def assigned_object(self) -> Annotated[Union[
144
145
fields = '__all__' ,
145
146
filters = IPRangeFilter
146
147
)
147
- class IPRangeType (NetBoxObjectType ):
148
+ class IPRangeType (NetBoxObjectType , ContactsMixin ):
148
149
start_address : str
149
150
end_address : str
150
151
vrf : Annotated ["VRFType" , strawberry .lazy ('ipam.graphql.types' )] | None
@@ -157,7 +158,7 @@ class IPRangeType(NetBoxObjectType):
157
158
exclude = ('scope_type' , 'scope_id' , '_location' , '_region' , '_site' , '_site_group' ),
158
159
filters = PrefixFilter
159
160
)
160
- class PrefixType (NetBoxObjectType , BaseIPAddressFamilyType ):
161
+ class PrefixType (NetBoxObjectType , ContactsMixin , BaseIPAddressFamilyType ):
161
162
prefix : str
162
163
vrf : Annotated ["VRFType" , strawberry .lazy ('ipam.graphql.types' )] | None
163
164
tenant : Annotated ["TenantType" , strawberry .lazy ('tenancy.graphql.types' )] | None
@@ -217,7 +218,7 @@ class RouteTargetType(NetBoxObjectType):
217
218
fields = '__all__' ,
218
219
filters = ServiceFilter
219
220
)
220
- class ServiceType (NetBoxObjectType ):
221
+ class ServiceType (NetBoxObjectType , ContactsMixin ):
221
222
ports : List [int ]
222
223
device : Annotated ["DeviceType" , strawberry .lazy ('dcim.graphql.types' )] | None
223
224
virtual_machine : Annotated ["VirtualMachineType" , strawberry .lazy ('virtualization.graphql.types' )] | None
0 commit comments