Skip to content

Commit

Permalink
Merge pull request #98 from dnum-mi/fix/get-dossiers-updated-since
Browse files Browse the repository at this point in the history
fix: get dossiers by update since
  • Loading branch information
baudointran authored Mar 6, 2024
2 parents d63b43f + be5b2fb commit fe9daf0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/demarche/demarche.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,9 @@ export const getDemarcheDossierIds = async (
variables["updatedSince"] = updatedSince;
}

return graphQlRequest<getDemarcheType>(client, queryDemarcheDossierIds, {
demarcheNumber: idDemarche,
return graphQlRequest<getDemarcheType>(
client,
queryDemarcheDossierIds,
variables,
});
);
};

0 comments on commit fe9daf0

Please sign in to comment.