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

com.commercetools.graphql.api.client.AttributeDefinitionResultProjection 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 AttributeDefinitionResultProjection, ROOT extends BaseSubProjectionNode> extends BaseSubProjectionNode {
  public AttributeDefinitionResultProjection(PARENT parent, ROOT root) {
    super(parent, root, java.util.Optional.of("AttributeDefinitionResult"));
  }

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

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

  public AttributeDefinitionResultProjection limit() {
    getFields().put("limit", null);
    return this;
  }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy