com.commercetools.graphql.api.client.SearchIndexingConfigurationProjection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commercetools-graphql-api Show documentation
Show all versions of commercetools-graphql-api Show documentation
The e-commerce SDK from commercetools Composable Commerce for Java
package com.commercetools.graphql.api.client;
import com.netflix.graphql.dgs.client.codegen.BaseSubProjectionNode;
public class SearchIndexingConfigurationProjection, ROOT extends BaseSubProjectionNode, ?>> extends BaseSubProjectionNode {
public SearchIndexingConfigurationProjection(PARENT parent, ROOT root) {
super(parent, root, java.util.Optional.of("SearchIndexingConfiguration"));
}
public SearchIndexingConfigurationProjection __typename() {
getFields().put("__typename", null);
return this;
}
public SearchIndexingConfigurationValuesProjection, ROOT> products(
) {
SearchIndexingConfigurationValuesProjection, ROOT> projection = new SearchIndexingConfigurationValuesProjection<>(this, getRoot());
getFields().put("products", projection);
return projection;
}
public OrderSearchConfigurationProjection, ROOT> orders(
) {
OrderSearchConfigurationProjection, ROOT> projection = new OrderSearchConfigurationProjection<>(this, getRoot());
getFields().put("orders", projection);
return projection;
}
}