com.commercetools.graphql.api.client.DeleteCustomObjectProjectionRoot 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 DeleteCustomObjectProjectionRoot, ROOT extends BaseSubProjectionNode, ?>> extends BaseSubProjectionNode {
public DeleteCustomObjectProjectionRoot() {
super(null, null, java.util.Optional.of("CustomObject"));
}
public DeleteCustomObjectProjectionRoot __typename() {
getFields().put("__typename", null);
return this;
}
public InitiatorProjection, DeleteCustomObjectProjectionRoot> createdBy(
) {
InitiatorProjection, DeleteCustomObjectProjectionRoot> projection = new InitiatorProjection<>(this, this);
getFields().put("createdBy", projection);
return projection;
}
public InitiatorProjection, DeleteCustomObjectProjectionRoot> lastModifiedBy(
) {
InitiatorProjection, DeleteCustomObjectProjectionRoot> projection = new InitiatorProjection<>(this, this);
getFields().put("lastModifiedBy", projection);
return projection;
}
public DeleteCustomObjectProjectionRoot container() {
getFields().put("container", null);
return this;
}
public DeleteCustomObjectProjectionRoot key() {
getFields().put("key", null);
return this;
}
public DeleteCustomObjectProjectionRoot value() {
getFields().put("value", null);
return this;
}
public DeleteCustomObjectProjectionRoot id() {
getFields().put("id", null);
return this;
}
public DeleteCustomObjectProjectionRoot version() {
getFields().put("version", null);
return this;
}
public DeleteCustomObjectProjectionRoot createdAt() {
getFields().put("createdAt", null);
return this;
}
public DeleteCustomObjectProjectionRoot lastModifiedAt() {
getFields().put("lastModifiedAt", null);
return this;
}
}