BanStatus
BanStatus contains information about a ban for a given User.
type BanStatus {
active: Boolean!
sites: [Site!]
history: [BanStatusHistory!]!
}
Fields
BanStatus.active
● Boolean!
non-null scalar
active when true, indicates that the given user is banned.
BanStatus.sites
● [Site!]
list object
sites is a list of sites that the user has been site banned on.
BanStatus.history
● [BanStatusHistory!]!
non-null object
history is the list of all ban events against a specific User.
Member Of
UserStatus
object