OBJECT

GenericLabel

A label that can be attached to assets.
Available in Tableau Cloud March 2023 / Server 2023.1 and later.

link GraphQL Schema definition

  • type GenericLabel implements Label {
  • # Unique identifier used by the metadata API. Not the same as the numeric ID used
  • # on server
  • id: ID!
  • # User who last updated this label
  • author: TableauUser
  • # Name of the user who last updated this label
  • authorDisplayName: String
  • # Vizportal ID of this label, for use in client-to-server communications
  • vizportalId: String!
  • # Locally unique identifier used for the REST API on the Tableau Server
  • luid: String!
  • # True if the label is active
  • isActive: Boolean!
  • # True if the label is elevated
  • isElevated: Boolean!
  • # Value of the label
  • value: String!
  • # Category of the label
  • category: String!
  • # Message of the label
  • message: String
  • # Time the label was created
  • createdAt: DateTime!
  • # Time the label was last updated
  • updatedAt: DateTime!
  • # The asset that contains the label
  • asset: CanHaveLabels
  • }