I'm trying to get the prisma vscode plugin working...
# orm-help
b
I'm trying to get the prisma vscode plugin working, but not having much success. I created a file
.graphqlconfig
and placed into it
Copy code
{
  "projects": {
    "ui": {
      "schemaPath": "api/graphql/schema.graphql"
    }
  }
}
Now in one of .ts files I have
Copy code
import gql from 'graphql-tag'

export default gql`
  
`
but I get no autocomplete, error reporting, etc. in there