mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-16 12:12:53 -06:00
9856 fix tests
This commit is contained in:
parent
c2a3275c79
commit
d6fd0b88af
@ -123,7 +123,7 @@ class ConfigTemplateType(TagsMixin, ObjectType):
|
|||||||
filters=CustomFieldFilter
|
filters=CustomFieldFilter
|
||||||
)
|
)
|
||||||
class CustomFieldType(ObjectType):
|
class CustomFieldType(ObjectType):
|
||||||
object_type: Annotated["ContentTypeType", strawberry.lazy('netbox.graphql.types')] | None
|
related_object_type: Annotated["ContentTypeType", strawberry.lazy('netbox.graphql.types')] | None
|
||||||
choice_set: Annotated["CustomFieldChoiceSetType", strawberry.lazy('extras.graphql.types')] | None
|
choice_set: Annotated["CustomFieldChoiceSetType", strawberry.lazy('extras.graphql.types')] | None
|
||||||
|
|
||||||
|
|
||||||
|
@ -189,6 +189,6 @@ class ContactGroupType(OrganizationalObjectType):
|
|||||||
filters=ContactAssignmentFilter
|
filters=ContactAssignmentFilter
|
||||||
)
|
)
|
||||||
class ContactAssignmentType(CustomFieldsMixin, TagsMixin, BaseObjectType):
|
class ContactAssignmentType(CustomFieldsMixin, TagsMixin, BaseObjectType):
|
||||||
content_type: Annotated["ContentTypeType", strawberry.lazy('netbox.graphql.types')] | None
|
object_type: Annotated["ContentTypeType", strawberry.lazy('netbox.graphql.types')] | None
|
||||||
contact: Annotated["ContactType", strawberry.lazy('tenancy.graphql.types')] | None
|
contact: Annotated["ContactType", strawberry.lazy('tenancy.graphql.types')] | None
|
||||||
role: Annotated["ContactRoleType", strawberry.lazy('tenancy.graphql.types')] | None
|
role: Annotated["ContactRoleType", strawberry.lazy('tenancy.graphql.types')] | None
|
||||||
|
Loading…
Reference in New Issue
Block a user