단축 속성명
객체를 정의할 때 객체의 key값과 value값이 같으면, 객체를 정의할 때 각각 표기하지 않고 한번만 표기해도 된다!
const result = await createUseditem({
variables: {
createUseditemInput: {
name
remarks
contents
},
},
},
});
👇🏻 key값과 value값이 다르면 아래처럼 직접 적어줘야 함!
const result = await createUseditem({
variables: {
createUseditemInput: {
name: myName
remarks: myRemarks
contents: myContents
},
},
},
});