Hello,
I have a relation in my Content Type Definition. And I am trying to retrieve that relation using the following code
AttributedObject[] relatedProducts = ci.getRelations( "RELATION-ID" );
But I am getting the null value.
I also checked whether there are any relations available with
Arrays.toString(ci.getAttributeNames());
But that also returns an empty array.
Do I need to make any change in my CTD, so that the relation starts to appear to the API?