OBJECT

UserPref

link GraphQL Schema definition

  • type UserPref {
  • # Time this pref was created. Note: Expressed in UTC ISO-8601 timestamp
  • creationTime: DateTime!
  • # Optional entity to which this userPref is associated
  • entity: Entity
  • # Last time this pref was updated. Note: Expressed in UTC ISO-8601 timestamp
  • lastUpdateTime: DateTime!
  • # name of this user-pref in the context of the user and entityId
  • name: String!
  • # user owning this preference
  • user: User!
  • # Max size for value in UTF-8 is 32Kb. May contain a JSON-serialized String
  • value: String
  • }