'Sequelize returning null values from database (API problem)

I seem to have a problem with Sequelize . The thing is i have set an SQL database , when i try to reach it via sequelize (node) it just returns nulled values


[
    {
        "id": null
    },
    {
        "id": null
    },
    {
        "id": null
    },
    {
        "id": null
    },
    {
        "id": null
    },
    {
        "id": null
    },
    {
        "id": null
    },
    {
        "id": null
    },
    {
        "id": null
    },
    {
        "id": null
    },
    {
        "id": null
    }
]

This is my service, When i create an object inside the findUsers function and return as if it is real data , it just works


const User = require('../models/User');


const addUser = async (user) => {
  try {

    await User.create(user)
  } catch (e) {
    console.log(e);
  }
}

const findUsers = async () => {
  try {
    //return await User.findAll({});
    const u =   User.findAll();
    /*u = {
      nom : "lozo",
    }*/
    return u;
  } catch (e) {
        console.log(e)
  }
}
module.exports = {addUser,findUsers}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source