我正在我的 React 应用程序中尝试 Relay,它默认使用 GraphQL。它看起来像这样(Score
是一些 React.js 组件):
Score = Relay.createContainer(Score, {
fragments: {
score: () => Relay.QL`
fragment on Score {
initials,
score,
}
`,
},
});
问题是:我可以使用自定义 API 函数将数据返回到片段中吗?像这样:
Score = Relay.createContainer(Score, {
fragments: {
score: myCustomFunction(), // It will return a dataset.
},
});