Skip to content

Commit

Permalink
fix(backend-api): Fix type of BigInt
Browse files Browse the repository at this point in the history
Must be i64, not u64.
  • Loading branch information
theduke committed Mar 19, 2024
1 parent 4d0f268 commit 126840a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/backend-api/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1255,7 +1255,7 @@ mod queries {
}

#[derive(cynic::Scalar, Debug, Clone)]
pub struct BigInt(pub u64);
pub struct BigInt(pub i64);

#[derive(cynic::InlineFragments, Debug)]
pub enum Node {
Expand Down

0 comments on commit 126840a

Please sign in to comment.