OBJECT

NetworkInterface

link GraphQL Schema definition

  • type NetworkInterface {
  • # id
  • id: ID!
  • # Last seen time
  • lastSeen: Time
  • # First seen time
  • firstSeen: Time
  • # MAC address
  • mac: String
  • # IPs and their DNS names
  • #
  • # 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.
  • ips(after: String, first: Int, before: String, last: Int): IpDetailsConnection!
  • # DNS Names
  • #
  • # 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.
  • dnsNames(after: String, first: Int, before: String, last: Int): StringConnection!
  • # Family
  • family: String!
  • # Direct asset of network interface
  • directAsset: Asset
  • # Get IP trail of asset
  • #
  • # 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.
  • ipTrail(after: String, first: Int, before: String, last: Int): IpTrailConnection!
  • }