Graphcool RELAY订阅:订阅边

时间:2018-11-23 11:28:53

标签: graphql-js relayjs relay graphcool relaymodern

subscription updateListSubscription {
    User(filter: {mutation_in: [CREATED]}) {
        mutation
        node {
            id
            name
            addressList{
                edges {
                    node {
                        id
                    }
                }
            }                               
        }
    }
}

对于上述查询错误:无法查询AddressList类型的字段'edges'。注意AddressList是每个地址到每个用户的映射。

0 个答案:

没有答案