com.commercetools.graphql.api.client.DeleteMyCartGraphQLQuery 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.GraphQLQuery;
import java.lang.Long;
import java.lang.Override;
import java.lang.String;
import java.util.HashSet;
import java.util.Set;
/**
* BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
*/
public class DeleteMyCartGraphQLQuery extends GraphQLQuery {
public DeleteMyCartGraphQLQuery(String id, Long version, String storeKey, String queryName,
Set fieldsSet) {
super("mutation", queryName);
if (id != null || fieldsSet.contains("id")) {
getInput().put("id", id);
}if (version != null || fieldsSet.contains("version")) {
getInput().put("version", version);
}if (storeKey != null || fieldsSet.contains("storeKey")) {
getInput().put("storeKey", storeKey);
}
}
public DeleteMyCartGraphQLQuery() {
super("mutation");
}
@Override
public String getOperationName() {
return "deleteMyCart";
}
public static Builder newRequest() {
return new Builder();
}
public static class Builder {
private Set fieldsSet = new HashSet<>();
private String id;
private Long version;
private String storeKey;
private String queryName;
public DeleteMyCartGraphQLQuery build() {
return new DeleteMyCartGraphQLQuery(id, version, storeKey, queryName, fieldsSet);
}
public Builder id(String id) {
this.id = id;
this.fieldsSet.add("id");
return this;
}
public Builder version(Long version) {
this.version = version;
this.fieldsSet.add("version");
return this;
}
/**
* The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.
*/
public Builder storeKey(String storeKey) {
this.storeKey = storeKey;
this.fieldsSet.add("storeKey");
return this;
}
public Builder queryName(String queryName) {
this.queryName = queryName;
return this;
}
}
}