OBJECT

NetworkArea

Network area for overlapping ips

link GraphQL Schema definition

  • type NetworkArea {
  • # The id of the network area
  • id: ID!
  • # The name of the network area
  • name: String!
  • # The networks of the network area
  • networks: [String!]
  • # If the network area supports querying assets
  • supportActive: Boolean!
  • # The description of the network area
  • description: String!
  • # Whether the network area was explicitly created by a user
  • managed: Boolean!
  • sensors: [SensorDetails!]
  • otAgents: [OtAgentDetails!]
  • sources: [Source!]
  • # Names of agents and sensors that have historically reported data to this area
  • reportedSources: [String!]
  • # Discovery queries the network area is used in
  • #
  • # Arguments
  • # after: Returns the items in the list that come after the
  • # specified cursor.
  • # first: Returns the first n items from the list.
  • # before: Returns the items in the list that come before the
  • # specified cursor.
  • # last: Returns the last n items from the list.
  • queries(after: String, first: Int, before: String, last: Int): ActiveQueryConnection!
  • # Nessus user scans the network area is used in
  • #
  • # Arguments
  • # after: Returns the items in the list that come after the
  • # specified cursor.
  • # first: Returns the first n items from the list.
  • # before: Returns the items in the list that come before the
  • # specified cursor.
  • # last: Returns the last n items from the list.
  • nessus(after: String, first: Int, before: String, last: Int): NessusUserScanConnection!
  • # Object usage information
  • usageInfo: UsageInfo!
  • }