OBJECT

LeanBackplane

Minimum Backplane representation for Tenable.ot IEM

link GraphQL Schema definition

  • type LeanBackplane {
  • # ID
  • id: ID!
  • # Backplane's name
  • name: String!
  • # Number of ports detected on backplane
  • size: Int!
  • # Assets contained in this backplane
  • #
  • # Arguments
  • # onlyMembers: Retrieve only non-cpu assets on this backplane
  • # 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.
  • assets(onlyMembers: Boolean, after: String, first: Int, before: String, last: Int): LeanAssetConnection!
  • }