Tag
A custom tag that can be applied on a user
Fields
active_users_count
· Int · The number of active users who have the tag archived_users_count
· Int · The number of archived users who have the tag org_members_count
· Int · The number of org members who have the tag patients_tagged_count
· Int · The number of patients this tag is applied to providers_tagged_count
· Int · The number of providers this tag is applied to tagged_users
· UserConnection · The array of tagged users Used By
Definition
"""A custom tag that can be applied on a user"""type Tag { """ The number of active users who have the tag """ active_users_count: Int
""" The name of the user who created the tag """ added_by: String
""" The number of archived users who have the tag """ archived_users_count: Int
""" The time when the tag was created """ created_at: ISO8601DateTime!
""" The unique identifier of the tag """ id: ID!
""" A human-readable name of the tag """ name: String!
""" The number of org members who have the tag """ org_members_count: Int
""" The number of patients this tag is applied to """ patients_tagged_count: Int
""" The number of providers this tag is applied to """ providers_tagged_count: Int
""" The array of tagged users """ tagged_users( """ Returns the elements in the list that come after the specified cursor. """ after: String
""" Returns the elements in the list that come before the specified cursor. """ before: String
""" Returns the first _n_ elements from the list. """ first: Int
""" Returns the last _n_ elements from the list. """ last: Int ): UserConnection
""" The last time the tag was updated """ updated_at: ISO8601DateTime!
""" The user who created the tag """ user: User}