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

Commit 1e4178c

Browse files
authored
removed products-234 file (#5787)
1 parent 10912f2 commit 1e4178c

File tree

4 files changed

+801
-1618
lines changed

4 files changed

+801
-1618
lines changed

_data/toc/graphql.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,9 @@ pages:
101101
- label: isEmailAvailable query
102102
url: /graphql/queries/is-email-available.html
103103

104-
- label: products query (2.3.3)
104+
- label: products query
105105
url: /graphql/queries/products.html
106106

107-
- label: products query (2.3.4)
108-
url: /graphql/queries/products-234.html
109-
110107
- label: storeConfig query
111108
url: /graphql/queries/store-config.html
112109

guides/v2.3/graphql/custom-filters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ group: graphql
33
title: Filtering with custom attributes
44
---
55

6-
As of Magento 2.3.4, the `filter` attribute of the [`products`]({{page.baseurl}}/graphql/queries/products-234.html) query accepts the `ProductAttributeFilterInput` object. (In previous versions, the `filter` attribute required a `ProductFilterInput` object. This object contained a hard-coded list of filterable attributes, and you could not filter on a custom attribute or any other attribute that was not on the list.)
6+
As of Magento 2.3.4, the `filter` attribute of the [`products`]({{page.baseurl}}/graphql/queries/products.html) query accepts the `ProductAttributeFilterInput` object. (In previous versions, the `filter` attribute required a `ProductFilterInput` object. This object contained a hard-coded list of filterable attributes, and you could not filter on a custom attribute or any other attribute that was not on the list.)
77

88
## Prerequisites
99

@@ -18,7 +18,7 @@ Field | Setting
1818

1919
## Define the filter for your query
2020

21-
The [`filter`]({{page.baseurl}}/graphql/queries/products-234.html#filter) definition for your custom attribute requires one of the following input data types:
21+
The [`filter`]({{page.baseurl}}/graphql/queries/products.html#ProductFilterInput) definition for your custom attribute requires one of the following input data types:
2222

2323
- `FilterEqualTypeInput` - Specify this data type when the **Catalog Input Type for Store Owner** field for your custom attribute is set to Yes/No, Select, or Multiple select. Your filter can contain the `eq` or `in` attribute. Use the `eq` attribute to exactly match the specified string. Use the `in` attribute to filter on a comma-separated list of values.
2424
- `FilterMatchTypeInput` - Specify this data type when the the **Catalog Input Type for Store Owner** field for your custom attribute is set to Text Field or Text Area. Your filter must contain the `match` attribute, which will return all items that exactly match the specified string.

0 commit comments

Comments
 (0)