๐ก shorthand property ์ ์ฉ ์
const result = await createUseditem({
variables: {
createUseditemInput: {
name: myName
remarks: myRemarks
contents: myContents
},
},
},
});
๐ก shorthand property ์ ์ฉ ํ
shorthand property๋ ๊ฐ์ฒด๋ฅผ ์ ์ํ ๋ ๊ฐ์ฒด์ key๊ฐ๊ณผ value ๊ฐ์ด ๊ฐ์ผ๋ฉด, ๊ฐ๊ฐ ํ๊ธฐํ์ง ์๊ณ ํ ๋ฒ๋ง ํ๊ธฐํ๋ ๊ฒ์ ์๋ฏธํฉ๋๋ค
const result = await createUseditem({
variables: {
createUseditemInput: {
name
remarks
contents
},
},
},
});