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
My generated code for the count method looks like:
pub fn count(self, _where: Vec<WhereParam>) -> Count<'a> { Count::new( self.client._new_query_context(), ::prisma_client_rust::QueryInfo::new("Candidate", _outputs()), vec![], ) }
Note the _where params isn't being passed on as the last argument, instead its just vec![]. This seems to be a bug unless I'm missing something.
_where
vec![]
The text was updated successfully, but these errors were encountered:
gonna keep this open for anyone else that encounters it before 0.6.3
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
My generated code for the count method looks like:
Note the
_where
params isn't being passed on as the last argument, instead its justvec![]
. This seems to be a bug unless I'm missing something.The text was updated successfully, but these errors were encountered: