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

com.commercetools.graphql.api.client.ExtensionsProjectionRoot 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 ExtensionsProjectionRoot, ROOT extends BaseSubProjectionNode> extends BaseSubProjectionNode {
  public ExtensionsProjectionRoot() {
    super(null, null, java.util.Optional.of("ExtensionQueryResult"));
  }

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy