Open
Conversation
The updateSDKQueries workflow runs yarn update-test-schema after build. The script invoked the global fragment binary, which is not installed on GitHub-hosted runners, causing exit 127. Add @fragment-dev/cli as a devDependency and call it via yarn exec so yarn install in CI provides the binary. Made-with: Cursor
2db8090 to
f46f480
Compare
Install the fragment binary in updateSDKQueries so update-test-schema keeps using the existing script contract, and refresh generated SDK artifacts so integration checks pass against current queries. Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
sophieleewu
approved these changes
Mar 31, 2026
sophieleewu
reviewed
Mar 31, 2026
sophieleewu
left a comment
There was a problem hiding this comment.
is there a reason this one doesn't have a changelog file like the python and ruby ones do?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
updateSDKQueriesso GitHub Actions can runyarn update-test-schema2.0.0Changes in this version
GetLedgerAccountBalancenow returns totalbalance(self + children) instead ofownBalanceGetLedgerAccountBalanceWithChildRolluphas been removedListLedgerAccountBalancesandListMultiCurrencyLedgerAccountBalancesnow acceptconsistencyModeonchildBalance,childBalances,balance, andbalancesfieldsHow to Upgrade
ownBalanceUpdatestototalBalanceUpdatesin the ledger account consistency config. ChangeownBalancetototalBalancein entry conditions. A schema can have only one ofownBalanceUpdatesortotalBalanceUpdates.consistencyConfig.totalBalanceUpdates: strongon any account in the tree, and its balance will be strongly consistent.GetLedgerAccountBalancenow returns totalbalance(self + children) instead ofownBalance.$ownBalanceConsistencyModeto$balanceConsistencyMode.GetLedgerAccountBalanceinstead ofGetLedgerAccountBalanceWithChildRollup.Verification
yarn buildnpx -y @fragment-dev/cli gen-graphql --path tests/fixtures/test-schema.json --output tests/fixtures/test-schema-queries.graphqlyarn fragment-node-client-codegen -i tests/fixtures/test-schema-queries.graphql -o tests/fixtures/generated-test-client.tsyarn vitest run tests/valid-graphql-queries.test.tsyarn vitest run tests/client-version.test.ts