Open
Description
Deployment Type
Self-hosted
NetBox Version
v4.3.3
Python Version
3.12
Steps to Reproduce
In Netbox 4.2.9 it was possible to run a query like this, which returns prefixes containing another prefix:
query listContainingPrefixes($prefix: String!) {
prefix_list(filters: {contains: $prefix}) {
id
prefix
}
ip_range_list(filters: {contains: $prefix}) {
id
start_address
end_address
}
}
This is no longer possible on Netbox 4.3, the contains
filter has been removed from the schema.
Expected Behavior
A graphql filter on the Prefix and IPRange models that allows querying for instances containing a certain prefix.
Observed Behavior
No filter attribute to query for instances containing a prefix