OBJECT

Publication

A publication depicts product updates (announcements, changes, fixes, etc.) that users must discover.

link GraphQL Schema definition

  • type Publication {
  • id: ID!
  • # Information related to the user who created the publication.
  • author: PublicationAuthor!
  • # Publication comments related to this publication
  • #
  • # Arguments
  • # after: Returns the publication comments that come after the
  • # specified cursor.
  • # before: Returns the publication comments that come before the
  • # specified cursor.
  • # first: Returns the first _n_ publication comments.
  • # last: Returns the last _n_ publication comments.
  • comments(after: String, before: String, first: Int, last: Int): PublicationCommentConnection
  • # The publication content. Its value is lower than or equals to 1500 characters.
  • content: PublicationContent!
  • # Identifies the date and time when the publication was created.
  • createdAt: DateTime!
  • # A short extract of the publication 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
  • # publication, if any.
  • featuredImage: String
  • # Returns _true_ if hidden comments are enabled for this publication, _false_
  • # otherwise.
  • hiddenComments: Boolean!
  • # Defines whether the publication is archived in the Noticeable dashboard.
  • isArchived: Boolean
  • # Defines whether the publication is visible in the project's Newspage and Widget.
  • isDraft: Boolean!
  • # A list of labels which specify the subjects of the publication.
  • labels: [Label]!
  • # A unique URL that points to the publication content.
  • permalink: String!
  • # Identifies the date and time when the object is published. The value can be in
  • # the future.
  • publishedAt: DateTime!
  • # Returns _true_ if emoji reactions are enabled for this publication, _false_
  • # otherwise.
  • reactions: Boolean!
  • # A list of segmentation filters, aka segments, used to target this publication to
  • # specific users.
  • segments: [String]!
  • # A URL-friendly version of the publication title.
  • slug: String!
  • # A descriptive or general heading of the publication content. Its value is less
  • # than or equal to 80 characters.
  • title: String!
  • # Identifies the date and time when the publication was updated for the last time.
  • updatedAt: DateTime!
  • }