Slackbot
11/12/2018, 1:33 PMGorodov Maksim
11/12/2018, 4:31 PMFROM node:10.13.0
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD [ "npm", "start" ]
The server is hosted on Digital Ocean.jacm
11/13/2018, 11:02 AMjacm
11/13/2018, 11:03 AMNovalis
11/21/2018, 12:55 PMtylim
11/22/2018, 8:42 AMJohnC
11/23/2018, 12:22 AMAlejandro Estrada
11/23/2018, 3:29 PMFabian
11/25/2018, 8:51 PMNick
11/26/2018, 5:29 AMpllumh
11/26/2018, 10:04 AMserver.express.get('/test', (req, res, done) => {
sendEmail();
res.send('cool')
});
pllumh
11/26/2018, 10:05 AM/test
, that's all fine ... but it also send the email everytime I go to that Tab in chromepllumh
11/26/2018, 10:06 AMpllumh
11/26/2018, 10:07 AMtylim
11/26/2018, 1:27 PMtylim
11/26/2018, 1:28 PMfgreinus
11/26/2018, 1:48 PMtylim
11/26/2018, 1:55 PMtylim
11/26/2018, 1:55 PMtylim
11/26/2018, 1:56 PMcaptaindaylight
11/27/2018, 3:44 PMAbonora
11/27/2018, 5:57 PMwontwon
11/28/2018, 5:08 AMpllumh
12/05/2018, 9:52 AMpllumh
12/05/2018, 9:52 AMFrigo
12/05/2018, 7:04 PMtype Offer
that is in a one-many relation with Event
. I try to write a query that gives me all the offers that have no `Event`s and I thought this is an obvious use case, but for the life of me I cannot find a solution other than selecting every Offer
and filtering on the client. I found this (https://www.prisma.io/forum/t/filtering-out-data-based-on-whether-relations-exists/215), but based on my current prisma knowledge I have no idea what filter
is, in Playground it is not a valid syntax. How can this be done?ankit5174
12/06/2018, 7:09 AMrohan
12/06/2018, 10:29 AMMarius
12/06/2018, 3:25 PMHyo
12/06/2018, 10:28 PM