Skip to content

Updated wish list GraphQl read me file #31369

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
628a1e4
Updated wishlist graphql readme file
Dec 21, 2020
c16f995
Updated wishlist analytics readme file
Dec 21, 2020
cfbc08c
Removed extensibility content from the readme file.
Dec 22, 2020
6cb297b
Updated wishlist readme file
Dec 22, 2020
8584f85
Updated widget readme file
Dec 22, 2020
ee667ff
Update README.md
chiranjeevi-cj Dec 22, 2020
af5765d
Updated weee graphql module readme file
Dec 22, 2020
7cf7657
Updated weee module readme file
Dec 23, 2020
db1be3f
Updated webapi security module readme file
Dec 23, 2020
0b5401f
Updated webapi async module readme file
Dec 23, 2020
2a50bef
Merge pull request https://github.com/magento/magento2/pull/31378 to …
magento-engcom-team Dec 23, 2020
f786e39
Merge pull request https://github.com/magento/magento2/pull/31384 to …
magento-engcom-team Dec 23, 2020
427e14b
Merge pull request https://github.com/magento/magento2/pull/31387 to …
magento-engcom-team Dec 23, 2020
2610382
Merge pull request https://github.com/magento/magento2/pull/31388 to …
magento-engcom-team Dec 23, 2020
350ba94
Merge pull request https://github.com/magento/magento2/pull/31415 to …
magento-engcom-team Dec 23, 2020
a57297c
Merge pull request https://github.com/magento/magento2/pull/31417 to …
magento-engcom-team Dec 23, 2020
200771d
Merge pull request https://github.com/magento/magento2/pull/31419 to …
magento-engcom-team Dec 23, 2020
01a656f
Chaged http to https
Dec 28, 2020
ed70125
Update README.md
chiranjeevi-cj Dec 28, 2020
4f4b98a
Update README.md
chiranjeevi-cj Jan 11, 2021
54d95d0
Update README.md
chiranjeevi-cj Jan 11, 2021
447f3c6
Update README.md
chiranjeevi-cj Jan 11, 2021
f5fde08
Update README.md
chiranjeevi-cj Jan 11, 2021
7728961
Update README.md
chiranjeevi-cj Jan 11, 2021
354d3f6
Update README.md
chiranjeevi-cj Jan 11, 2021
6c1e76e
Update README.md
chiranjeevi-cj Jan 11, 2021
13f32b6
Update README.md
chiranjeevi-cj Jan 11, 2021
0b09f8c
Update README.md
chiranjeevi-cj Jan 11, 2021
c95fee9
Update README.md
chiranjeevi-cj Jan 11, 2021
bdf967d
Merge branch '2.4-develop' into update-whishlist-graphql-readme
engcom-Hotel Jan 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 41 additions & 3 deletions app/code/Magento/WishlistGraphQl/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,42 @@
# WishlistGraphQl
# Magento_WishlistGraphQl module

**WishlistGraphQl** provides type information for the GraphQl module
to generate wishlist fields.
The **Magento_WishlistGraphQl** module adds, removes, and updates products on the wishlist.

The **Magento_WishlistGraphQl** module extends **Magento_GraphQl** and **Magento_Wishlist** modules. The module provides type and resolver information for GraphQL API.

## Installation details

Before installing this module, note that the **Magento_WishlistGraphQl** is dependent on the following modules:

- Magento_Catalog
- Magento_Checkout
- Magento_Customer
- Magento_CustomerGraphQl
- Magento_Directory
- Magento_GiftMessage
- Magento_GraphQl
- Magento_Quote
- Magento_Sales
- Magento_Store

For information about enabling or disabling a module in Magento 2, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html).

## Extensibility

Extension developers can interact with the Magento_WishlistGraphQl module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html).

[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_WishlistGraphQl module.

## Additional information

For more information about the **Magento_WishlistGraphQl** [Queries](#queries) and [Mutations](#mutations) see below:

### Queries {#queries}

- [`wishlist`](https://devdocs.magento.com/guides/v2.4/graphql/queries/wishlist.html)

### Mutations {#mutations}

- [`addProductsToWishlist`](https://devdocs.magento.com/guides/v2.4/graphql/mutations/add-products-to-wishlist.html)
- [`removeProductsFromWishlist`](https://devdocs.magento.com/guides/v2.4/graphql/mutations/remove-products-from-wishlist.html)
- [`updateProductsInWishlist`](https://devdocs.magento.com/guides/v2.4/graphql/mutations/update-products-in-wishlist.html)