OBJECT
Link
Communication between two assets
link GraphQL Schema definition
- type Link {
- # Unique link id
- : ID!
- # Asset 1
- : ID!
- # Asset 2
- : 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.
- (: String, : Int, : String, : Int): ProtocolDetailsConnection!
- # Volume of traffic (in bytes)
- : Float!
- # Number of conversations
- : Float!
- # Time of first conversation
- : Time!
- # Time of last conversation
- : Time!
- }