Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Vetrivel-VP/d306f6886265106ad11c2d4cb925cf51 to your computer and use it in GitHub Desktop.
Save Vetrivel-VP/d306f6886265106ad11c2d4cb925cf51 to your computer and use it in GitHub Desktop.
Graph QL - Sanity Schema Data Fetch Query
export const fetchQuery = `*[_type == 'products'] | order(_createdAt desc){
_id,
title,
productType,
mainImage {
asset -> {
url
}
},
bgImage {
asset -> {
url
}
},
shortDescription,
description,
price,
categories[] -> {
_id,
title,
mainImage {
asset -> {
url
}
},
}
}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment