com.commercetools.graphql.api.client.MessagesProjectionRoot 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
The newest version!
package com.commercetools.graphql.api.client;
import com.netflix.graphql.dgs.client.codegen.BaseSubProjectionNode;
public class MessagesProjectionRoot, ROOT extends BaseSubProjectionNode, ?>> extends BaseSubProjectionNode {
public MessagesProjectionRoot() {
super(null, null, java.util.Optional.of("MessageQueryResult"));
}
public MessagesProjectionRoot __typename() {
getFields().put("__typename", null);
return this;
}
public MessageProjection, MessagesProjectionRoot> results(
) {
MessageProjection, MessagesProjectionRoot> projection = new MessageProjection<>(this, this);
getFields().put("results", projection);
return projection;
}
public MessagesProjectionRoot offset() {
getFields().put("offset", null);
return this;
}
public MessagesProjectionRoot count() {
getFields().put("count", null);
return this;
}
public MessagesProjectionRoot total() {
getFields().put("total", null);
return this;
}
public MessagesProjectionRoot exists() {
getFields().put("exists", null);
return this;
}
}