BanStatusHistory
BanStatusHistory is the list of all ban events against a specific User.
type BanStatusHistory {
active: Boolean!
createdBy: User
createdAt: Time!
message: String
sites: [Site!]
}
Fields
BanStatusHistory.active
● Boolean!
non-null scalar
active when true, indicates that the given user is banned.
BanStatusHistory.createdBy
● User
object
createdBy is the User that suspended the User. If null
, then the given
User was banned by the system.
BanStatusHistory.createdAt
● Time!
non-null scalar
createdAt is the time that the given User was banned.
BanStatusHistory.message
● String
scalar
message is sent to banned user via email. If null
, then no email was sent
(i.e. in the case of a system ban of a new user account).
BanStatusHistory.sites
● [Site!]
list object
sites are set when the ban was created to perform a site specific ban.
Member Of
BanStatus
object