Represents edges to parent comments in a graph-based structure. This interface provides information about the comments on a media item, including their count, pagination details, and individual comment edges.

interface EdgeMediaToParentComment {
    count: number;
    edges: any[];
    page_info: PageInfo;
}

Properties

Properties

count: number

The total count of parent comments on the media item. This property represents the number of top-level comments.

edges: any[]

An array containing the edges of parent comments. Each edge represents a connection to a comment node or object.

page_info: PageInfo

Pagination information for the parent comments. This includes details on whether more comments are available and the cursor for fetching them.