No content to show
User Activity
07-18-2024
Although the cart ID alone can not be used maliciously, it can when combined with other information. It is advised not to store cart IDs in a cookie for the following reasons. Storing sensitive information in cookies can expose it to security risks....
07-18-2024
The accepted solution works, but OP asked for Storefront API rather than the Admin API. Here is how you would query blogs in the Storefront API. query BlogPosts($query: String!) {
articles(query: $query, first: 10) {
edges {
node {
...
Have you tried changing the logout URI in your storefront settings? I am using Hydrogen, so I can access this setting like so: Hydrogen sales channel > storefront settings > customer account API > scroll down to "Application Setup". Here you can add ...
04-12-2024
Try this query: query GetVariantDetails($variantId: ID!) {
node(id: $variantId) {
... on ProductVariant {
id
title
priceV2 {
amount
currencyCode
}
product {
id
title
descrip...
04-12-2024
I have user authentication setup within my Hydrogen app. I have a page that needs to know if a user is signed in before navigating them to the next page. If the user is signed in, they are directed to checkout. But if the user is not logged in, they ...