com.commercetools.graphql.api.client.AttributeDefinitionResultProjection 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 AttributeDefinitionResultProjection, ROOT extends BaseSubProjectionNode, ?>> extends BaseSubProjectionNode {
public AttributeDefinitionResultProjection(PARENT parent, ROOT root) {
super(parent, root, java.util.Optional.of("AttributeDefinitionResult"));
}
public AttributeDefinitionResultProjection __typename() {
getFields().put("__typename", null);
return this;
}
public AttributeDefinitionProjection, ROOT> results(
) {
AttributeDefinitionProjection, ROOT> projection = new AttributeDefinitionProjection<>(this, getRoot());
getFields().put("results", projection);
return projection;
}
public AttributeDefinitionResultProjection limit() {
getFields().put("limit", null);
return this;
}
public AttributeDefinitionResultProjection offset() {
getFields().put("offset", null);
return this;
}
public AttributeDefinitionResultProjection total() {
getFields().put("total", null);
return this;
}
}