Sorting in Front-end API? #176
-
Hi, I couldn't find any documentation about sorting products using the Swell for Nuxt client. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
rodrigoddalmeida
Mar 14, 2023
Replies: 1 comment 2 replies
-
You can sort products by name, price on our Frontend APIs with the following:
await swell.products.list({
sort: "name asc, price asc",
});
query {
products(sort: "name asc, price asc") {
results {
...
}
}
} |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
rodrigoddalmeida
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can sort products by name, price on our Frontend APIs with the following: