Component
API Server / GraphQL
Task Description
This is how a mac address is displayed in Infrahub:
Everyone would expect a : separated address:
Seems like this is coming from the backend:
{
"node": {
"address": {
"semicolon_notation": "1:23:45:67:89:ab",
"dot_notation": "0123.4567.89ab",
"value": "01-23-45-67-89-AB",
"version": 48,
"is_default": false,
"eui48": "01-23-45-67-89-AB",
"eui64": "01-23-45-FF-FE-67-89-AB",
"bare": "0123456789AB",
"split_notation": "012345:6789ab",
"oui": "01-23-45",
"ei": "67-89-AB",
"__typename": "MacAddress"
}
}
}
Component
API Server / GraphQL
Task Description
This is how a mac address is displayed in Infrahub:
Everyone would expect a
:separated address:Seems like this is coming from the backend:
{ "node": { "address": { "semicolon_notation": "1:23:45:67:89:ab", "dot_notation": "0123.4567.89ab", "value": "01-23-45-67-89-AB", "version": 48, "is_default": false, "eui48": "01-23-45-67-89-AB", "eui64": "01-23-45-FF-FE-67-89-AB", "bare": "0123456789AB", "split_notation": "012345:6789ab", "oui": "01-23-45", "ei": "67-89-AB", "__typename": "MacAddress" } } }