Skip to content

AppliedTag

A tag applied to a user

Fields

created_at · String! · required · The time the tag was applied
id · ID! · required · The unique identifier of the applied tag
tag · Tag · The tag applied
tag_id · String · The unique identifier of the tag
updated_at · String! · required · The time the applied tag was last updated
user · User · The tagged user
user_id · String · The ID of the tagged user

Used By

Definition

"""
A tag applied to a user
"""
type AppliedTag {
"""
The time the tag was applied
"""
created_at: String!
"""
The unique identifier of the applied tag
"""
id: ID!
"""
The tag applied
"""
tag: Tag
"""
The unique identifier of the tag
"""
tag_id: String
"""
The time the applied tag was last updated
"""
updated_at: String!
"""
The tagged user
"""
user: User
"""
The ID of the tagged user
"""
user_id: String
}