Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete obsolete attribute from GraphQL products endpoint #2308

Merged
merged 1 commit into from
Jun 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions guides/v2.3/graphql/reference/products.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ Magento processes the attribute values specified in a `ProductFilterInput` as
The following attributes can be used to create filters. See the [Response](#Response) section for information about each attribute.

```
category_ids
country_of_manufacture
created_at
custom_design
Expand Down Expand Up @@ -131,7 +130,7 @@ When a product requires a filter attribute that is not a field on its output sch
</arguments>
</type>
```
This example adds `field_to_sort` and `other_field_to_sort` attributes to the `additionalAttributes` array defined in the `ProductEntityAttributesForAst` class. The array also contains the `min_price`, `max_price`, and `category_ids`attributes.
This example adds `field_to_sort` and `other_field_to_sort` attributes to the `additionalAttributes` array defined in the `ProductEntityAttributesForAst` class. The array already contains the `min_price`, `max_price`, and `category_ids`attributes.


## ProductInterface {#ProductInterface}
Expand All @@ -154,7 +153,6 @@ Attribute | Data type | Description
`attribute_set_id` | Int | The attribute set assigned to the product
`canonical_url` | String | The canonical URL for the product
`categories` | [CategoryInterface] | The categories assigned to the product. See [categories endpoint]({{ page.baseurl }}/graphql/reference/categories.html) for more information
`category_ids` | [Int] | An array of category IDs the product belongs to
`country_of_manufacture` | String | The product's country of origin
`created_at` | String | Timestamp indicating when the product was created
`custom_design` | String | A theme that can be applied to the product page
Expand Down