Tag: wiki.js
-
Wikijs Graphql: How to create multiple users at a time?
0 I am trying to create multiple users at a time from a CSV file. Right now I am only able to create one user at a time using the following mutation: mutation { users { create ( email: "" name: "" passwordRaw:: "" providerKey: "" groups: [1] mustChangePassword: true sendWelcomeEmail: false ) { responseResult…