0
私はリレーのドキュメントを通過し、RANGE_ADDのコードに従いました。リレーの突然変異のRANGE_ADDに関する問題
class IntroduceShipMutation extends Relay.Mutation {
// This mutation declares a dependency on the faction
// into which this ship is to be introduced.
static fragments = {
faction:() => Relay.QL`fragment on Faction { id }`,
};
// Introducing a ship will add it to a faction's fleet, so we
// specify the faction's ships connection as part of the fat query.
getFatQuery() {
return Relay.QL`
fragment on IntroduceShipPayload {
faction { ships },
newShipEdge,
}
`;
}
getConfigs() {
return [{
type: 'RANGE_ADD',
parentName: 'faction',
parentID: this.props.faction.id,
connectionName: 'ships',
edgeName: 'newShipEdge',
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',
},
}];
}
/* ... */
}
は今ここにedgeName
が、接続に新しいノードを追加するために必要であることを述べています。よく見えます。
今、私はドキュメントをさらに下に移動し、GraphQL
この突然変異の実装に達しました。
mutation AddBWingQuery($input: IntroduceShipInput!) {
introduceShip(input: $input) {
ship {
id
name
}
faction {
name
}
clientMutationId
}
}
今すぐドキュメントによると、この変異は、私が
edgeName
がここに存在して見ることができません
{
"introduceShip": {
"ship": {
"id": "U2hpcDo5",
"name": "B-Wing"
},
"faction": {
"name": "Alliance to Restore the Republic"
},
"clientMutationId": "abcde"
}
}
として出力を提供します。
私は自分のプロジェクトにグラフェンを使用していました。そこにまた、私は唯一の
class IntroduceShip(relay.ClientIDMutation):
class Input:
ship_name = graphene.String(required=True)
faction_id = graphene.String(required=True)
ship = graphene.Field(Ship)
faction = graphene.Field(Faction)
@classmethod
def mutate_and_get_payload(cls, input, context, info):
ship_name = input.get('ship_name')
faction_id = input.get('faction_id')
ship = create_ship(ship_name, faction_id)
faction = get_faction(faction_id)
return IntroduceShip(ship=ship, faction=faction)
こっちに似た何かを見た上でも、私はどこでもedgeName
を見ることはできません。
お願いします。最初の突然変異を研究していますので、何か不足していることを確認したいのですが、ここで何か間違っていますか?実際に(RANGE_ADD内の他のフィールドは、宣言のようなものよりであり、必ずしも取得されませんエッジを返却する必要があり、それがリレーに取り込まれる正確に何があるので