Add some debugging

This commit is contained in:
Jackson Harper 2023-10-18 18:48:18 +08:00
parent d2c0efc540
commit fbaaaeca7c

View file

@ -290,7 +290,7 @@ export const updateSubscriptionResolver = authorized<
lastFetchedAt: input.lastFetchedAt
? new Date(input.lastFetchedAt)
: undefined,
lastFetchedChecksum: input.lastfetchedChecksum,
lastFetchedChecksum: input.lastfetchedChecksum || undefined,
status: input.status || undefined,
})
@ -300,6 +300,8 @@ export const updateSubscriptionResolver = authorized<
})
})
console.log('updatedSubscription', updatedSubscription)
return {
subscription: updatedSubscription,
}