Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

214
Visualizações
findFirst does not working with 3 filters on Prisma

I'm having this problem when I want to check if I have at least one record with the parameters. With 2 filters it works fine, but with 3 it's not working.

await prismaClient.t_endereco
                .findFirst({
                    where: {
                        logradouro, (string)
                        bairro, (string)
                        numero, (number)
                    },
                })

the condition to update the record is not having another identical.

i tried to use AND too:

await prismaClient.t_endereco
                .findFirst({
                    where: {
                        AND:[
                              {logradouro}, 
                              {bairro}, 
                              {numero},  
                            ]
                        
                    },
                })

same issue.

someone to help me with this?

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

You can try the follow:

const { PrismaClient } = require('@prisma/client')
const prisma = new PrismaClient()

prisma.category.findFirst({
  where: {
    OR: [
      { id: 2 },
      { name: 'new' },
      { description: 'd1' },
    ],
  },
})
.then(data => {
  console.log(data)
})
.catch(error => {
  console.error(error)
})

You can check the documentation for more information

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda