Alessio
05/08/2018, 1:58 PMVendicto
05/09/2018, 7:56 AMweakky
05/11/2018, 9:48 AMif inEu() { f*** u }
itti Singh
05/11/2018, 10:20 AMitti Singh
05/11/2018, 10:21 AMMaxime Scibetta
05/12/2018, 11:42 AMquery filterCourses(
$hourStartMin: Int, $hourStartMax: Int, $hourEndMin: Int, $hourEndMax: Int, $date: String, $locationEnd: String, $locationStart: String){
allCourses(
filter: {
status: OPEN,
hourStart_gte: $hourStartMin,
hourStart_lte: $hourStartMax,
hourEnd_gte: $hourEndMin,
hourEnd_lte: $hourEndMax,
date: $date,
locationEnd: { name: $locationEnd },
locationStart: { city: $locationStart }
}
){
..node..
}
zonofthor
05/19/2018, 11:46 PMKyleG
05/20/2018, 5:12 PMkylemh
05/21/2018, 5:20 PMcommit #c5c86df - 'for the swarm'
Vendicto
05/22/2018, 1:33 PMsimz
05/28/2018, 1:41 PMsakhmedbayev
06/01/2018, 3:48 AMsakhmedbayev
06/01/2018, 3:48 AMsakhmedbayev
06/01/2018, 3:49 AMsakhmedbayev
06/01/2018, 3:49 AMsakhmedbayev
06/01/2018, 3:49 AMversion: '3'
services:
prisma:
image: prismagraphql/prisma:1.8
sakhmedbayev
06/01/2018, 6:33 AMsakhmedbayev
06/01/2018, 6:34 AMben
06/01/2018, 11:14 AMdaveek
06/04/2018, 4:10 PMsakhmedbayev
06/05/2018, 8:54 AMtext
field in my Post
type. I do not want to get a full text from text
field, only first 150 symbols.Pradnya
06/05/2018, 10:29 AMPradnya
06/05/2018, 10:30 AMsakhmedbayev
06/05/2018, 4:35 PMJim
06/05/2018, 9:26 PMUsulPro
06/06/2018, 1:55 PMexport default async event => {
/* ... */
sgMail.send(msgInfo)
.then(() => console.log('sgMail is sent'))
.catch((err) => console.log('sgMail error:', err))
// Or should I await until it's resolved?
// await sgMail.send(msgInfo)
// .then(() => console.log('sgMail is sent'))
// .catch((err) => console.log('sgMail error:', err))
return event;
};
may I be sure that mail will be sent without await
?kitze
06/08/2018, 11:37 AMharmony
06/08/2018, 11:40 AMfelixthedev
06/08/2018, 3:54 PMqsys
06/13/2018, 2:02 PMmutation createBookingForAgent($agent: BookingForAgentagentAgent!,
$booking: BookingForAgentbookingBooking!) {
createBookingForAgent(
agent: $agent
booking: $booking
) {
id
}
}
I can't make this work properly: I pass the ID of the agent and booking (which is enough to know which agent/booking it is, it are one-to-one relations):
GraphQL error: Variable '$booking' expected value of type 'BookingForAgentbookingBooking!' but got: "cje8yzetf94i301976ne1mx3y". Reason: Expected 'BookingForAgentbookingBooking', found not an object. (line 1, column 123):
mutation createBookingForAgent($agent: BookingForAgentagentAgent!, $agentPaymentStatuses: String, $agentStatuses: String, $booking: BookingForAgentbookingBooking!)