Hi all, I am trying to do this: ```mutation Create...
# orm-help
e
Hi all, I am trying to do this:
Copy code
mutation CreateLocal {
  createLocalUser(
    data: {
      email: "<mailto:example@mail.com|example@mail.com>"
      password: "Welcome1"
      user: { create: { firstName: "John", permissions: { set: USER } } }
    }
  ) {
    id
  }
}