我刚刚开始将 GraphQL 与 Apollo 和 Vue 一起使用,所以这可能是一个“愚蠢”的问题,但我不知道该怎么做。
如何在同一个视图中执行查询以获取一个对象并使用突变对其进行更新
假设我有一个简单的架构
type Product {
id: ID!
title: String!
description: String
}
还有一个vue组件
<script>
// GraphQL query
const ProductQuery = gql `
query($id: ID){
Product(id: $id)
{
id
title
description
}
}
`;
const UpdateProductQuery = gql `
mutation updateProduct($id: ID!, $title: String!, $description: String) {
updateProduct(
id: $id,
title: $title,
description: $description,
) {
id
}
}
`;
export default {
data() {
return {
Product: {},
};
},
apollo: {
Product: {
query: ProductQuery,
variables() {
id: 1234,
};
},
},
methods: {
updateProduct() {
this.$apollo.mutate({
mutation: UpdateProductQuery,
variables: {
id: this.Product.id,
title: this.Product.title,
description: this.Product.description,
},
})
}
}
};
</script>
现在我应该如何编写模板部分?我可以将 Product 对象链接到 input 中的 v-model 吗?
<template>
<section>
<input v-model="product.title"></input>
<input v-model="product.description"></input>
<button @click="updateProduct">Update</button>
</section>
</template>
谢谢你的帮助。