-
Couldn't load subscription status.
- Fork 11
feat: use bigint instead of long #1403
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThe changes update the handling of large integer values in the API by replacing a custom Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant GraphQL API
participant graphql-scalars
participant json-bigint-patch
Client->>GraphQL API: Query/Mutation with large integer fields
GraphQL API->>graphql-scalars: Use GraphQLBigInt for serialization/parsing
GraphQL API->>json-bigint-patch: Parse/serialize JSON with big integers
graphql-scalars-->>GraphQL API: Return BigInt-compliant values
json-bigint-patch-->>GraphQL API: Handle JSON with big integers
GraphQL API-->>Client: Respond with accurate large integer data
Suggested reviewers
Poem
Note ⚡️ AI Code Reviews for VS Code, Cursor, WindsurfCodeRabbit now has a plugin for VS Code, Cursor and Windsurf. This brings AI code reviews directly in the code editor. Each commit is reviewed immediately, finding bugs before the PR is raised. Seamless context handoff to your AI code agent ensures that you can easily incorporate review feedback. Note ⚡️ Faster reviews with cachingCodeRabbit now supports caching for code and dependencies, helping speed up reviews. This means quicker feedback, reduced wait times, and a smoother review experience overall. Cached data is encrypted and stored securely. This feature will be automatically enabled for all accounts on May 30th. To opt out, configure ✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
♻️ Duplicate comments (9)
api/src/unraid-api/graph/resolvers/array/array.model.ts (9)
61-66: Consistent TS typing for BigInt fields
ThisnumReadsfield also usesnumber | nullwithGraphQLBigInt. Change tobigint | nullto avoid overflow or precision issues.
68-73: Consistent TS typing for BigInt fields
Same pattern fornumWrites: switch the TypeScript annotation fromnumber | nulltobigint | null.
75-80: Consistent TS typing for BigInt fields
numErrorsneeds the same fix—usebigint | nullinstead ofnumber | null.
82-87: Consistent TS typing for BigInt fields
ForfsSize, update the TS type tobigint | nullto align with the BigInt scalar.
88-93: Consistent TS typing for BigInt fields
fsFreeshould also be typed asbigint | nullto preserve large values.
94-99: Consistent TS typing for BigInt fields
Apply the same change forfsUsed: switch tobigint | null.
246-248: Consistent TS typing for BigInt fields
In theSharetype, thefreefield is stillnumber | null. Change tobigint | nullfor large-space precision.
249-251: Consistent TS typing for BigInt fields
Theusedfield here also needs to bebigint | nullrather thannumber | null.
252-253: Consistent TS typing for BigInt fields
Finally, update thesizefield inSharetobigint | nullto match the GraphQLBigInt scalar.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
pnpm-lock.yamlis excluded by!**/pnpm-lock.yaml
📒 Files selected for processing (7)
api/package.json(1 hunks)api/src/cli.ts(1 hunks)api/src/index.ts(1 hunks)api/src/unraid-api/graph/graph.module.ts(2 hunks)api/src/unraid-api/graph/resolvers/array/array.model.ts(4 hunks)api/src/unraid-api/graph/resolvers/info/info.model.ts(3 hunks)api/src/unraid-api/graph/scalars/graphql-type-long.ts(0 hunks)
💤 Files with no reviewable changes (1)
- api/src/unraid-api/graph/scalars/graphql-type-long.ts
⏰ Context from checks skipped due to timeout of 90000ms (5)
- GitHub Check: Build Web App
- GitHub Check: Test API
- GitHub Check: Build API
- GitHub Check: Analyze (javascript-typescript)
- GitHub Check: Cloudflare Pages
🔇 Additional comments (9)
api/package.json (1)
118-118: Added dependency for handling large integers.Adding
json-bigint-patchis appropriate for supporting JSON data with large integer values.api/src/cli.ts (1)
2-2: Imported json-bigint-patch for big integer support.This import ensures that big integers are properly handled in the CLI interface.
api/src/unraid-api/graph/graph.module.ts (2)
7-7: Replaced GraphQLLong with GraphQLBigInt from graphql-scalars package.Good improvement to use a standard library scalar type instead of a custom implementation.
52-52: Updated Long scalar resolver to use GraphQLBigInt.This change maintains API compatibility by keeping the scalar name as "Long" while using the better implementation from graphql-scalars.
api/src/index.ts (1)
3-3: Imported json-bigint-patch for big integer support.This addition ensures consistent handling of large integers across the application.
api/src/unraid-api/graph/resolvers/info/info.model.ts (3)
11-11: Updated imports to include GraphQLBigInt.Adding GraphQLBigInt alongside GraphQLJSON properly prepares for the type changes in the model.
293-294: Changed MemoryLayout.size type from Int to GraphQLBigInt.Good update to handle potentially large memory sizes that could exceed JavaScript's safe integer limit.
329-357: Updated all memory measurement fields to use GraphQLBigInt.This is an essential change as memory values in bytes can easily exceed the 32-bit integer limit, especially on systems with large amounts of memory. Using GraphQLBigInt ensures accurate representation of these values.
api/src/unraid-api/graph/resolvers/array/array.model.ts (1)
4-4: Verify scalar import and module registration
You’ve swapped out the customGraphQLLongforGraphQLBigInt—great move. Please confirm thatGraphQLBigIntis registered in your GraphQL module (e.g., ingraph.module.ts) so these fields resolve correctly.
| @Field(() => GraphQLBigInt, { description: '(KB) Disk Size total', nullable: true }) | ||
| size?: number | null; | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mismatch between GraphQLBigInt and TS number type
GraphQLBigInt returns a JS BigInt, but the field is typed as number | null, risking precision loss. Update the TypeScript type to bigint | null.
Apply this diff:
- @Field(() => GraphQLBigInt, { description: '(KB) Disk Size total', nullable: true })
- size?: number | null;
+ @Field(() => GraphQLBigInt, { description: '(KB) Disk Size total', nullable: true })
+ size?: bigint | null;📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| @Field(() => GraphQLBigInt, { description: '(KB) Disk Size total', nullable: true }) | |
| size?: number | null; | |
| @Field(() => GraphQLBigInt, { description: '(KB) Disk Size total', nullable: true }) | |
| size?: bigint | null; |
🤖 Prompt for AI Agents
In api/src/unraid-api/graph/resolvers/array/array.model.ts around lines 46 to
48, the TypeScript type for the size field is incorrectly set as number | null
while the GraphQL type is GraphQLBigInt, which returns a JS BigInt. Change the
TypeScript type of the size field from number | null to bigint | null to match
the GraphQLBigInt type and avoid precision loss.
|
This plugin has been deployed to Cloudflare R2 and is available for testing. |
🤖 I have created a release *beep* *boop* --- ## [4.9.0](v4.8.0...v4.9.0) (2025-07-08) ### Features * add graphql resource for API plugins ([#1420](#1420)) ([642a220](642a220)) * add management page for API keys ([#1408](#1408)) ([0788756](0788756)) * add rclone ([#1362](#1362)) ([5517e75](5517e75)) * API key management ([#1407](#1407)) ([d37dc3b](d37dc3b)) * api plugin management via CLI ([#1416](#1416)) ([3dcbfbe](3dcbfbe)) * build out docker components ([#1427](#1427)) ([711cc9a](711cc9a)) * docker and info resolver issues ([#1423](#1423)) ([9901039](9901039)) * fix shading in UPC to be less severe ([#1438](#1438)) ([b7c2407](b7c2407)) * info resolver cleanup ([#1425](#1425)) ([1b279bb](1b279bb)) * initial codeql setup ([#1390](#1390)) ([2ade7eb](2ade7eb)) * initialize claude code in codebse ([#1418](#1418)) ([b6c4ee6](b6c4ee6)) * move api key fetching to use api key service ([#1439](#1439)) ([86bea56](86bea56)) * move to cron v4 ([#1428](#1428)) ([b8035c2](b8035c2)) * move to iframe for changelog ([#1388](#1388)) ([fcd6fbc](fcd6fbc)) * native slackware package ([#1381](#1381)) ([4f63b4c](4f63b4c)) * send active unraid theme to docs ([#1400](#1400)) ([f71943b](f71943b)) * slightly better watch mode ([#1398](#1398)) ([881f1e0](881f1e0)) * upgrade nuxt-custom-elements ([#1461](#1461)) ([345e83b](345e83b)) * use bigint instead of long ([#1403](#1403)) ([574d572](574d572)) ### Bug Fixes * activation indicator removed ([5edfd82](5edfd82)) * alignment of settings on ManagementAccess settings page ([#1421](#1421)) ([70c790f](70c790f)) * allow rclone to fail to initialize ([#1453](#1453)) ([7c6f02a](7c6f02a)) * always download 7.1 versioned files for patching ([edc0d15](edc0d15)) * api `pnpm type-check` ([#1442](#1442)) ([3122bdb](3122bdb)) * **api:** connect config `email` validation ([#1454](#1454)) ([b9a1b9b](b9a1b9b)) * backport unraid/webgui[#2269](https://github.com/unraid/api/issues/2269) rc.nginx update ([#1436](#1436)) ([a7ef06e](a7ef06e)) * bigint ([e54d27a](e54d27a)) * config migration from `myservers.cfg` ([#1440](#1440)) ([c4c9984](c4c9984)) * **connect:** fatal race-condition in websocket disposal ([#1462](#1462)) ([0ec0de9](0ec0de9)) * **connect:** mothership connection ([#1464](#1464)) ([7be8bc8](7be8bc8)) * console hidden ([9b85e00](9b85e00)) * debounce is too long ([#1426](#1426)) ([f12d231](f12d231)) * delete legacy connect keys and ensure description ([22fe91c](22fe91c)) * **deps:** pin dependencies ([#1465](#1465)) ([ba75a40](ba75a40)) * **deps:** pin dependencies ([#1470](#1470)) ([412b329](412b329)) * **deps:** storybook v9 ([#1476](#1476)) ([45bb49b](45bb49b)) * **deps:** update all non-major dependencies ([#1366](#1366)) ([291ee47](291ee47)) * **deps:** update all non-major dependencies ([#1379](#1379)) ([8f70326](8f70326)) * **deps:** update all non-major dependencies ([#1389](#1389)) ([cb43f95](cb43f95)) * **deps:** update all non-major dependencies ([#1399](#1399)) ([68df344](68df344)) * **deps:** update dependency @types/diff to v8 ([#1393](#1393)) ([00da27d](00da27d)) * **deps:** update dependency cache-manager to v7 ([#1413](#1413)) ([9492c2a](9492c2a)) * **deps:** update dependency commander to v14 ([#1394](#1394)) ([106ea09](106ea09)) * **deps:** update dependency diff to v8 ([#1386](#1386)) ([e580f64](e580f64)) * **deps:** update dependency dotenv to v17 ([#1474](#1474)) ([d613bfa](d613bfa)) * **deps:** update dependency lucide-vue-next to ^0.509.0 ([#1383](#1383)) ([469333a](469333a)) * **deps:** update dependency marked to v16 ([#1444](#1444)) ([453a5b2](453a5b2)) * **deps:** update dependency shadcn-vue to v2 ([#1302](#1302)) ([26ecf77](26ecf77)) * **deps:** update dependency vue-sonner to v2 ([#1401](#1401)) ([53ca414](53ca414)) * disable file changes on Unraid 7.2 ([#1382](#1382)) ([02de89d](02de89d)) * do not start API with doinst.sh ([7d88b33](7d88b33)) * do not uninstall fully on 7.2 ([#1484](#1484)) ([2263881](2263881)) * drop console with terser ([a87d455](a87d455)) * error logs from `cloud` query when connect is not installed ([#1450](#1450)) ([719f460](719f460)) * flash backup integration with Unraid Connect config ([#1448](#1448)) ([038c582](038c582)) * header padding regression ([#1477](#1477)) ([e791cc6](e791cc6)) * incorrect state merging in redux store ([#1437](#1437)) ([17b7428](17b7428)) * lanip copy button not present ([#1459](#1459)) ([a280786](a280786)) * move to bigint scalar ([b625227](b625227)) * node_modules dir removed on plugin update ([#1406](#1406)) ([7b005cb](7b005cb)) * omit Connect actions in UPC when plugin is not installed ([#1417](#1417)) ([8c8a527](8c8a527)) * parsing of `ssoEnabled` in state.php ([#1455](#1455)) ([f542c8e](f542c8e)) * pin ranges ([#1460](#1460)) ([f88400e](f88400e)) * pr plugin promotion workflow ([#1456](#1456)) ([13bd9bb](13bd9bb)) * proper fallback if missing paths config modules ([7067e9e](7067e9e)) * rc.unraid-api now cleans up older dependencies ([#1404](#1404)) ([83076bb](83076bb)) * remote access lifecycle during boot & shutdown ([#1422](#1422)) ([7bc583b](7bc583b)) * sign out correctly on error ([#1452](#1452)) ([d08fc94](d08fc94)) * simplify usb listing ([#1402](#1402)) ([5355115](5355115)) * theme issues when sent from graph ([#1424](#1424)) ([75ad838](75ad838)) * **ui:** notifications positioning regression ([#1445](#1445)) ([f73e5e0](f73e5e0)) * use some instead of every for connect detection ([9ce2fee](9ce2fee)) ### Reverts * revert package.json dependency updates from commit 711cc9a for api and packages/* ([94420e4](94420e4)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Summary by CodeRabbit