Skip to content

Commit

Permalink
fix: return id as a string (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
ehoops-cz authored Feb 23, 2024
1 parent 023e10d commit 0ffa0b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resolvers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ export const resolvers: Resolvers = {
context
);
return workflowRuns.map((run) => ({
id: run.id,
id: run.id.toString(),
ownerUserId: run.owner_user_id,
status: run.status,
}));
Expand Down

0 comments on commit 0ffa0b2

Please sign in to comment.