[x] edit offers, all parameters plus category assignment.
[x] Change Locations page to use new stuff
[x] Change List/Tile View to use new Stuff
[x] Adjust Detail pages for new stuff
Query all shops
query {
shops {
id
name
largeBannerUrl
smallBannerUrl
categories {
name
description
entries {
product {
id
title
description
pricePerUnit
}
}
}
}
}
Query single shop
query {
shop(id:5) {
id
name
largeBannerUrl
smallBannerUrl
categories {
name
description
entries {
product {
id
title
description
pricePerUnit
}
}
}
}
}
Query all shops
Query single shop
Add new Shop (UpsertShopDocument):
Update existing Shop (UpsertShopDocument):
Add or update categories (UpsertShopCategoriesDocument):
Add or update CategoryEntries (UpsertShopCategoryEntriesDocument):