GraphQL OBJECT

TextResource

Reusable, localizable text resource.

link Definition

  • type TextResource {
  • # Unique ID of the text resource.
  • id: Int!
  • # Client account that is assigned to the text resource, if any.
  • client: Client
  • # Configuration that is assigned to the text resource, if any.
  • configuration: Configuration
  • # Date and time when the text resource was created.
  • creationDate: DateTime
  • # User who created the text resource.
  • createdBy: UserAccount!
  • # Context of text resource.
  • context: TextResourceContext
  • # Internal name of the text resource.
  • name: String
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime
  • # User who last edited the text resource.
  • lastModifiedBy: UserAccount!
  • # Text of the resource in one or more languages.
  • #
  • # Arguments
  • # languageIds: Filter for specific languages
  • # defaultIfEmpty: Return text for default language when filtered
  • # language is not defined.
  • texts(languageIds: [LanguageEnum], defaultIfEmpty: Boolean): [LocalizedString]
  • }