Skip to content

Commit

Permalink
docs: Fix two bugs and add "id" for coherency with other examples (#3208
Browse files Browse the repository at this point in the history
)
  • Loading branch information
JavierElices authored Dec 2, 2024
1 parent 941238e commit c8f4d42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/docs/guides/developer-guide/plugins/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down Expand Up @@ -760,6 +760,7 @@ mutation RemoveFromWishlist {
removeFromWishlist(itemId: "4") {
id
productVariant {
id
name
}
}
Expand Down

0 comments on commit c8f4d42

Please sign in to comment.