FeedPost
FeedPost(id, title, slug, description, visibility, topics_v2, category, poll, creator, created_at, image, image_blurhash, link_preview, language_code, location, geolocation, geolocation_geojson, priority_duration, image_urls, aspect_ratio)
type FeedPost {
id: UUID!
title: String
slug: String!
description: String!
location: String
linkPreview: LinkPreview
image: String
imageBlurhash: String
visibility: VisibilityLevel!
topicsV2: [String!]
category: FeedPostCategory
creator: User
poll: Poll
imageUrls: [String]
aspectRatio: AspectRatio
createdAt: String!
mentions: [User]
reactions: ReactionCounts!
reactors(
offset: Int! = 0
limit: Int! = 10
): UserPaged!
myReaction: ReactionCounts!
totalComments: Int!
commenters(
offset: Int! = 0
limit: Int! = 10
): UserPaged!
language: String
geolocation: GeolocationPoint
images: [FeedPostImage]
}
Fields
FeedPost.id ● UUID! non-null scalar
FeedPost.title ● String scalar
FeedPost.slug ● String! non-null scalar
FeedPost.description ● String! non-null scalar
FeedPost.location ● String scalar
FeedPost.linkPreview ● LinkPreview object
FeedPost.image ● String scalar
FeedPost.imageBlurhash ● String scalar
FeedPost.visibility ● VisibilityLevel! non-null enum
FeedPost.topicsV2 ● [String!] list scalar
FeedPost.category ● FeedPostCategory object
FeedPost.creator ● User object
FeedPost.poll ● Poll object
FeedPost.imageUrls ● [String] list scalar
FeedPost.aspectRatio ● AspectRatio enum
FeedPost.createdAt ● String! non-null scalar
FeedPost.mentions ● [User] list object
FeedPost.reactions ● ReactionCounts! non-null object
FeedPost.reactors ● UserPaged! non-null object
FeedPost.reactors.offset ● Int! non-null scalar
FeedPost.reactors.limit ● Int! non-null scalar
FeedPost.myReaction ● ReactionCounts! non-null object
FeedPost.totalComments ● Int! non-null scalar
FeedPost.commenters ● UserPaged! non-null object
FeedPost.commenters.offset ● Int! non-null scalar
FeedPost.commenters.limit ● Int! non-null scalar
FeedPost.language ● String scalar
FeedPost.geolocation ● GeolocationPoint object
FeedPost.images ● [FeedPostImage] list object
Returned By
createFeedPost mutation ● post query ● updateFeedPost mutation ● updateFeedPostReaction mutation
Member Of
FeedItem object ● FeedPostPaged object
Implemented By
GenericPost union