Skip to content
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

Having similar properties breaks @required_fields #65

Closed
2 tasks done
catgirlinspace opened this issue Feb 26, 2024 · 4 comments
Closed
2 tasks done

Having similar properties breaks @required_fields #65

catgirlinspace opened this issue Feb 26, 2024 · 4 comments
Labels
bug Something isn't working

Comments

@catgirlinspace
Copy link

I have read the docs thoroughly before making this bug report.

  • Yes

I have read through other open issues, and my issue is not a duplicate.

  • Yes

What version of the library you are using?

0.1.11

Which python version are you using?

3.12

What operating system are you on?

Mac

Description

Hi, I have a project I'm trying to use this library in, but found a bug where having similar properties on a model breaks @required_fields. Specifically, I have this in my GraphQL resolver thing:

@required_fields('nameplate_badge_1')
    def resolve_splashtag(parent, info):
        return parent.splashtag

(parent.splashtag uses nameplate_badge_1 and some other foreign keys, but for simplicity I'm only using nameplate_badge_1 here)

and my model has these fields

 name = models.CharField(max_length=50)
    name_id = models.CharField(max_length=10, blank=True, null=True)
    ...
    nameplate_background = models.ForeignKey('splatnet_assets.NameplateBackground', on_delete=models.PROTECT)
    nameplate_badge_1 = models.ForeignKey('splatnet_assets.NameplateBadge', on_delete=models.PROTECT, null=True,
                                          related_name='+')
    nameplate_badge_2 = models.ForeignKey('splatnet_assets.NameplateBadge', on_delete=models.PROTECT, null=True,
                                          related_name='+')
    nameplate_badge_3 = models.ForeignKey('splatnet_assets.NameplateBadge', on_delete=models.PROTECT, null=True,
                                          related_name='+')

It seems like the loop here breaks when the model_field is name because nameplate_badge_1 does start with name? I'm not sure how to resolve this really...

@catgirlinspace catgirlinspace added the bug Something isn't working label Feb 26, 2024
@MrThearMan
Copy link
Owner

Hi, can you include an error traceback as a comment? Having a bit more information on that would help me replicate the issue.

@catgirlinspace
Copy link
Author

Doesn't really seem to have a traceback :( I just get this from GraphQL

{
  "errors": [
    {
      "message": "No related model, but hint seems like has one: 'nameplate_badge_1'",
      "locations": [
        {
          "line": 5,
          "column": 9
        }
      ],
      "path": [
        "users",
        "edges",
        0,
        "node",
        "battles"
      ]
    }
  ],
  "data": {
    "users": {
      "edges": [
        {
          "node": null
        }
      ]
    }
  }
}

@MrThearMan
Copy link
Owner

Ok, this one is a silly one, the startswith check is meant to check if the field might be on a related entity (i.e. related__field), but it recognizes things like "name" as being relations. Easy fix, added to the main branch.

I'm currently working on #61 and #62 and will include those in the next release as well, so this will need to wait for that. Should get those one this week.

@MrThearMan MrThearMan added the waiting release Fix in main waiting waiting for release label Feb 27, 2024
@MrThearMan
Copy link
Owner

Released in 0.2.0

@MrThearMan MrThearMan removed the waiting release Fix in main waiting waiting for release label Feb 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants