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

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

The newest version!
package com.commercetools.graphql.api.client;

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

public class StoresProjectionRoot, ROOT extends BaseSubProjectionNode> extends BaseSubProjectionNode {
  public StoresProjectionRoot() {
    super(null, null, java.util.Optional.of("StoreQueryResult"));
  }

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

  public StoreProjection, StoresProjectionRoot> results(
      ) {
    StoreProjection, StoresProjectionRoot> projection = new StoreProjection<>(this, this);    
    getFields().put("results", projection);
    return projection;
  }

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy