-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with MorphTo Relation: Call to a member function resource() on null #145
Comments
The above is using morph maps to enforce, but if I use the model class I get a 200 return code, but the relation is empty. |
Hello, thanks for the feedback 😊 I'll add an unit test and come back to you in order to cover this |
It seems i'm able to reproduce this, i'm on it |
I added a test to avoid problems in the future and updated documentation https://laravel-rest-api.lomkit.com/resources/relationships#morph-to Please update and try on your side, don't need to update the package 😉 |
First of all, thank you so much for your prompt response and for the partial solution! The updated documentation and example have definitely helped resolve part of the issue I was facing. I truly appreciate the effort. 🙌 However, after implementing your solution with my current code, I’ve encountered a scenario that still raises some questions:
This works correctly for fetching data. However, when I attempt to apply filters or selections specific to the relationships (e.g., physicalPeople.surname for physicalPeople and moralPeople.name for moralPeople), I find that the current implementation doesn’t seem to handle these contextual differences between the relationships effectively. For example: physicalPeople should allow filtering or selecting attributes like surname, specific to physical relations. Thank you again for your time and willingness to assist. Any additional guidance would be greatly appreciated. 😊 |
I'm missing time by now unfortunately, did you find anything on this ? |
I'm closing this, please reopen this if this is still going |
Laravel Rest Api Version
2.8.7
Laravel Version
11.30
PHP Version
8.3
Database Driver & Version
No response
Description
I am encountering an issue with the implementation of polymorphic relations (MorphTo) in the library. Following the documentation's guidelines, I configured my model and resource as instructed, but the implementation fails with a 500 Internal Server Error.
Observed Behavior
The API fails with the following error:
Call to a member function resource() on null
Upon debugging with Laravel Telescope, I traced the error to this line:
$relationResource = $relationConcrete->resource();
It seems the $relationConcrete object is null when resolving the physicalPeople or moralPeople relations.
Expected Behavior
The MorphTo relations (physicalPeople and moralPeople) should resolve correctly and return the associated Resource class (PhysicalPeopleResource or MoralPeopleResource), depending on the personable_type in the model.
Additional Context
If necessary, I can provide further debugging logs or a minimal reproducible example. Please let me know how to proceed or if additional information is required.
Thank you for your help! 😊
As a note in the first versions of the library when it was allowed to declare the polymorphic relationship with an array of Resources it was perfectly functional.
Steps To Reproduce
3.Make an API request that tries to resolve one of the MorphTo relations.
The text was updated successfully, but these errors were encountered: