Create Member
joinNetwork
mutation is used to create a member using email and password.
It takes JoinNetworkInput
as an input.
You need to provide email
, name
, and password
.
mutation {
joinNetwork(input: {
email: "[email protected]",
name: "user",
password: "*******"
}) {
accessToken
}
}
This will create a new member in your community. The user will receive an email to activate their account. After a successful activation they can log in to your community.