vue-apollo 클라이언트에서 GraphQL 입력 유형을 정의하는 방법 상황: laravel-graphql을 백엔드 GraphQL 서비스로, vue-apollo를 프런트엔드 클라이언트로 사용하고 있습니다. Vue 컴포넌트에는 다음과 같은 gql 쿼리가 있습니다(관계:A Song에는 더 많은 Song Parts가 있습니다. const getSong = gql` query FetchSong ($id:Int!){ song(id: $id) { id, name, authors_lyrics, authors_music song_parts{ type lyrics } } }`; 특정 노래를 업데이트하기 위해 사용하는 변환이 있습니다. const updateSong = gql` mutation updateSongMut..