OBJECT
Post
A post depicts product updates (announcements, changes, fixes, etc.) that users must discover. DEPRECATED: use Publication instead. This type will be removed after May 21, 2023.
link GraphQL Schema definition
- type Post {
- ID! :
- # Information related to the user who created the post.
- PostAuthor! :
- # The post content. Its value is lower than or equals to 1500 characters.
- PostContent! :
- # Identifies the date and time when the post was created.
- DateTime! :
- # A short extract of the post content. The length is less than or equal to 240
- # characters.
- String :
- # The URL of an image that represents the contents, mood, or theme of the post, if
- # any.
- String :
- # Returns _true_ if hidden comments are enabled for this post, _false_ otherwise.
- Boolean! :
- # Defines whether the post is visible in the project's Newspage and Widget.
- Boolean! :
- # A list of labels which specify the subjects of the post.
- Label]! : [
- # A unique URL that points to the post content.
- String! :
- # Identifies the date and time when the object is published. The value can be in
- # the future.
- DateTime! :
- # Returns _true_ if emoji reactions are enabled for this post, _false_ otherwise.
- Boolean! :
- # A list of segmentation filters, aka segments, used to target this post to
- # specific users.
- String]! : [
- # A URL-friendly version of the post title.
- String! :
- # A descriptive or general heading of the post content. Its value is less than or
- # equal to 80 characters.
- String! :
- # Identifies the date and time when the post was updated for the last time.
- DateTime! :
- }
link Require by
- CreatePostPayload DEPRECATED: use CreatePublicationPayload instead. This type will be removed after May 21, 2023.
- DeletePostPayload DEPRECATED: use DeletePublicationPayload instead. This type will be removed after May 21, 2023.
- PostEdge A list of edges. DEPRECATED: use PublicationEdge instead. This type will be removed after May 21, 2023.
- QueryEvery GraphQL schema has a root type for both queries and mutations. The query type defines GraphQL operations that retrieve data from Noticeable servers. For more information, see "[About queries](http://graphql.org/learn/queries/)".
- UpdatePostPayload DEPRECATED: use UpdatePublicationPayload instead. This type will be removed after May 21, 2023.