0

graphcool,文件上传是一个可以订阅的突变吗?

如果没有:我将如何获得新上传文件的实时更新?


我改编了示例中的代码subscriptions-with-apollo-instagram但这似乎不起作用:

subscription {
    File (filter: { mutation_in: [CREATED] }) {
        node {
            id
            name
            url
            contentType
        }
    }
}
4

1 回答 1

0

来自文档

Currently, no Server-Side Subscriptions are triggered for the File type.
于 2017-09-11T14:53:54.023 回答