OBJECT

Project

link GraphQL Schema definition

  • type Project {
  • # Project unique id
  • id: LegacyId!
  • # Project url
  • url: String
  • # Project settings
  • settings: ProjectSettings
  • # Link settings
  • linkSettings: LinkSettings
  • # Offer settings
  • offerSettings: OfferSettings
  • # Answers assistance settings
  • answersAssistanceSettings: AnswersAssistanceSettings
  • # Notification settings
  • notificationSettings: NotificationSettings
  • # Mirroring settings
  • mirroringSettings: MirroringSettings
  • # Community settings
  • communitySettings: CommunitySettings
  • # Project identifier used in the desk stateboxes
  • deskIdentifier: String
  • # Project currency
  • currency: Currency
  • # Project name
  • name: String!
  • # Tags settings
  • tagSettings: ConversationTagSettings
  • # Get list of fonts available for notification and chatbox
  • #
  • # Arguments
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # first: Returns the first n elements from the list.
  • # last: Returns the last n elements from the list.
  • messengerFonts(before: String, after: String, first: Int, last: Int): MessengerFontConnection
  • }