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

Unable replace existing product Retriever Filter Attributes key #975

Open
swativ0755 opened this issue Nov 26, 2022 · 0 comments
Open

Unable replace existing product Retriever Filter Attributes key #975

swativ0755 opened this issue Nov 26, 2022 · 0 comments

Comments

@swativ0755
Copy link

Expected Behaviour

I am trying to update product Retriever Filter Attributes but it is replace the value instead of key. And my requirement is to update/replace the existing attribute key not to set the custom attribute.

Actual Behaviour

After changing the code it is replacing the value of attribute , instead of key.

Expected Query
{products(filter:{my-attribute:{eq:"my-value"},custom-sku:{eq:"123"}})

Generated Query:

{products(filter:{my-attribute:{eq:"my-value"},sku:{eq:"custom-sku"}})

Reproduce Scenario (including but not limited to)

  1. Extend custom productdetails model and after retrieving the productRetriever I am extending the query to replace the key in grapghql query schema but it is replacing the value instead of key,

Steps to Reproduce

  1. Extend custom productdetails model and after retrieving the productRetriever I am extending the query to replace the key in grapghql query schema but it is replacing the value instead of key,

Platform and Version

AEM 6.5.12 , CIF core: 2.11.0

Sample Code that illustrates the problem

@PostConstruct
public void initModel() {
productRetriever = product.getProductRetriever();

	 if (productRetriever != null) {
		 productRetriever.extendProductFilterWith(f -> new ProductAttributeFilterInput()
				      
			          .setSku(new FilterEqualTypeInput()
			              .setEq("custom-sku"))
			          .setCustomFilter("my-attribute", new FilterEqualTypeInput()
			              .setEq("my-value")));
        }
	
}

Logs taken while reproducing problem

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant