OBJECT

Tag

A custom tag that can be applied on a user

link GraphQL Schema definition

  • type Tag {
  • # The number of active users who have the tag
  • active_users_count: Int
  • # User who create the tag
  • added_by: String
  • # The number of archived users who have the tag
  • archived_users_count: Int
  • created_at: String
  • id: ID
  • name: String
  • # The number of org members who have the tag
  • org_members_count: Int
  • # Array of patients who have been tagged
  • #
  • # Arguments
  • # offset: [Not documented]
  • # should_paginate: [Not documented]
  • tagged_users(offset: Int, should_paginate: Boolean): [User]
  • updated_at: String
  • # A provider who created a tag
  • user: User
  • }