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

com.commercetools.sync.commons.models.GraphQlQueryResource Maven / Gradle / Ivy

package com.commercetools.sync.commons.models;

public enum GraphQlQueryResource {
  CART_DISCOUNTS("cartDiscounts"),
  CATEGORIES("categories"),
  CHANNELS("channels"),
  CUSTOMER_GROUPS("customerGroups"),
  CUSTOMERS("customers"),
  PRODUCTS("products"),
  PRODUCT_TYPES("productTypes"),
  STATES("states"),
  TAX_CATEGORIES("taxCategories"),
  TYPES("typeDefinitions"),
  SHOPPING_LISTS("shoppingLists"),
  CUSTOM_OBJECTS("customObjects");

  private final String name;

  GraphQlQueryResource(final String name) {
    this.name = name;
  }

  public String getName() {
    return name;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy