Multi level "has Many" relation

System Information
  • Strapi Version: 3.4.6
  • Database: MySQL

I have 3 MySQL tables:
table_a, table_b, table_c
and their relations:
table_a has Many table_b
table_b has Many table_c
The problem I’m facing is when i use STRAPI GET API of /table_a I get data like:

{
  id: 1,
  table_b: [
    {
      id: 1
    }
  ]
}

but I’m expection data till table_c relation like:

{
  id: 1,
  table_b: [
    {
      id: 1,
      table_c: [
        {
          id: 1
        }
      ]
    }
  ]
}