数据-用户分组功能接口
群组业务接口
原platform
版本中的群组功能在现platform-next
版本中尚无接口。(字段名待商榷)
type User {
joinedGroups: UserJoinedGroupConnection
}
type UserJoinedGroupConnection {
nodes: [Group]
edges: [UserJoinedGroupEdge]
pageInfo: PageInfo
totalCount: Int
}
type UserJoinedGroupEdge {
node: Group
cursor: String
}
type Group {
id: String
name: String
shortDesc: String
description: String
content: String
requiredFields: [String]
members: GroupMemberConnection
public: Boolean
visible: Boolean
createdAt: DateTime
updatedAt: DateTime
owner: User
}
type GroupMemberConnection {
nodes: [User]
edges: [GroupMemberEdge]
pageInfo: PageInfo
totalCount: Int
}
type GroupMemberEdge {
node: User
cursor: String
}