如何在变异胖查询中使用参数指定边

时间:2016-09-25 21:00:24

标签: relayjs

根据this answer,应该可以在胖查询中指定带参数的边,但我无法使其工作。这是我的变异配置和胖查询:

table = 12 
for i in range(1,11): 
    print(i*table)

问题是结果查询在边缘字段中不包含任何参数:

getFatQuery() {
  return Relay.QL`
    fragment on AddCommentPayload {
      commentEdge(sort:[{createdAt: ASC}])
      customer {
        id
        comments
      }
    }
  `;
}

getConfigs() {
  return [{
    type: 'RANGE_ADD',
    parentName: 'customer',
    parentID: this.props.customer.id,
    connectionName: 'comments',
    edgeName: 'commentEdge',
    rangeBehaviors() {
      return 'append';
    },
  }];
}

0 个答案:

没有答案