1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

9856 cleanup

This commit is contained in:
Arthur
2024-03-13 14:50:41 -07:00
parent da0c23bc0c
commit 6090d41b34
5 changed files with 10 additions and 12 deletions

View File

@@ -16,11 +16,11 @@ __all__ = (
@strawberry_django.type(
models.WirelessLANGroup,
# fields='__all__',
exclude=('parent',), # bug - temp
fields='__all__',
filters=WirelessLANGroupFilter
)
class WirelessLANGroupType(OrganizationalObjectType):
parent: Annotated["WirelessLANGroupType", strawberry.lazy('wireless.graphql.types')] | None
@strawberry_django.field
def wireless_lans(self) -> List[Annotated["WirelessLANType", strawberry.lazy('wireless.graphql.types')]]: