All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.commercetools.graphql.api.client.ProductAssignmentQueryResultProjection Maven / Gradle / Ivy

There is a newer version: 17.15.1
Show newest version
package com.commercetools.graphql.api.client;

import com.netflix.graphql.dgs.client.codegen.BaseSubProjectionNode;

public class ProductAssignmentQueryResultProjection, ROOT extends BaseSubProjectionNode> extends BaseSubProjectionNode {
  public ProductAssignmentQueryResultProjection(PARENT parent, ROOT root) {
    super(parent, root, java.util.Optional.of("ProductAssignmentQueryResult"));
  }

  public ProductAssignmentQueryResultProjection __typename() {
    getFields().put("__typename", null);
    return this;
  }

  public ProductAssignmentProjection, ROOT> results(
      ) {
     ProductAssignmentProjection, ROOT> projection = new ProductAssignmentProjection<>(this, getRoot());
     getFields().put("results", projection);
     return projection;
  }

  public ProductAssignmentQueryResultProjection offset() {
    getFields().put("offset", null);
    return this;
  }

  public ProductAssignmentQueryResultProjection count() {
    getFields().put("count", null);
    return this;
  }

  public ProductAssignmentQueryResultProjection total() {
    getFields().put("total", null);
    return this;
  }

  public ProductAssignmentQueryResultProjection exists() {
    getFields().put("exists", null);
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy