0

アップデーターで使用される ConnectionHandler について質問があります。私は例を読んでいて、見つけました

import {ConnectionHandler} from 'relay-runtime';

// The `friends` connection record can be accessed with:
const user = store.get(userID);
const friends = RelayConnectionHandler.getConnection(
 user,                        // parent record
 'FriendsFragment_friends'    // connection key
 {orderby: 'firstname'}       // 'filters' that is used to identify the connection
);
// Access fields on the connection:
const edges = friends.getLinkedRecords('edges');

したがって、接続は {orderby: 'firstname'} を受け入れることができます。orderby フィールドには、firstname、secondname、または fullname のいずれかを入力できますか? したがって、名でソートしている場合は、orderby = firstname で接続を更新する必要があり、姓でソートしている場合は、orderby = lastname で接続を取得する必要があります...自分がどの orderby に属しているかを知るにはどうすればよいですか、または単に更新できますか? 「現在のもの」?

4

1 に答える 1