OBJECT

EndorsedChannelEdge

Element in a list of endorsed channels.

link GraphQL Schema definition

1type EndorsedChannelEdge {
2
3# Cursor identifying the position of this edge for future queries.
4cursor: Cursor!
5
6# The information about the endorsed channel.
7node: Channel!
8
9# Unique id per channel item, used by the client to attribute display/clicks of
10# items.
11trackingID: ID!
12
13}