-
Notifications
You must be signed in to change notification settings - Fork 8
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
Comments
Hi, can you include an error traceback as a comment? Having a bit more information on that would help me replicate the issue. |
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
}
]
}
}
} |
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. 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. |
Released in 0.2.0 |
I have read the docs thoroughly before making this bug report.
I have read through other open issues, and my issue is not a duplicate.
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:(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
It seems like the loop here breaks when the
model_field
is name becausenameplate_badge_1
does start withname
? I'm not sure how to resolve this really...The text was updated successfully, but these errors were encountered: