I'm trying to create a use with a known auth0useri...
# prisma-whats-new
q
I'm trying to create a use with a known auth0userid:
Copy code
mutation {
  createUser(
    email: "..."
    auth0UserId: "..."
    appMeta: {
    ...
    }
  ) {
    id
    appMeta {
      id
    }
  }
}
but that doesn't work: graphcool complains it doesn't know
auth0UserId
. But that field does exist (enabled auth0 integration).