Jan Piotrowski

Results 796 issues of Jan Piotrowski

![image](https://user-images.githubusercontent.com/183673/114284282-11ffc200-9a4f-11eb-8379-177155389a24.png) Observed in preview `21.0.15` (which corresponds to our CLI 2.21.0-dev.21).

bug/2-confirmed
kind/bug
topic: autocompletion
team/schema

For reproduction: ```prisma generator client { provider = "prisma-client-js" previewFeatures = "mongoDb" } datasource pg { provider = "mongodb" url = env("TEST_DB_URL") } model with_id_and_compound_unique { id Int @id @map("_id")...

bug/2-confirmed
kind/bug
topic: autocompletion
team/schema

bug/2-confirmed
kind/bug
topic: autocompletion
domain/schema
topic: spans

This is the schema: ``` generator client { provider = "prisma-client-js" previewFeatures = ["extendedIndexes", "fullTextIndex"] } datasource db { provider = "mysql" url = "..." } model index_5e404df0a4aa1 { id...

bug/2-confirmed
kind/bug
domain/schema
topic: syntax highlighting

![image](https://user-images.githubusercontent.com/183673/114462199-034a1400-9be3-11eb-8d54-60bca175537c.png)

kind/feature
team/schema
topic: quick fix
topic: mongodb

Currently creating a relation from just the relation scalar (foreign key) field is pretty meh. Could be: Click + Type (for target model) + optional references + then cursor on...

kind/feature
team/schema
topic: code action

https://code.visualstudio.com/docs/getstarted/userinterface#_outline-view ![image](https://user-images.githubusercontent.com/183673/149640160-53c7efd9-6646-4914-9269-2e1f8f4fb0fb.png) Could list the top level blocks like `generator`, `datasource`, `model` and so on with their names. Possibly implementable via this: https://stackoverflow.com/a/59132169

kind/feature
team/schema

![image](https://user-images.githubusercontent.com/183673/151275248-20fedc3d-f62b-4e2c-9082-69f56763f529.png) The missing bits in the schema could (partially) shown in a similar way to this.

kind/feature
team/schema

When you modify your schema, you also need to `prisma generate` so that your Prisma Client still works with your database. This tends to be forgotten quite often, so an...

kind/feature
topic: ui
team/schema
topic: prisma client

- How to use local Language Tools build in local VSCode extension? - How to use a local `prisma-fmt` Wasm module? - ...

kind/tech
team/schema
topic: internal