Results 3 issues of dc-p8

## I'm submitting a... [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report [ ] Performance issue [x] Feature...

- Python version: 3.12.2 - Django version: 4.2.0 - Django-Ninja version: 1.1.0 - Pydantic version: 2.5.3 this code ```python class Author(models.Model): name =models.CharField(max_length=255) class Book(models.Model): name=models.CharField(max_length=255) author = models.ForeignKey(Author, on_delete=models.CASCADE,...

If anyone is interested of searching a certain model, here is how I've done it. django_spaghetti/plate.html ```htlm {% block extra_scripts %} function searchNode(inputVal) { var s = nodes.get({ filter: function...