language-tools icon indicating copy to clipboard operation
language-tools copied to clipboard

🌐 Prisma Language Tools = Language Server and Prisma's VS Code extension.

Results 217 language-tools issues
Sort by recently updated
recently updated
newest added

When I save this schema: ```prisma model User { id Int @id } model Post { id Int @id authorId Int author User @relation(fields: [authorId], references: [id]) } ``` it...

kind/feature
topic: formatting
topic: prisma-fmt
domain/schema

We should have quick fixes for - `executeRaw(sql, params)` and `queryRaw(sql, params)` - or - executeRaw`sql` - and - queryRaw`sql` - for `queryRaw(sql)` and `executeRaw(sql)`. This is only possible if...

kind/feature
domain/schema
topic: prisma client
topic: TS integration

Floating comments are removed when you introspect: ``` model User { // I float! } ``` Would be good to have a warning in VS Code so that users aren't...

kind/improvement
topic: comments
team/schema

See https://github.com/prisma/prisma/issues/10173 Solution in VSCode: Nice color squiggly lines (yellow maybe?) as "info" for a line (on `@relation` in the model) and then a quick fix to add the `@index`...

kind/feature
topic: validation
team/schema
topic: quick fix
topic: referentialIntegrity/relationMode

https://marketplace.visualstudio.com/items?itemName=Prisma.prisma and https://marketplace.visualstudio.com/items?itemName=Prisma.prisma-insider have the same icon right now. It would be nice if the unstable one (currently "Prisma Dev") would have a different icon.

kind/feature
topic: automation
team/schema
topic: internal

## Problem When prototyping, and I update a column name (e.g. "foo" -> "bar"), I want VSCode to pop up and say "Hey! Do you want me to auto-update occurrences...

kind/feature
domain/schema
topic: rename
topic: prisma client
topic: TS integration

It could be nice to add some commands like - Open Studio - Generate? - ... So a user could call some CLI commands from VS Code command palette https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette...

kind/feature
topic: vscode
team/schema

Extracted from https://github.com/prisma/language-tools/issues/16

kind/feature
topic: language server
domain/schema
topic: referentialActions
topic: relation

Extracted from https://github.com/prisma/language-tools/issues/16

kind/feature
domain/schema
topic: quick fix
topic: relation

Currently, there is a limitation in Prisma client *raw functions that they can only run one query at a time https://github.com/prisma/prisma/issues/2868. Currently, this fails at runtime. Prisma VSCode extension can...

kind/feature
domain/schema
topic: prisma client
topic: TS integration