如何通过Lokka在GraphQL中变异数组?

时间:2016-11-27 22:59:24

标签: reactjs graphql graphql-js react-apollo

我的查询:imageList - object; 我无法理解如何通过变量进行变异;

let query = `query _($type: NoteTypeEnum!, $imageList: ???){
    addNote(note: {
    imageList: [{  
       fileName: $fileName,
       url: $url,
       uuid: $uuid
    }]
    }) {}
}`;

1 个答案:

答案 0 :(得分:0)

列表类型用方括号定义,其中列表的类型,所以在你的情况下我猜它应该是:

let query = `query _($type: NoteTypeEnum!, $imageList: [Json]){
addNote(note: {
imageList: [{  
   fileName: $fileName,
   url: $url,
   uuid: $uuid
}]
}) {}
}`;