1. You are using the web version of Yasumu.

    The web version may not have all the features of the native version. Please use the native version for the best experience.

Requests
query GetProductList($term: String, $take: Int) {
products(
options: {
take: $take
filter: { name: { contains: $term } }
sort: { name: ASC }
}
) {
totalItems
items {
id
name
slug
featuredAsset {
preview
mimeType
width
height
}
}
}
}
NameValueActions
status