mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* 9856 base strawberry integration * 9856 user and group * 9856 user and circuits base * 9856 extras and mixins * 9856 fk * 9856 update strawberry version * 9856 update imports * 9856 compatability fixes * 9856 compatability fixes * 9856 update strawberry types * 9856 update strawberry types * 9856 core schema * 9856 dcim schema * 9856 extras schema * 9856 ipam and tenant schema * 9856 virtualization, vpn, wireless schema * 9856 fix old decorator * 9856 cleanup * 9856 cleanup * 9856 fixes to circuits type specifiers * 9856 fixes to circuits type specifiers * 9856 update types * 9856 GFK working * 9856 GFK working * 9856 _name * 9856 misc fixes * 9856 type updates * 9856 _name to types * 9856 update types * 9856 update types * 9856 update types * 9856 update types * 9856 update types * 9856 update types * 9856 update types * 9856 update types * 9856 update types * 9856 GraphQLView * 9856 GraphQLView * 9856 fix OrganizationalObjectType * 9856 single item query for schema * 9856 circuits graphql tests working * 9856 test fixes * 9856 test fixes * 9856 test fixes * 9856 test fix vpn * 9856 test fixes * 9856 test fixes * 9856 test fixes * 9856 circuits test sans DjangoModelType * 9856 core test sans DjangoModelType * 9856 temp checkin * 9856 fix extas FK * 9856 fix tenancy FK * 9856 fix virtualization FK * 9856 fix vpn FK * 9856 fix wireless FK * 9856 fix ipam FK * 9856 fix partial dcim FK * 9856 fix dcim FK * 9856 fix virtualization FK * 9856 fix tests / remove debug code * 9856 fix test imagefield * 9856 cleanup graphene * 9856 fix plugin schema * 9856 fix requirements * 9856 fix requirements * 9856 fix docs * 9856 fix docs * 9856 temp fix tests * 9856 first filterset * 9856 first filterset * 9856 fix tests * 9856 fix tests * 9856 working auto filter generation * 9856 filter types * 9856 filter types * 9856 filter types * 9856 fix graphiql test * 9856 fix counter fields and merge feature * 9856 temp fix tests * 9856 fix tests * 9856 fix tenancy, ipam filter definitions * 9856 cleanup * 9856 cleanup * 9856 cleanup * 9856 review changes * 9856 review changes * 9856 review changes * 9856 fix base-requirements * 9856 add wrapper to graphiql * 9856 remove old graphiql debug toolbar * 9856 review changes * 9856 update strawberry * 9856 remove superfluous check --------- Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
71 lines
2.6 KiB
Python
71 lines
2.6 KiB
Python
from typing import List
|
|
|
|
import strawberry
|
|
import strawberry_django
|
|
|
|
from extras import models
|
|
from .types import *
|
|
|
|
|
|
@strawberry.type
|
|
class ExtrasQuery:
|
|
@strawberry.field
|
|
def config_context(self, id: int) -> ConfigContextType:
|
|
return models.ConfigContext.objects.get(pk=id)
|
|
config_context_list: List[ConfigContextType] = strawberry_django.field()
|
|
|
|
@strawberry.field
|
|
def config_template(self, id: int) -> ConfigTemplateType:
|
|
return models.ConfigTemplate.objects.get(pk=id)
|
|
config_template_list: List[ConfigTemplateType] = strawberry_django.field()
|
|
|
|
@strawberry.field
|
|
def custom_field(self, id: int) -> CustomFieldType:
|
|
return models.CustomField.objects.get(pk=id)
|
|
custom_field_list: List[CustomFieldType] = strawberry_django.field()
|
|
|
|
@strawberry.field
|
|
def custom_field_choice_set(self, id: int) -> CustomFieldChoiceSetType:
|
|
return models.CustomFieldChoiceSet.objects.get(pk=id)
|
|
custom_field_choice_set_list: List[CustomFieldChoiceSetType] = strawberry_django.field()
|
|
|
|
@strawberry.field
|
|
def custom_link(self, id: int) -> CustomLinkType:
|
|
return models.CustomLink.objects.get(pk=id)
|
|
custom_link_list: List[CustomLinkType] = strawberry_django.field()
|
|
|
|
@strawberry.field
|
|
def export_template(self, id: int) -> ExportTemplateType:
|
|
return models.ExportTemplate.objects.get(pk=id)
|
|
export_template_list: List[ExportTemplateType] = strawberry_django.field()
|
|
|
|
@strawberry.field
|
|
def image_attachment(self, id: int) -> ImageAttachmentType:
|
|
return models.ImageAttachment.objects.get(pk=id)
|
|
image_attachment_list: List[ImageAttachmentType] = strawberry_django.field()
|
|
|
|
@strawberry.field
|
|
def saved_filter(self, id: int) -> SavedFilterType:
|
|
return models.SavedFilter.objects.get(pk=id)
|
|
saved_filter_list: List[SavedFilterType] = strawberry_django.field()
|
|
|
|
@strawberry.field
|
|
def journal_entry(self, id: int) -> JournalEntryType:
|
|
return models.JournalEntry.objects.get(pk=id)
|
|
journal_entry_list: List[JournalEntryType] = strawberry_django.field()
|
|
|
|
@strawberry.field
|
|
def tag(self, id: int) -> TagType:
|
|
return models.Tag.objects.get(pk=id)
|
|
tag_list: List[TagType] = strawberry_django.field()
|
|
|
|
@strawberry.field
|
|
def webhook(self, id: int) -> WebhookType:
|
|
return models.Webhook.objects.get(pk=id)
|
|
webhook_list: List[WebhookType] = strawberry_django.field()
|
|
|
|
@strawberry.field
|
|
def event_rule(self, id: int) -> EventRuleType:
|
|
return models.EventRule.objects.get(pk=id)
|
|
event_rule_list: List[EventRuleType] = strawberry_django.field()
|