Announcement
Announcement is an organization-wide announcement displayed above the stream for a set duration
type Announcement {
  id: ID!
  content: String!
  createdAt: Time!
  disableAt: Time!
  duration: Int!
}
Fields
Announcement.id ● ID! non-null scalar
id is a canonical identifier for this Announcement, used to dismiss on front-end.
Announcement.content ● String! non-null scalar
content is the content displayed for the announcement.
Announcement.createdAt ● Time! non-null scalar
createdAt is the creation date.
Announcement.disableAt ● Time! non-null scalar
disableAt is the computed date at which announcement will be invalid.
Announcement.duration ● Int! non-null scalar
duration determines how long the announcement will be valid for.
Member Of
Settings  object