Alaskan donut
Alaskan donut
Explore posts from servers
PPrisma
Created by Alaskan donut on 12/6/2024 in #help-and-questions
Error P1012 when trying to use Prisma Postgres
It is not, but if you shoot me your github email I can share it with you. Currently I am using Neon until I can resolve this.
8 replies
PPrisma
Created by Alaskan donut on 12/9/2024 in #help-and-questions
TypedSQL failing during build step
TypeScript is "^5", prisma and prisma client are both "^6.0.1" The console appears to give no insight into this specific issue post-linting:
2024-12-09T19:55:10.610Z eslint:lint-result-cache Persisting cached results: C:\Users\jason\dev\masque\.next\cache\eslint\.cache_12rpit9
2024-12-09T19:55:10.620Z eslint:cli-engine Linting complete in: 82ms
Failed to compile.

./node_modules/.prisma/client/sql/getPostReactionsNoUser.d.ts:6:39
Type error: Type expected.

4 | * @param Post ID
5 | */
> 6 | export const getPostReactionsNoUser: (: string) => $runtime.TypedSql<getPostReactionsNoUser.Parameters, getPostReactionsNoUser.Result>
| ^
7 |
8 | export namespace getPostReactionsNoUser {
9 | export type Parameters = [string]
2024-12-09T19:55:10.610Z eslint:lint-result-cache Persisting cached results: C:\Users\jason\dev\masque\.next\cache\eslint\.cache_12rpit9
2024-12-09T19:55:10.620Z eslint:cli-engine Linting complete in: 82ms
Failed to compile.

./node_modules/.prisma/client/sql/getPostReactionsNoUser.d.ts:6:39
Type error: Type expected.

4 | * @param Post ID
5 | */
> 6 | export const getPostReactionsNoUser: (: string) => $runtime.TypedSql<getPostReactionsNoUser.Parameters, getPostReactionsNoUser.Result>
| ^
7 |
8 | export namespace getPostReactionsNoUser {
9 | export type Parameters = [string]
5 replies
PPrisma
Created by Alaskan donut on 12/6/2024 in #help-and-questions
Error P1012 when trying to use Prisma Postgres
Are there any resources on debugging this?
8 replies
PPrisma
Created by Alaskan donut on 12/6/2024 in #help-and-questions
Error P1012 when trying to use Prisma Postgres
generator client {
provider = "prisma-client-js"
previewFeatures = ["relationJoins", "typedSql", "omitApi"]
}

datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
generator client {
provider = "prisma-client-js"
previewFeatures = ["relationJoins", "typedSql", "omitApi"]
}

datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
8 replies
PPrisma
Created by Alaskan donut on 12/6/2024 in #help-and-questions
Error P1012 when trying to use Prisma Postgres
DATABASE_URL="prisma+postgres://accelerate.prisma-data.net/?api_key=..."

PULSE_API_KEY="..."
DATABASE_URL="prisma+postgres://accelerate.prisma-data.net/?api_key=..."

PULSE_API_KEY="..."
These are the two keys Prisma Postgres provides me during setup. I have no other keys that might conflict.
8 replies