What is the location of your example repository?
No response
Which package or tool is having this issue?
hydrogen-react
What version of that package or tool are you using?
2026.4.3
What version of React Router 7 are you using?
7.16.0
Steps to Reproduce
The Customer Account API types include the field hasMultipleFulfillments here:
|
/** Whether the order has multiple fulfillments. */ |
|
hasMultipleFulfillments: Scalars['Boolean']['output']; |
When I tried to use it in a query, everything looked fine in the code but Hydrogen complained:
╭─ error ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ │
│ In Hydrogen's `customerAccount.query`: │
│ │
│ Field 'hasMultipleFulfillments' doesn't exist on type 'Order' │
│ Request ID: 4ebd321c-7d7b-4169-a418-e389b58ac37e-1784818071 │
│ │
│ To debug the query `Order`, try it in GraphiQL. │
│ │
│ To investigate the issue, examine this stack trace: │
│ at loader (app/routes/account.orders.$orderId.tsx:20) │
│ │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
I also couldn't find this field in older/newer versions of the web docs so it might be a leftover from a long time ago?
Expected Behavior
API types don't include outdated/missing fields.
Actual Behavior
API types include a not existing hasMultipleFulfillments field.
What is the location of your example repository?
No response
Which package or tool is having this issue?
hydrogen-react
What version of that package or tool are you using?
2026.4.3
What version of React Router 7 are you using?
7.16.0
Steps to Reproduce
The Customer Account API types include the field
hasMultipleFulfillmentshere:hydrogen/packages/hydrogen-react/src/customer-account-api-types.d.ts
Lines 5151 to 5152 in e315798
When I tried to use it in a query, everything looked fine in the code but Hydrogen complained:
I also couldn't find this field in older/newer versions of the web docs so it might be a leftover from a long time ago?
Expected Behavior
API types don't include outdated/missing fields.
Actual Behavior
API types include a not existing
hasMultipleFulfillmentsfield.