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