OBJECT
Publication
A publication depicts product updates (announcements, changes, fixes, etc.) that users must discover.
link GraphQL Schema definition
- type Publication {
- ID! :
- # Information related to the user who created the publication.
- 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.
- String, : String, : Int, : Int): PublicationCommentConnection ( :
- # The publication content. Its value is lower than or equals to 1500 characters.
- PublicationContent! :
- # Identifies the date and time when the publication was created.
- DateTime! :
- # A short extract of the publication 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
- # publication, if any.
- String :
- # Returns _true_ if hidden comments are enabled for this publication, _false_
- # otherwise.
- Boolean! :
- # Defines whether the publication is archived in the Noticeable dashboard.
- Boolean :
- # Defines whether the publication is visible in the project's Newspage and Widget.
- Boolean! :
- # A list of labels which specify the subjects of the publication.
- Label]! : [
- # A unique URL that points to the publication 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 publication, _false_
- # otherwise.
- Boolean! :
- # A list of segmentation filters, aka segments, used to target this publication to
- # specific users.
- String]! : [
- # A URL-friendly version of the publication title.
- String! :
- # A descriptive or general heading of the publication content. Its value is less
- # than or equal to 80 characters.
- String! :
- # Identifies the date and time when the publication was updated for the last time.
- DateTime! :
- }
link Require by
- CreatePublicationPayloadnull
- DeletePublicationPayloadnull
- PublicationEdge A list of edges.
- 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/)".
- UpdatePublicationPayloadnull