Can I get updated documentation for the GraphQL API?
I’m getting the following error when running an example query from the documentation.
Error: {‘errors’: [{‘message’: “Validation error of type FieldUndefined: Field ‘agentVersion’ in type ‘Agent’ is undefined @ ‘organization/assets/edges/node/agent/agentVersion’”
If I remove ‘agentVersion’ and add another field such as ‘agentStatus’ it works. However, I am interested in the ‘agentVersion’.
query($orgId: String!) {
organization(id: $orgId) {
assets(first: 10000) {
edges {
node {
id
agent {
id
agentVersion
}
}
}
}
}
}
Thanks