Coder Social home page Coder Social logo

Comments (4)

la4de avatar la4de commented on June 23, 2024 1

This should work now with code in features/class-api branch. Feel free to try.

from strawberry-django.

la4de avatar la4de commented on June 23, 2024

We are working on relation resolving as part of #20. Meanwhile you should get it working by

  • defining related name by using related_name parameter of django field
class User(models.Model):
    name = models.CharField(max_length=50)
    groups = models.ManyToManyField('Group', related_name='user')
  • or writing your own resolver for relationship
@strawberry_django.type(models.Group, types=types)
class Group:
    @strawberry_django.field
    def users(self) -> List[User]:
        return self.user_set.all()

from strawberry-django.

star2000 avatar star2000 commented on June 23, 2024

These models are come from django.contrib.auth.models and already defined related_name.

User model

    groups = models.ManyToManyField(
        Group,
        verbose_name=_('groups'),
        blank=True,
        help_text=_(
            'The groups this user belongs to. A user will get all permissions '
            'granted to each of their groups.'
        ),
        related_name="user_set",
        related_query_name="user",
    )

from strawberry-django.

la4de avatar la4de commented on June 23, 2024

These models are come from django.contrib.auth.models and already defined related_name.

I see, we cannot change that. Can you get it working by adding resolver to your code?

We need to fix that in coming releases so that related fields are resolved properly.

from strawberry-django.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.