com.commercetools.graphql.api.client.InventoryEntriesProjectionRoot 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 InventoryEntriesProjectionRoot, ROOT extends BaseSubProjectionNode, ?>> extends BaseSubProjectionNode {
public InventoryEntriesProjectionRoot() {
super(null, null, java.util.Optional.of("InventoryEntryQueryResult"));
}
public InventoryEntriesProjectionRoot __typename() {
getFields().put("__typename", null);
return this;
}
public InventoryEntryProjection, InventoryEntriesProjectionRoot> results(
) {
InventoryEntryProjection, InventoryEntriesProjectionRoot> projection = new InventoryEntryProjection<>(this, this);
getFields().put("results", projection);
return projection;
}
public InventoryEntriesProjectionRoot offset() {
getFields().put("offset", null);
return this;
}
public InventoryEntriesProjectionRoot count() {
getFields().put("count", null);
return this;
}
public InventoryEntriesProjectionRoot total() {
getFields().put("total", null);
return this;
}
public InventoryEntriesProjectionRoot exists() {
getFields().put("exists", null);
return this;
}
}