we are using below NQE Query to get the NTP Server details , i need to remove some static value in server coloum,
ciscontppattern=
```
ntp server {server:string}
```;
getServers(device) =
foreach match in blockMatches(device.files.config, ciscontppattern)
select { serverIP: match.data.server};
foreach device in network.devices
let platform = device.platform
where device.platform.vendor == Vendor.CISCO
select {
device: device.name,
vendor: device.platform.vendor,
tags: device.tagNames,
os: device.platform.os,
OSVersion :platform.osVersion,
servers: (foreach server in getServers(device)
select server.serverIP)
}
Example : i dont want to show entry those have server value - “Inte”