Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 529fac7

Browse files
Deprecated type_id field in graphql (#6817)
* Deprecated type_id field in graphql * small change Co-authored-by: Kevin Harper <keharper@users.noreply.github.com>
1 parent 055108a commit 529fac7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/guides/v2.3/graphql/product/customizable-option-interface.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,13 @@ Attribute | Type | Description
206206
The following query returns information about the customizable options configured for the product with a `sku` of `xyz`.
207207

208208
```text
209+
{
209210
products(filter: {sku: {eq: "xyz"}}) {
210211
items {
211212
id
212213
name
213214
sku
214-
type_id
215+
__typename
215216
... on CustomizableProductInterface {
216217
options {
217218
title

0 commit comments

Comments
 (0)