Jainam Mehta
08/17/2020, 3:49 PMSuhail
08/18/2020, 7:03 AMversion: '3'
services:
prisma:
image: prismagraphql/prisma:1.34
restart: always
ports:
- '4466:4466'
environment:
PRISMA_CONFIG: |
port: 4466
databases:
default:
connector: mysql
host: <http://test.mysql.database.azure.com|test.mysql.database.azure.com>
port: 3306
user: prod
password: 23#$
# mysql:
# image: mysql:5.7
# restart: always
# environment:
# MYSQL_ROOT_PASSWORD: prisma
# volumes:
# - mysql:/var/lib/mysql
#volumes:
# mysql: ~
Suhail
08/18/2020, 7:04 AMSuhail
08/18/2020, 7:05 AMERROR: Invalid interpolation format for "environment" option in service "prisma": "port: 4466
databases:
default:
connector: mysql
host: <http://test.mysql.database.azure.com|test.mysql.database.azure.com>
port: 3306
user: prod
password: 23#$
"
Suhail
08/18/2020, 7:05 AMArmaan Dhanji
08/18/2020, 8:16 AMArmaan Dhanji
08/18/2020, 8:17 AMSachin Jani
08/18/2020, 2:32 PMtsc
build it throws this error. This issue is of nexus-prisma-generate I think.
blog ref: https://www.prisma.io/blog/datamodel-v11-lrzqy1f56c90 by @nikolasburkMelvin Pacheco
08/22/2020, 6:19 PMtype Video {
id: ID! @id
name: String! @unique
slug: String @unique
description: String!
image: String
url: String
}
type Playlist {
id: ID! @id
name: String!
slug: String
videos: [Video]
}
however, I would like to also mix in youtube videos, the data structure will be the same, since the youtube videos don’t exist in the db, I can’t do
connect: {
id: video.id,
},
my question is, do I have to create an item in the db for the youtube video? or can I just add an item to the playlist on the fly?Suhail
08/30/2020, 5:48 AM"Not implemented: com.prisma.shared.models.TypeIdentifier$Int$@14c36e39BsonDouble{value=1.5909498E9}"
when using Prisma 1 + Mongo . Anyone aware what does this mean?Suhail
08/30/2020, 6:19 AMMelvin Pacheco
09/03/2020, 7:29 PMtypeDefs: 'src/schema.graphql',
just a string path, however, I need to also add this schema
const { schema, resolvers } = gapiToGraphQL({ gapiAsJsonSchema: YouTubeAPI })
how can I combine them?
thanks in advanceSteven
09/04/2020, 3:41 PMJeanre Swanepoel
09/07/2020, 11:28 AMAlan
09/08/2020, 3:26 AMprisma2
if we want to keep the approach SDL first
(ie not using Nexus) what would be the best tool which is replacing prisma1 deploy
in order to generate the GraphQL schema?yilmazito
09/08/2020, 11:49 PMDavid Gwon
09/09/2020, 2:01 AMDavid Gwon
09/09/2020, 2:02 AMDavid Gwon
09/09/2020, 2:13 AMMoray Macdonald
09/10/2020, 3:28 PMMagmaStorm
09/14/2020, 6:16 PMprisma-deploy
where it is taking too much time to deploy changes
. Can anyone please help me out ?Moray Macdonald
09/15/2020, 1:01 PMMoray Macdonald
09/17/2020, 7:27 AMJesper O. Christensen
09/17/2020, 8:55 AMJuan Varela
09/17/2020, 1:35 PM{
"data": {
"login": null
},
"errors": [
{
"message": "Could not found associated email",
"locations": [
{
"line": 2,
"column": 3
}
],
"path": [
"login"
]
}
]
}
Juan Varela
09/17/2020, 1:36 PM"data": {
"login": null
},
Juan Varela
09/17/2020, 1:36 PMJuan Varela
09/17/2020, 1:36 PMJuan Varela
09/17/2020, 1:37 PMkhareta
09/22/2020, 2:47 PM