com.commercetools.graphql.api.client.CustomFieldsCommandProjection 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 CustomFieldsCommandProjection, ROOT extends BaseSubProjectionNode, ?>> extends BaseSubProjectionNode {
public CustomFieldsCommandProjection(PARENT parent, ROOT root) {
super(parent, root, java.util.Optional.of("CustomFieldsCommand"));
}
public CustomFieldsCommandProjection __typename() {
getFields().put("__typename", null);
return this;
}
public ResourceIdentifierProjection, ROOT> typeResId(
) {
ResourceIdentifierProjection, ROOT> projection = new ResourceIdentifierProjection<>(this, getRoot());
getFields().put("typeResId", projection);
return projection;
}
public CustomFieldsCommandProjection typeId() {
getFields().put("typeId", null);
return this;
}
public CustomFieldsCommandProjection typeKey() {
getFields().put("typeKey", null);
return this;
}
public CustomFieldsCommandProjection fields() {
getFields().put("fields", null);
return this;
}
}