Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/graphql / src / models / Favorites.graphql
Size: Mime:
type ListIds {
  id: String
}

type FavoritesItemInfo {
  itemid: String
  flags: [LabelValue]
  list: [ListIds]
  sku: String
}

type FavoritesState {
  starttime: String
}

type UserInfoData {
  userid: String
  username: String
  type: String
}

type FavoritesUserInfo {
  userinfo: [UserInfoData]
}

# fragment CartQuantity on CartInfo {
#   quantity: String
# }

type FavoriteCartInfo {
  quantity: String
}

type FavoriteProductProperties {
  buyinfo: SkuBuyInfo
  cartinfo: FavoriteCartInfo
  iteminfo: FavoritesItemInfo
  reviewrating: ReviewRating
  state: FavoritesState
  userinfo: FavoritesUserInfo
}

type FavoriteProduct {
  identifier: ID!
  image: String
  name: String
  properties: FavoriteProductProperties
}

type FavoritesList {
  lists: [FavoriteProduct]
}

type FavoritesPropertiesItemInfo {
  flags: [LabelValue]
}

type FavoritesCount {
  count: String
}

type FavoritesProperties {
  iteminfo: FavoritesPropertiesItemInfo
  state: FavoritesCount
}

type Favorites {
  children: FavoritesList
  properties: FavoritesProperties
  type: String
  responseMessage: String
  responseCode: String
}