我的查询:imageList - object; 我无法理解如何通过变量进行变异;
let query = `query _($type: NoteTypeEnum!, $imageList: ???){
addNote(note: {
imageList: [{
fileName: $fileName,
url: $url,
uuid: $uuid
}]
}) {}
}`;
答案 0 :(得分:0)
列表类型用方括号定义,其中列表的类型,所以在你的情况下我猜它应该是:
let query = `query _($type: NoteTypeEnum!, $imageList: [Json]){
addNote(note: {
imageList: [{
fileName: $fileName,
url: $url,
uuid: $uuid
}]
}) {}
}`;