intellij-prisma icon indicating copy to clipboard operation
intellij-prisma copied to clipboard

Prisma Schema Language support for WebStorm, GoLand, and other IDEs based on IntelliJ Platform.

Results 12 intellij-prisma issues
Sort by recently updated
recently updated
newest added

``` java.lang.RuntimeException: java.util.concurrent.ExecutionException: com.intellij.diagnostic.PluginException: org.intellij.sdk.language.PrismaParserDefinition PluginClassLoader(plugin=PluginDescriptor(name=Prisma, id=fr.gabrielcolson.prisma.prisma-intellij-plugin, descriptorPath=plugin.xml, path=~/Library/Application Support/JetBrains/WebStorm2022.2/plugins/intellij-prisma, version=1.2.5, package=null, isBundled=false), packagePrefix=null, instanceId=132, state=active) at com.intellij.util.ExceptionUtil.rethrow(ExceptionUtil.java:132) at com.intellij.openapi.progress.util.ProgressIndicatorUtils.awaitWithCheckCanceled(ProgressIndicatorUtils.java:376) at com.intellij.openapi.progress.util.ProgressIndicatorUtils.awaitWithCheckCanceled(ProgressIndicatorUtils.java:354) at com.intellij.psi.stubs.StubIndexImpl.getAsyncState(StubIndexImpl.java:74) at com.intellij.psi.stubs.StubIndexImpl.getIndex(StubIndexImpl.java:186) at com.intellij.psi.stubs.StubIndexEx.getContainingIds(StubIndexEx.java:349) at com.intellij.psi.stubs.StubIndexEx.processElements(StubIndexEx.java:157)...

I'm using a compositive `type` for MongoDB but it is marked as an error: ![image](https://user-images.githubusercontent.com/2329117/174318776-9194abb0-af9d-499d-b362-ae50c62cbb9b.png) `prisma generate` works correctly, realized this was an issue with the plugin. See https://www.prisma.io/docs/concepts/components/prisma-schema/data-model#defining-composite-types

According to the Prisma docs, `@@map` should be supported in enum blocks in order to map the client's enum naming to the database's naming (Source: https://www.prisma.io/docs/concepts/components/prisma-schema/data-model#mapping-model-names-to-tables-or-collections, `Note: You can also...

Prisma adds `@@ignore` to models/tables that you want to be excluded from Prisma client, [as of version 2.17.0](https://www.prisma.io/docs/reference/api-reference/prisma-schema-reference#ignore-1). With this intellij plugin, it looks like this is currently breaking syntax...

Hello! I found some unusual prisma operator after introspecting my db schema And its broken any highlighting after that model, containing this operator. Its caused by custom "geometry" scalar from...

Good evening, I thin that it would be nice to have a custom icon for .prisma files on light and dark modes too.

Let's say I have a model `Article` in my Prisma Client. If I try to give a type to a variable for this model, the type doesn't show up in...

IntelliJ IDEA 2021.2.1 (Ultimate Edition) Build #IU-212.5080.55, built on August 24, 2021 Licensed to Козак Яромир You have a perpetual fallback license for this version. Subscription is active until November...

when using enums, the map keyword is shown as an error ``` enum test_enum { enum_prop_with_underline @map("enum-prop-with-underline") } ``` the `@map` is shown as an error in that case. Thank...

Prisma's language server [just got merged into master](https://github.com/prisma/vscode/tree/master/packages/language-server), it might be cool looking into that. Thanks for your work so far!

enhancement
help wanted