2 weeks ago
I'm working on some queries to the NBI interface and having trouble filtering the endSystems returns. Here's my query:
query {
accessControl {
endSystems(maxResults: 25) {
endSystems {
firstSeenTime
lastSeenTime
ipAddress
macAddress
username
}
}
}
}
I would like this result to only return endSystems owned by a specific username. I doesn't appear that the filtering or any of the common arguments for GraphQL work.
2 weeks ago
Any ideas on how to gather all of the endSystems data?
2 weeks ago
Consider the use of the AXIS API:
2 weeks ago
Hello Wesley.
Our GraphQL / NBI implementation in XIQ-SE does not appear to support filtering. Whil you can limit (as you showed) the maxResults or only return firstResult, there is no built-in capability that I can find to auto sort this data or filter based on a selected criteria.
Whatever is consuming this result data would have to take the results and filter on it.