| Hi Maheswaran Shanmugam, you will need to add node_state = "inactive" to your query because deactivated is not null will not work on its own on nodes endpoint because by default the endpoint only includes active nodes. We likely need to improve our docs because it is difficult to find the proper query for deactivated nodes so I've included a few examples here. So the full query for all deactivated and expired nodes, would look like {{nodes[certname] { node_state = "inactive"} }} If you only want the deactivated nodes it'd look like nodes[certname] { node_state = "inactive" and deactivated is not null} Let me know if this fixes your issue. |