anyone know why I can't do this when name contains...
# orm-help
a
anyone know why I can't do this when name contains spaces:
Copy code
return prisma.users({
        where: {
          OR: [{ name_contains: name }, { email_contains: email }],
        },
        orderBy: "name_ASC",
        first,
      });
seems to work with MySQL but not with PostgreSQL