OBJECT

Link

Communication between two assets

link GraphQL Schema definition

  • type Link {
  • # Unique link id
  • id: ID!
  • # Asset 1
  • asset1: ID!
  • # Asset 2
  • asset2: ID!
  • # Protocols used
  • #
  • # 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.
  • protocols(after: String, first: Int, before: String, last: Int): ProtocolDetailsConnection!
  • # Volume of traffic (in bytes)
  • traffic: Float!
  • # Number of conversations
  • convCount: Float!
  • # Time of first conversation
  • firstConv: Time!
  • # Time of last conversation
  • lastConv: Time!
  • }