0

我刚刚开始将 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>

谢谢你的帮助。

4

2 回答 2

0

你绝对是在正确的轨道上!我注意到的一件事Product是在您的 JS 中大写,但在您的模板中没有。所以要么像这样更新你的模板:

<template>
  <section>
    <input v-model="Product.title"></input>
    <input v-model="Product.description"></input>
    <button @click="updateProduct">Update</button>
  </section>
</template>

...或product在您的 JS 中使用小写字母(我个人更喜欢)。

另外,我相信在这种情况下您需要使用反应参数。variables将需要是一个函数而不是一个对象。

variables() {
  return {
    id: this.Product.id,
    title: this.Product.title,
    description: this.Product.description
  }
}
于 2017-08-26T12:51:19.163 回答
0

好的,我终于发现查询中的数据是不可变的,这就是我无法更新它们的原因。

解决方案是使用 Object.assign 或 lodash cloneDeep 创建一个新对象。

于 2017-08-29T07:30:59.183 回答