remove debug log

This commit is contained in:
Hongbo Wu 2022-02-24 12:35:57 +08:00
parent 6482d280f7
commit 42f2cffdf8

View file

@ -429,7 +429,6 @@ export const functionResolvers = {
)
},
async labels(article: { linkId: string }): Promise<Label[] | undefined> {
console.log('labels', article.linkId)
const link = await getRepository(Link).findOne(article.linkId, {
relations: ['labels'],
})