我创建了一个模型,该模型具有一个字段,该字段采用ENUM
. 如何编写允许我一次添加多个值的突变?
例如,我有一个注册突变:
export const signUp = gql`
mutation signUp(
$email: String!,
$name: String!,
$password: String!,
$attended: [USER_ATTENDED!]!,
$role: [USER_ROLE!]!,
) {
createUser(
authProvider: {
email: {
email: $email,
password: $password,
},
},
name: $name,
attended: $attended,
role: $role,
) {
id,
createdAt,
name,
email,
}
}
`;
我希望$attended
并$role
接受多个值。