Skip to content

Commit 372c40f

Browse files
saleor-deployments[bot]kzurawlkostrowski
authored
chore: update GraphQL schema and generated types (schema: 3.23, 2026-06-23) (#6663)
Co-authored-by: krzysztofzuraw <9116238+krzysztofzuraw@users.noreply.github.com> Co-authored-by: Lukasz Ostrowski <lukasz.ostrowski@saleor.io>
1 parent b8cee44 commit 372c40f

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

schema-staging.graphql

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10136,6 +10136,20 @@ input ProductVariantWhereInput @doc(category: "Products") {
1013610136
"""
1013710137
attributes: [AssignedAttributeWhereInput!]
1013810138

10139+
"""
10140+
Filter by variants having a specific stock status in the given channel.
10141+
10142+
Added in Saleor 3.24.
10143+
"""
10144+
stockAvailability: StockAvailability
10145+
10146+
"""
10147+
Filter by stock of the variant.
10148+
10149+
Added in Saleor 3.24.
10150+
"""
10151+
stocks: ProductStockFilterInput
10152+
1013910153
"""List of conditions that must be met."""
1014010154
AND: [ProductVariantWhereInput!]
1014110155

src/graphql/typesStaging.generated.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7328,6 +7328,18 @@ export type ProductVariantWhereInput = {
73287328
metadata?: InputMaybe<Array<MetadataFilter>>;
73297329
/** Filter by product SKU. */
73307330
sku?: InputMaybe<StringFilterInput>;
7331+
/**
7332+
* Filter by variants having a specific stock status in the given channel.
7333+
*
7334+
* Added in Saleor 3.24.
7335+
*/
7336+
stockAvailability?: InputMaybe<StockAvailability>;
7337+
/**
7338+
* Filter by stock of the variant.
7339+
*
7340+
* Added in Saleor 3.24.
7341+
*/
7342+
stocks?: InputMaybe<ProductStockFilterInput>;
73317343
/** Filter by when was the most recent update. */
73327344
updatedAt?: InputMaybe<DateTimeRangeInput>;
73337345
};

0 commit comments

Comments
 (0)