Hi there,
Thanks a lot for you answer! Although it did not exactly answer my question it taught me a LOT about DBIC that I did not know yet. Thanks for that!
What I was actually looking for was fetching all many_to_many related objects without exactly knowing the names of the relations.
I have solved it by doing:
my @related_models;
# fetch relations from model. By doing it this way when new many_t
+o_many relations are created, the controller automatically picks them
+ up
my @relations = $self->schema->source('Document')->relationships()
+;
foreach (@relations) {
if ($_ =~ m/(^.*)_documents$/) {
push @related_models, $1;
}
}
foreach (@related_models) {
my ($relObj) = $object->$_(); #Assume only one object refe
+rs to this one (business logic)
if ($relObj) {
$row{relatedObject} = $relObj->name();
$row{relatedObjectId} = $relObj->id();
$row{relatedObjectType} = $relObj->_source_handle->sou
+rce_moniker; # Why is getting the source Name so difficult?
}
}
push @data, \%row;
}
Again thanks for the very informative reply!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.