Records not appearing in Retool table but Django query is retrieving all records alright

My records are not showing in the table despite being able to retrieve these in Django project.
db postgresql

in python shell, I tried the below and all records came back.

from orders.models import Subscription
subscriptions = Subscription.objects.all()
for subscription in subscriptions:
print(subscription)

I tried creating a record in Retool table directly and that showed alright, but anything coming from my Django project will not show.
please note that I am managing to read / write / update perfectly from Django and the only problem is that the any new records will not appear in my Retool table.

Can someone help me please.
Thank you,
Simon

Hi @jjsemaan, welcome to the forum! :wave:
Just to verify, are we talking about a table in your Retool Database, or a Table Component referencing data from an external db?