Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 7 additions & 3 deletions src/pages/graphql/schema/catalog-service/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ keywords:
- Services
---

# Catalog Service for Adobe Commerce
# Catalog Service GraphQL Schema for Adobe Commerce

The Catalog Service for Adobe Commerce extension contributes to a services-only GraphQL schema that contains queries that return specialized catalog data that is not available in the [core GraphQL schema](../index.md). The queries in this schema allow Commerce merchants to quickly and fully render product-related content on the storefront, including product detail pages and product list pages.
The Catalog Service extension for Adobe Commerce contributes to a services-only GraphQL schema that contains queries that return specialized catalog data that is not available in the built-in GraphQL functionality provided in Adobe Commerce and Magento Open Source. The queries in this schema allow Commerce merchants to quickly and fully render product-related content on the storefront, including product detail pages and product list pages.

You can optionally implement [API Mesh for Adobe Developer App Builder](https://developer.adobe.com/graphql-mesh-gateway/) to integrate the core and Catalog Service GraphQL schemas with private and third-party APIs, as well as other software interfaces. The mesh can be configured to ensure that calls routed to each endpoint contain the correct authorization information in the headers.

The [Catalog Service Guide](https://experienceleague.adobe.com/en/docs/commerce/catalog-service/overview) describes the architecture and implementation of this product.
For instructions on how to install, implement, and use the Catalog Service, see the [Catalog Service Guide](https://experienceleague.adobe.com/en/docs/commerce/catalog-service/overview).

>[!NOTE]
>
>If your Commerce instance uses Live Search or Product Recommendations, the Catalog Service is installed and updated automatically when you onboard or update those services. If you are using Adobe Commerce as a Cloud Service, the latest version of the Catalog Service metapackage is available in your environment. To begin using the service, see [Getting started with the Catalog Service](https://experienceleague.adobe.com/en/docs/commerce/catalog-service/get-started).
7 changes: 4 additions & 3 deletions src/pages/graphql/schema/live-search/index.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
---
title: Live Search
description: Learn how Live Search implements GraphQL.
description: Explore the Live Search GraphQL schema, learn how to query catalog data through its endpoint, test requests, and troubleshoot common error codes.

keywords:
- GraphQL
- Services
- Search
---

# Live Search
# Live Search GraphQL Schema Reference

Live Search is a set of standalone packages for Adobe Commerce that replaces the standard search capabilities. It provides GraphQL functionality that is currently separate from the built-in GraphQL functionality provided in Adobe Commerce and Magento Open Source. Live Search GraphQL requires connecting to a different endpoint and specifying a different set of HTTP headers.

Expand All @@ -17,7 +18,7 @@ You can connect to the Live Search GraphQL endpoint to test sample queries using

- Through a standalone version of GraphQL Playground, or any other IDE, such as GraphiQL or Postman. In these applications you must specify the endpoint URL and provide a set of HTTP headers for each call.

For instructions on how to install and implement this product, see [Introduction to Live Search](https://experienceleague.adobe.com/en/docs/commerce/live-search/overview).
For instructions on how to install, implement, and use the Live Search service, see [Introduction to Live Search](https://experienceleague.adobe.com/en/docs/commerce/live-search/overview).

## Error Codes

Expand Down
8 changes: 4 additions & 4 deletions src/pages/graphql/schema/product-recommendations/index.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
title: Product Recommendations
description: Learn how Product Recommendations implements GraphQL.
description: Explore the Product Recommendations GraphQL schema. Learn how to query catalog data through its endpoint, test requests, and troubleshoot common error codes.
keywords:
- GraphQL
- Services
---

# Product Recommendations
# Product Recommendations GraphQL Schema Reference

Product Recommendations is a service that suggests products based on the browsing patterns of other shoppers. Product recommendations are surfaced on the storefront as units with labels, such as "Customers who viewed this product also viewed" or "Customers who bought this product also bought". You can create, manage, and deploy recommendations across your store views directly from the Adobe Commerce Admin.
The Product Recommendations service suggests products based on the browsing patterns of other shoppers. Product recommendations are surfaced on the storefront as units with labels, such as "Customers who viewed this product also viewed" or "Customers who bought this product also bought". You can create, manage, and deploy recommendations across your store views directly from the Adobe Commerce Admin. For headless storefronts, use the Product Recommendations GraphQL query to retrieve recommendation blocks for a given SKU and render them in your storefront.

The `recommendations` query returns recommended products based on the provided SKU.

Read more in the [Introduction to Product Recommendations](https://experienceleague.adobe.com/en/docs/commerce/product-recommendations/overview).
For instructions on how to install, implement, and use the Product Recommendations service, see [Introduction to Product Recommendations](https://experienceleague.adobe.com/en/docs/commerce/product-recommendations/overview).
Loading