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: ID!
  • # Information related to the user who created the post.
  • author: PostAuthor!
  • # The post content. Its value is lower than or equals to 1500 characters.
  • content: PostContent!
  • # Identifies the date and time when the post was created.
  • createdAt: DateTime!
  • # A short extract of the post content. The length is less than or equal to 240
  • # characters.
  • excerpt: String
  • # The URL of an image that represents the contents, mood, or theme of the post, if
  • # any.
  • featuredImage: String
  • # Returns _true_ if hidden comments are enabled for this post, _false_ otherwise.
  • hiddenComments: Boolean!
  • # Defines whether the post is visible in the project's Newspage and Widget.
  • isDraft: Boolean!
  • # A list of labels which specify the subjects of the post.
  • labels: [Label]!
  • # A unique URL that points to the post content.
  • permalink: String!
  • # Identifies the date and time when the object is published. The value can be in
  • # the future.
  • publicationTime: DateTime!
  • # Returns _true_ if emoji reactions are enabled for this post, _false_ otherwise.
  • reactions: Boolean!
  • # A list of segmentation filters, aka segments, used to target this post to
  • # specific users.
  • segments: [String]!
  • # A URL-friendly version of the post title.
  • slug: String!
  • # A descriptive or general heading of the post content. Its value is less than or
  • # equal to 80 characters.
  • title: String!
  • # Identifies the date and time when the post was updated for the last time.
  • updatedAt: DateTime!
  • }