В вашем контроллере, сервисе или чем-то еще просто сделайте что-то вроде этого
$fuel_type = array("petrol", "diesel", "gasoline");
$result = $em->getRepository('App\Entity\Name')->findBy(['fuel_type'=> $fuel_type]);
Или прямо в репозитории
$fuel_type = array("petrol", "diesel", "gasoline");
return $this->createQueryBuilder('c')
->where('c.fuelType IN (:val)')
->setParameter('val', $fuel_type )
->getQuery()
->getResult();