pgAdmin 4 view associated objects

0
I’m recovering some lost records from backups and have some records that are made up from two entities linked together 1*1. Is it possible to view assocations/relationships in pgadmin?
asked
1 answers
1

It’s possible to see the associations in Pgadmin.
Mendix stores associations as their own ‘table’ in a postgresql database.

So lets say you have Entity1 and Entity2 associated with eachother, there will be an ModuleName$Entity1_Entity2 table visible in your pgadmin which stores the MendixID’s of both objects.

answered