I have a parent table A with related relation to B.
I want to find A class and retrieve only related from B by some contition like B.name = ‘only this relation’.
Unfortunately Retrieve will tetrieve all childs from B.
You need to select Relation column to table B. Then select Aggregation functions section Having field, and write there your where clause RelatedColumnName.ColumnNameInTableB=‘Conditions’
In my case it looks like this: https://monosnap.com/direct/064cY6eiku0sCW7RwLzF0oIGGgWZdK
I was trying to find from the TableB all objects which have “Test” in the column name.
Hello @Marina.Kan sounds like good idea unfortunatelly it does not work.
I have multiple itemas related in table B. When I use having field b.name='condition' it returns empty result. If I check Where clause only in B table is whows correct result.
The first point is not a problem,the system will find a relation even if the related column in table A has the same name as the column from the table B.
Please, correct me if I`m wrong. Do you want to retrieve objects from the table A which have some conditions from the table B, but without information which are stored in the table B?
Then, just write the where clause (in table A) RelationColumnInTableA.ColumnTableB=condition
If the variant offered with where clause not help or I miss understand you, I will continue searching the issue.