We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
when trying to build a model, I am getting the error:
TypeError: Registry.register_object_field() got an unexpected keyword argument 'model'
checked the method and it does not have "model" as argument... so the error seems to be correct. The call of the method not. Any advice?
here is a minimalistic example:
´´´ class A(pydantic.BaseModel): x: str | None = None y: list["A"] | None = None
class P_A(PydanticInputObjectType): class Meta: model = A
P_A.resolve_placeholders() ´´´
The text was updated successfully, but these errors were encountered:
I think it is the same as here: #104
Sorry, something went wrong.
i answered here in #104
No branches or pull requests
when trying to build a model, I am getting the error:
TypeError: Registry.register_object_field() got an unexpected keyword argument 'model'
checked the method and it does not have "model" as argument... so the error seems to be correct. The call of the method not.
Any advice?
here is a minimalistic example:
´´´
class A(pydantic.BaseModel):
x: str | None = None
y: list["A"] | None = None
class P_A(PydanticInputObjectType):
class Meta:
model = A
P_A.resolve_placeholders()
´´´
The text was updated successfully, but these errors were encountered: