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
Currently the session.query returns Query[Any] in all cases.
session.query
Query[Any]
Some overloads could probably be added:
def query(self, model: T, ...) -> Query[T]: ... def query(self, model: Union[TypeEngins, Type[TypeEngine]], ...) -> Query[Any]: ... def query(self, model: T, model2: T2) -> Query[Tuple[T, T2]] # not sure it's actually correct def query(self, thing: TableClause)->Query[tuple]
I'm not sure if these above are possible with python, or 100% correct
The text was updated successfully, but these errors were encountered:
duplicate of #10
Sorry, something went wrong.
No branches or pull requests
Currently the
session.query
returnsQuery[Any]
in all cases.Some overloads could probably be added:
I'm not sure if these above are possible with python, or 100% correct
The text was updated successfully, but these errors were encountered: