We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94a369d commit 438fd3fCopy full SHA for 438fd3f
README.md
@@ -184,9 +184,9 @@ await client.batch.addToMany(activityTarget, feeds!);
184
185
// Batch create follow relations (let flat:1 follow user:1, user:2 and user:3 feeds in one single request)
186
const follows = [
187
- FollowRelation('flat:1', 'user:1'),
188
- FollowRelation('flat:1', 'user:2'),
189
- FollowRelation('flat:1', 'user:3'),
+ FollowRelation(source: 'flat:1', target: 'user:1'),
+ FollowRelation(source:'flat:1', target: 'user:2'),
+ FollowRelation(source:'flat:1', target: 'user:3'),
190
];
191
192
// ⚠️ server-side only!
0 commit comments