[GraphQL] 객체의 key와 value값이 같을 때 사용하는 shorthand property

이주희·2022년 3월 20일
0

JavaScript

목록 보기
4/49

Shorthand Property

단축 속성명
객체를 정의할 때 객체의 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
            },
          },
        },
      });
profile
🍓e-juhee.tistory.com 👈🏻 이사중

0개의 댓글