I'm trying to filter products retrieved from my backend magento2 with custom attributes using graphql query as mentioned in official documentation:[https://devdocs.magento.com/guides/v2.4/graphql/custom-filters.htm] using attribute_code: "color" which exists as a custom attribute but that gave me the following error in postman: "Field "color" is not defined by type ProductAttributeFilterInput."
here is my query: `{ products(filter: {
color: { eq: "4677" } }) {
total_count
items {
name
sku
price
}
} }`
I'm using magento 2.3.4
I would be grateful if someone could help me