We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e895383 + 622bac4 commit 91213eeCopy full SHA for 91213ee
src/domain/Artwork/artworkDetailController.js
@@ -26,6 +26,7 @@ export const getArtworkDetails = async (req, res) => {
26
// 작품 정보 조회
27
const artworkPromise = Artwork.findOne({
28
where: { id: artworkId },
29
+ attributes: { exclude: ["updated_at"] },
30
include: [
31
{ model: Author, as: 'author', attributes: ['id', 'author_name', 'author_image_url', 'work_style'] },
32
],
0 commit comments