Explorar o código

9856 review changes

Arthur hai 1 ano
pai
achega
908150f9a1
Modificáronse 1 ficheiros con 9 adicións e 0 borrados
  1. 9 0
      netbox/netbox/graphql/types.py

+ 9 - 0
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