com.commercetools.graphql.api.client.CreateProductTailoringProjectionRoot 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 CreateProductTailoringProjectionRoot, ROOT extends BaseSubProjectionNode, ?>> extends BaseSubProjectionNode {
public CreateProductTailoringProjectionRoot() {
super(null, null, java.util.Optional.of("ProductTailoring"));
}
public CreateProductTailoringProjectionRoot __typename() {
getFields().put("__typename", null);
return this;
}
public ReferenceProjection, CreateProductTailoringProjectionRoot> productRef(
) {
ReferenceProjection, CreateProductTailoringProjectionRoot> projection = new ReferenceProjection<>(this, this);
getFields().put("productRef", projection);
return projection;
}
public ProductProjection, CreateProductTailoringProjectionRoot> product(
) {
ProductProjection, CreateProductTailoringProjectionRoot> projection = new ProductProjection<>(this, this);
getFields().put("product", projection);
return projection;
}
public KeyReferenceProjection, CreateProductTailoringProjectionRoot> storeRef(
) {
KeyReferenceProjection, CreateProductTailoringProjectionRoot> projection = new KeyReferenceProjection<>(this, this);
getFields().put("storeRef", projection);
return projection;
}
public StoreProjection, CreateProductTailoringProjectionRoot> store(
) {
StoreProjection, CreateProductTailoringProjectionRoot> projection = new StoreProjection<>(this, this);
getFields().put("store", projection);
return projection;
}
public ProductTailoringDataProjection, CreateProductTailoringProjectionRoot> current(
) {
ProductTailoringDataProjection, CreateProductTailoringProjectionRoot> projection = new ProductTailoringDataProjection<>(this, this);
getFields().put("current", projection);
return projection;
}
public ProductTailoringDataProjection, CreateProductTailoringProjectionRoot> staged(
) {
ProductTailoringDataProjection, CreateProductTailoringProjectionRoot> projection = new ProductTailoringDataProjection<>(this, this);
getFields().put("staged", projection);
return projection;
}
public InitiatorProjection, CreateProductTailoringProjectionRoot> createdBy(
) {
InitiatorProjection, CreateProductTailoringProjectionRoot> projection = new InitiatorProjection<>(this, this);
getFields().put("createdBy", projection);
return projection;
}
public InitiatorProjection, CreateProductTailoringProjectionRoot> lastModifiedBy(
) {
InitiatorProjection, CreateProductTailoringProjectionRoot> projection = new InitiatorProjection<>(this, this);
getFields().put("lastModifiedBy", projection);
return projection;
}
public CreateProductTailoringProjectionRoot key() {
getFields().put("key", null);
return this;
}
public CreateProductTailoringProjectionRoot published() {
getFields().put("published", null);
return this;
}
public CreateProductTailoringProjectionRoot hasStagedChanges() {
getFields().put("hasStagedChanges", null);
return this;
}
public CreateProductTailoringProjectionRoot id() {
getFields().put("id", null);
return this;
}
public CreateProductTailoringProjectionRoot version() {
getFields().put("version", null);
return this;
}
public CreateProductTailoringProjectionRoot createdAt() {
getFields().put("createdAt", null);
return this;
}
public CreateProductTailoringProjectionRoot lastModifiedAt() {
getFields().put("lastModifiedAt", null);
return this;
}
}