9856 review changes

This commit is contained in:
Arthur 2024-03-19 10:10:36 -07:00
parent d53bd5fdbc
commit c8ae7a3c8d

View File

@ -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