cschroeter
06/14/2018, 1:26 PMthis.apolloClient.subscribe({
query: onUserUpdate
})
.subscribe({
next: ({ data }) =>
// process data
});
Using Prisma it is complaining that it musth ave a selection of subfields.
const prisma = new Prisma();
client.subscription
.user()
.then(response => response)
.catch(e => console.log(e));