I have a relational model in adonis that I want to retrieve the data (Post belongs to Category). I've set up the relationship in both of migration and model,
But when I try to get the category name from the first Post with
const posts = await Post.first()
return posts?.category.name
it returns "cannot read data" even though I've seeded the database with the correct data