Member Junction
    Preparing search index...

    The /{post-id}?fields=reactions.summary(true),comments.summary(true),shares shape used to read a post's engagement counters in one call.

    interface FacebookPostEngagement {
        comments?: { summary?: { total_count?: number } };
        likes?: { summary?: { total_count?: number } };
        reactions?: { summary?: { total_count?: number } };
        shares?: { count?: number };
    }
    Index

    Properties

    comments?: { summary?: { total_count?: number } }
    likes?: { summary?: { total_count?: number } }
    reactions?: { summary?: { total_count?: number } }
    shares?: { count?: number }