Creating New User Command Not Working

When I try to type this code block inside of GraphQL, it displays an error saying that the Email and Password arguments cannot be found. What is the command that I use instead?

By the way, I have a question, what’s the difference between creating a new user through GraphQL and creating a new user normally through the Enjin Website? Are they the same?

mutation createNewUser{ CreateEnjinUser ( name: “USERNAME”, email: “EMAIL”, password: “PASSWORD” ) { id name email access_tokens } } query viewIdentities{ EnjinIdentities ( pagination: { page: 1, limit: 50 } ) { id app { name } linking_code enj_allowance ethereum_address } }