Firdaus
10/29/2018, 11:00 AMAkira Laine
10/29/2018, 11:06 AMGuillaume AMAT
10/29/2018, 11:09 AMl0ck3
10/29/2018, 11:26 AMaydinsenturkk
10/29/2018, 11:58 AMZaher Aboushakra
10/29/2018, 11:59 AMSIDDIK MEHDI
10/29/2018, 12:17 PMKafil
10/29/2018, 1:18 PMDirk
10/29/2018, 1:59 PMHassan
10/29/2018, 2:32 PMDaniel
10/29/2018, 3:45 PMGary B
10/29/2018, 3:55 PMGary B
10/29/2018, 3:55 PMdavidnunez
10/29/2018, 5:20 PMyantakus
10/29/2018, 5:57 PMCannot query field "snippet" on type "Video"
. This is obvious, because I don’t have this field in my Video
type. Do I have to type remote data as well? If yes, how do I type the following data structure:
thumbnails: {
default: {
url: "<https://i.ytimg.com/vi/Tro6SQJJ8tA/default.jpg>",
width: 120,
height: 90
},
medium: {
url: "<https://i.ytimg.com/vi/Tro6SQJJ8tA/mqdefault.jpg>",
width: 320,
height: 180
},
high: {
url: "<https://i.ytimg.com/vi/Tro6SQJJ8tA/hqdefault.jpg>",
width: 480,
height: 360
},
standard: {
url: "<https://i.ytimg.com/vi/Tro6SQJJ8tA/sddefault.jpg>",
width: 640,
height: 480
},
maxres: {
url: "<https://i.ytimg.com/vi/Tro6SQJJ8tA/maxresdefault.jpg>",
width: 1280,
height: 720
}
},
?aman06
10/29/2018, 6:04 PMZefex Developer
10/29/2018, 6:16 PMian
10/29/2018, 6:27 PMian
10/29/2018, 6:33 PMJinesh
10/29/2018, 7:09 PMElie Steinbock
10/29/2018, 7:20 PMlribeiro
10/29/2018, 7:40 PMDavid Verhulst
10/29/2018, 8:24 PMZefex Developer
10/29/2018, 9:23 PMTanner
10/30/2018, 3:13 AMGlobal
✖ Could not find the relation between the models Campus and CampusContact in the database
✖ Could not find the relation between the models Notification and User in the database
✖ Could not find the relation between the models Task and User in the database
✖ Could not find the relation between the models Booking and Room in the database
..........
Tanner
10/30/2018, 3:13 AMtype CampusContact @pgTable(name: "campus_contacts") {
id: Int! @unique
campus_id: Campus!
contact_id: Contact!
created_at: DateTime!
updated_at: DateTime!
}
type Campus @pgTable(name: "campuses") {
id: Int! @unique
community_id: Community!
updated_at: DateTime!
zip: Int
}
faure
10/30/2018, 3:27 AMpedro
10/30/2018, 3:27 AMfactories(where: { domains: { in: ["<http://gmail.com|gmail.com>"] } })
it says domain does not exists in the whereInputs
Elfayer
10/30/2018, 3:34 AMatito
10/30/2018, 4:47 AMprisma client
method and generates the typedef in .ts
file and the prisma.graphql
is not getting generated anymore. Now, how can I import types in the app schema like before using graphql-import
?