Skip to content

SKNCRE Product routes

The SKNCRE cosmetics brand content is served by GraphQL. Please visit the playground to explore.

Terminal window
POST /api/graphql/skncre

Query examples

Get all products

Get a list of all products in the API with the relevant details. See an example of this query in the playground

query MyQuery {
products {
description
id
ingredients
name
price
shortDescription
slug
stock
images {
url
alt
}
}
}

Get a product by ID or slug

Get a single product by ID or slug. See an example of this query in the playground

query MyQuery {
product(id: "2") {
description
id
ingredients
name
price
shortDescription
slug
stock
}
}