如何使用Apollo在Vue中实现有效的Graphql查询?

时间:2018-01-15 13:43:30

标签: javascript vue.js graphql apollo vue-apollo

有人可以帮我解决第一个使用scaphold.io的问题吗?

当我使用内部GraphiQL查询以下内容时:

query AllPrograms {
  viewer {
    allPrograms{
      edges {
        node {
          id
          name
        }
      }
    }
  }
}

回报如下:

{
  "data": {
    "viewer": {
      "allPrograms": {
        "edges": [
          {
            "node": {
              "id": "UHJvZ3JhbTo2",
              "name": "Blender"
            }
          },
          {
            "node": {
              "id": "UHJvZ3JhbTo1",
              "name": "Inkscape"
            }
          },

          ...

我的组件如下所示:

<template>
  <md-card>
    <span class="md-headline">Programma's</span>
    <span class="md-headline">{{ allPrograms }}</span>
  </md-card>
</template>


<script>
import gql from 'graphql-tag'
import config from '../../config/client'

const log = console.log

const allPrograms = gql `
  query AllPrograms {
    viewer {
      allPrograms{
        edges {
          node {
            id
            name
          }
        }
      }
    }
  }
`

export default {
  props: [],
  data () {
    return {
      allPrograms: '',
    }
  },
  // Apollo GraphQL
  apollo: {
    // Local state 'posts' data will be updated
    // by the GraphQL query result
    allPrograms: { // <-- THIS allPrograms IS THE CAUSE OF THE ERROR!
      // GraphQL query
      query: allPrograms,
      // Will update the 'loading' attribute
      // +1 when a new query is loading
      // -1 when a query is completed
      loadingKey: 'loading',
    },
  }
}
</script>

我得到的错误是:在结果上缺少allPrograms属性

我还阅读了一些看起来像是正确的json结果的内容:object: viewer: {allPrograms: Object, __typename: "Viewer"}

或许我误解了一些事情。我认为我接收数据很接近,可能已经成功了,但分裂似乎需要一些额外的关注。

有什么想法吗?

1 个答案:

答案 0 :(得分:5)

似乎vue-apollo期望在服务器发送的响应中的data下找到与您在apollo定义中设置的密钥相匹配的密钥。尝试替换

apollo: {
   allPrograms: { ... }
} 

通过

apollo: {
   viewer: { ... }
} 

并且你的错误消失了,但那可能不是你想要的。

而是在查询定义中添加update选项以更改数据集。假设您想要allPrograms的内容:

apollo: {
    allPrograms: {
        query: allPrograms,
        loadingKey: 'loading',
        update: function(data) {
            return data.viewer.allPrograms;

            // or if you just want the leaf objects
            return data.viewer.allPrograms.edges.map(function(edge) {
                return edge.node;
            });
        }
    },
}