diff --git a/netbox/netbox/graphql/types.py b/netbox/netbox/graphql/types.py index f084c8140..64aa3617a 100644 --- a/netbox/netbox/graphql/types.py +++ b/netbox/netbox/graphql/types.py @@ -4,6 +4,7 @@ import strawberry from strawberry import auto import strawberry_django +from core.models import ObjectType as ObjectType_ from django.contrib.contenttypes.models import ContentType from extras.graphql.mixins import ( ChangelogMixin, @@ -92,3 +93,11 @@ class NetBoxObjectType( ) class ContentTypeType: pass + + +@strawberry_django.type( + ObjectType_, + fields=['id', 'app_label', 'model'], +) +class ObjectTypeType: + pass