Skip to content

Commit 53f2471

Browse files
committed
Fixing request
1 parent 7b28b46 commit 53f2471

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

src/backend/index.js

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,21 @@ export const applySyncMutation = gql`
218218
`;
219219

220220
export const queryListChanges = gql`
221-
query listChanges($remote: String!, $syncFor: String!, $perspectiveId: LingvodocID!, $debugFlag: Boolean) {
222-
list_changes(remote: $remote, sync_for: $syncFor, perspective_id: $perspectiveId, debug_flag: $debugFlag)
221+
query listChanges(
222+
$remote: String!
223+
$syncFor: String!
224+
$perspectiveId: LingvodocID!
225+
$userId: Int
226+
$syncPoint: Float
227+
$debugFlag: Boolean)
228+
{
229+
list_changes(
230+
remote: $remote
231+
sync_for: $syncFor
232+
perspective_id: $perspectiveId
233+
user_id: $userId
234+
sync_point: $syncPoint
235+
debug_flag: $debugFlag)
223236
}
224237
`;
225238

0 commit comments

Comments
 (0)