diff --git a/docs/docs/guides/developer-guide/plugins/index.mdx b/docs/docs/guides/developer-guide/plugins/index.mdx index 7a3db57dba..f7a573bd23 100644 --- a/docs/docs/guides/developer-guide/plugins/index.mdx +++ b/docs/docs/guides/developer-guide/plugins/index.mdx @@ -528,7 +528,7 @@ export class WishlistShopResolver { @Query() @Allow(Permission.Owner) - activeCustomerWishlist(@Ctx() ctx: RequestContext) { + async activeCustomerWishlist(@Ctx() ctx: RequestContext) { return this.wishlistService.getWishlistItems(ctx); } @@ -760,6 +760,7 @@ mutation RemoveFromWishlist { removeFromWishlist(itemId: "4") { id productVariant { + id name } }