SuspensionStatus
SuspensionStatus stores the user suspension status as well as the history of changes.
type SuspensionStatus {
active: Boolean!
until: Time
history: [SuspensionStatusHistory!]!
}
Fields
SuspensionStatus.active ● Boolean! non-null scalar
active when true, indicates that the given user is suspended.
SuspensionStatus.until ● Time scalar
until is the time that the current user suspension is over.
SuspensionStatus.history ● [SuspensionStatusHistory!]! non-null object
history is the list of all suspension events against a specific User.
Member Of
UserStatus object