文档描述 rangeBehaviors
为:
GraphQL 调用映射到我们希望 Relay 在这些调用的影响下将新边添加到连接时表现出的行为。行为可以是“追加”、“前置”或“删除”之一。
文档中的示例是:
rangeBehaviors: {
// When the ships connection is not under the influence
// of any call, append the ship to the end of the connection
'': 'append',
// Prepend the ship, wherever the connection is sorted by age
'orderby(newest)': 'prepend',
}
在todos 示例 repo的另一个示例中,您有:
rangeBehaviors: {
'': 'append',
'status(any)': 'append',
'status(active)': 'append',
'status(completed)': null,
}
在这种情况下,什么是“GraphQL 调用”?“受到”这种呼吁的“影响”是什么意思?