mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Add support for custom field data
This commit is contained in:
@ -1,4 +1,5 @@
|
|||||||
import graphene
|
import graphene
|
||||||
|
from graphene.types.generic import GenericScalar
|
||||||
from graphene_django import DjangoObjectType
|
from graphene_django import DjangoObjectType
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
@ -22,11 +23,17 @@ class BaseObjectType(DjangoObjectType):
|
|||||||
|
|
||||||
|
|
||||||
class ObjectType(BaseObjectType):
|
class ObjectType(BaseObjectType):
|
||||||
# TODO: Custom fields support
|
"""
|
||||||
|
Extends BaseObjectType with support for custom field data.
|
||||||
|
"""
|
||||||
|
custom_fields = GenericScalar()
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
abstract = True
|
abstract = True
|
||||||
|
|
||||||
|
def resolve_custom_fields(self, info):
|
||||||
|
return self.custom_field_data
|
||||||
|
|
||||||
|
|
||||||
class TaggedObjectType(ObjectType):
|
class TaggedObjectType(ObjectType):
|
||||||
"""
|
"""
|
||||||
|
Reference in New Issue
Block a user