我创建了具有以下架构的graphQL服务器:
...
#charts interface
interface Chart {
id: String!
sql: String!
title: String
type: String!
display: String!
}
type Layout{
# Unique layout id
id: String
# The title displayed on the layout tab
title: String
# List of displayed charts
charts: [Chart]
}
...
关于我的客户,我有一个
<SummaryLayout/>
具有以下gql查询的组件:
gql`{
layout(id:"summary"){
title
charts {
id,
title,
type,
display
}
}}`
加载页面时,布局组件将所有图表显示为页面上的网格。用户以后可以添加新图表,因此我有两个变体:一个是创建图表,另一个是将新图表添加到布局中:
const addToLayout = gql`
mutation addToLayout($layoutID: String!, $chartID: String!) {
addToLayout(layoutID: $layoutID ,chartID:$chartID){
id
charts {
id
sql
title
type
display
}
}
}`;
const addChart = gql`
mutation addChart($chartConfig:ChartConfig!) {
addChart(chartConfig:$chartConfig){
id
display
}
}`;
this.props.addChart({
variables: {chartConfig: chartConfig}
}).then((response) => {
const chartID = response.data.addChart.id;
console.log("Chart added, DB ID:", chartID);
this.props.addToLayout({
variables: {layoutID: "summary", chartID: chartID},
update: (store, data) => {
console.log("STORE:",store);
}
}).then((response) => {
appState.toggleDialog(false);
})
});
当我登录商店时,我可以看到
Layout:summary
条目已更新,但未反映在UI上,弹出的另一个条目是另一个名为
$ROOT_QUERY.layout({"id":"summary"})
未使用新数据更新的:
我错过了什么?