com.commercetools.graphql.api.client.CustomerSignUpProjectionRoot 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 CustomerSignUpProjectionRoot, ROOT extends BaseSubProjectionNode, ?>> extends BaseSubProjectionNode {
public CustomerSignUpProjectionRoot() {
super(null, null, java.util.Optional.of("CustomerSignInResult"));
}
public CustomerSignUpProjectionRoot __typename() {
getFields().put("__typename", null);
return this;
}
public CustomerProjection, CustomerSignUpProjectionRoot> customer(
) {
CustomerProjection, CustomerSignUpProjectionRoot> projection = new CustomerProjection<>(this, this);
getFields().put("customer", projection);
return projection;
}
public CartProjection, CustomerSignUpProjectionRoot> cart(
) {
CartProjection, CustomerSignUpProjectionRoot> projection = new CartProjection<>(this, this);
getFields().put("cart", projection);
return projection;
}
}