AccountUser
个人用户账户类型
type AccountUser implements Account {
name: String!
displayName: String!
type: AccountType!
expiredAt: DateTime
suspendedAt: DateTime
secure_digest: String
cid: String
email: String
phone: String
bio: String
company: String
challenges: AccountChallengeInfo
challengesUpdateTime: AccountChallengeUpdateTime
ownerOf: [Account!]
moderatorOf: [Account!]
memberOf: [Account!]
}
Fields
AccountUser.name ● String! non-null scalar
账户名称
AccountUser.displayName ● String! non-null scalar
账户显示名称
AccountUser.type ● AccountType! non-null enum
账户类型
AccountUser.expiredAt ● DateTime scalar
账户过期时间
AccountUser.suspendedAt ● DateTime scalar
账户冻结时间
AccountUser.secure_digest ● String scalar
安全摘要
AccountUser.cid ● String scalar
用户 CID
AccountUser.email ● String scalar
用户邮箱
AccountUser.phone ● String scalar
用户电话
AccountUser.bio ● String scalar
用户个人简介
AccountUser.company ● String scalar
用户所属公司
AccountUser.challenges ● AccountChallengeInfo object
获取用户验证质询注册信息
AccountUser.challengesUpdateTime ● AccountChallengeUpdateTime object
获取用户验证质询更新时间
AccountUser.ownerOf ● [Account!] list interface
获取用户作为拥有者的组织列表
AccountUser.moderatorOf ● [Account!] list interface
获取用户作为管理员的组织列表
AccountUser.memberOf ● [Account!] list interface
获取用户作为成员的组织列表
Interfaces
Account interface
账户接口
Member Of
AccountChallenge object ● AccountOrganization object ● AccountToken object