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
Very excited at the prospect of this CLI. I am finding that the findMany function is not returning the model types from my schema.
findMany
In the example project I have changed findFirst to findMany: const sqliteRes = await sqlite.sqliteModel.findMany();
findFirst
const sqliteRes = await sqlite.sqliteModel.findMany();
The type for the variable thats returned then becomes: const sqliteRes: runtime.Types.Public.PrismaPromise<T>
const sqliteRes: runtime.Types.Public.PrismaPromise<T>
It looks like all other functions are working besides findMany.
The text was updated successfully, but these errors were encountered:
Realized I made this issue in the wrong repo. I have added it to the main repo here JoeRoddy/prismany#1
Sorry, something went wrong.
No branches or pull requests
Very excited at the prospect of this CLI. I am finding that the
findMany
function is not returning the model types from my schema.In the example project I have changed
findFirst
tofindMany
:const sqliteRes = await sqlite.sqliteModel.findMany();
The type for the variable thats returned then becomes:
const sqliteRes: runtime.Types.Public.PrismaPromise<T>
It looks like all other functions are working besides findMany.
The text was updated successfully, but these errors were encountered: