prisma
Here are 511 public repositories matching this topic...
This issue pertains to the following package(s):
- GraphQL Playground - Electron App
- GraphQL Playground HTML
- GraphQL Playground
- GraphQL Playground Express Middleware
- GraphQL Playground Hapi Middleware
- GraphQL Playground Koa Middleware
- GraphQL Playground Lambda Middleware
The default value of request.credentials is "omit". The differs from th
-
Updated
Sep 3, 2019 - TypeScript
The api server and webpack dev server should be restarted when the redwood.toml configuration is modified.
Related: #478
https://www.npmjs.com/package/@prisma/cli and https://www.npmjs.com/package/@prisma/client could use some love <3
Blitz needs to export a useInfiniteQuery hook that's a thin wrapper on the useInfiniteQuery hook from react-query. This will be done very similar to how we are wrapping the useQuery hook.
- Output of
useInfiniteQueryshould be fully typed - Add this to the example store app
import { useInfiniteQuery } from 'blitz'
import getProducts from '/app/products/queries/getProducts'-
Updated
Aug 9, 2019 - JavaScript
Right now Actions reports the tests are succeeding, although they are clearly failing:
prisma/prisma-examples#1652
prisma/prisma-examples#1651
That is dangerous, as one does not really see when stuff goes wrong.
Fundamentally there are 2 problems:
- All tests are run in one batch, a suggestion to change that is at https://github.com/p
Add more unit tests
Many of the controllers & services do not have tests written. These would be helpful to include as examples of how to handle testing.
-
Updated
May 21, 2020 - TypeScript
-
Updated
Feb 21, 2019 - JavaScript
-
Updated
Mar 12, 2018 - Swift
-
Updated
Jan 26, 2020 - JavaScript
If I have a model with only one field in my schema and if that field is an autoincremented int, nexus-prisma throws an error.
For example, this fails:
model User {
id Int @id @default(autoincrement())
}
While this does not:
model User {
id Int @id @default(autoincrement())
username String @unique
}
Fun fact, this does not fail either:
model User {
The graphqlgen prepare step fails on yarn setup:prisma
shop (mashop (master) λ yarn setup:prisma
yarn run v1.12.3
$ cd api && yarn deploy:local && yarn seed:local
$ docker-compose -f database/docker-compose.yml up -d && prisma deploy && graphql prepare
database_mysql_1 is up-to-date
database_prisma_1 is up-to-date
Deploying service `shop` to stage `local` to server `local` 39ms
S
I only using this for language syntax.
Actual Behavior
- Opening, creating, editing and saving
graphqlfiles results in an error
Expected Behavior
- View
graphqlwith language mode - Being able to open, create, edit and save file without error
Steps to Reproduce the Problem Or Description
- Create profile, specifically I have an
aws amplifyproject add apito proj
-
Updated
May 23, 2020 - TypeScript
-
Updated
Jun 4, 2019
-
Updated
Feb 9, 2018 - Swift
The current UI's for those are really prototypes so that I could continue the RN app. They definitely needs to be done in a better way, mostly in terms of UI. The UX is already kind of good.
-
Updated
Jul 19, 2018 - JavaScript
Hi,
And congrats for this library!
It would improve discoverability if you added a link to your repository in the react-admin documentation, in the Data Providers section.
-
Updated
Mar 18, 2020 - TypeScript
-
Updated
Jul 25, 2018 - JavaScript
-
Updated
May 20, 2018
I am getting the below error when installing the new alpha25 version. It looks like it desires the .env file to be in a prisma folder, but my folder is called tenant. As I have a folder for multitenant use and a folder for shared database.
Unknown Error!
Error: Couldn't find the prisma/.env file
at /Users/username/Development/project/backend/src/prisma/tenant/node_modules/prisma-multi-ten
-
Updated
Oct 19, 2019
I have deployed the Prisma server locally in Docker with managementApiSecret and also defined it in prisma.yml. Now, there are two issues I'm facing.
-
Prisma server link
http://localhost:4466from Docker is accessible without setting any header. How can I secure that? -
When Graphql Shield is disabled I can query documents on
http://localhost:1337by setting the **Authoriz
Improve this page
Add a description, image, and links to the prisma topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the prisma topic, visit your repo's landing page and select "manage topics."
I've recently started to implement a graphql server in golang, and It was a good experience.
I read about libraries for creating graphql server in golang and these options came across:
graphql-go/graphqlis the first library that started implementing graphql in g