From 725991cc70e9799a8d3a049a6d45f92626d4ea47 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 16 Jan 2026 14:07:38 -0500 Subject: [PATCH] tunnel_id should also use BigIntegerLookup --- netbox/vpn/graphql/filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/vpn/graphql/filters.py b/netbox/vpn/graphql/filters.py index 3a4274a40..f1cd54149 100644 --- a/netbox/vpn/graphql/filters.py +++ b/netbox/vpn/graphql/filters.py @@ -75,7 +75,7 @@ class TunnelFilter(TenancyFilterMixin, PrimaryModelFilter): ipsec_profile: Annotated['IPSecProfileFilter', strawberry.lazy('vpn.graphql.filters')] | None = ( strawberry_django.filter_field() ) - tunnel_id: Annotated['IntegerLookup', strawberry.lazy('netbox.graphql.filter_lookups')] | None = ( + tunnel_id: Annotated['BigIntegerLookup', strawberry.lazy('netbox.graphql.filter_lookups')] | None = ( strawberry_django.filter_field() ) terminations: Annotated['TunnelTerminationFilter', strawberry.lazy('vpn.graphql.filters')] | None = (