Closed
Description
Deployment Type
Self-hosted
Triage priority
N/A
NetBox Version
v4.2.0
Python Version
3.12
Steps to Reproduce
- Create multiple Devices and assign different IPs to this devices.
- Mark these IPs as primary for the device.
- Run this GraphQL query:
{
device_list {
primary_ip4 {
id
display
}
}
}
Expected Behavior
A list with all primary IPs should be displayed
Observed Behavior
Only the first primary IP is displayed. All other IPs are NULL.
Example:
IPs:
- 192.168.1.1
- 192.168.1.2
- 192.168.1.3
Only 192.168.1.1 is displayed, when you unmark this IP, 192.168.1.2 is displayed when running the query.