mirror of
https://github.com/aljazceru/landscape-template.git
synced 2026-01-16 21:04:22 +01:00
- change rows shown on products page & change the api - restyle sort by - rebuild navigation menus - fix issues with donation stats & donate card - update products header link & date of hackathon
39 lines
451 B
GraphQL
39 lines
451 B
GraphQL
query ExploreProjects {
|
|
hottestProjects(take: 10, skip: 0) {
|
|
id
|
|
title
|
|
thumbnail_image
|
|
votes_count
|
|
category {
|
|
title
|
|
id
|
|
}
|
|
}
|
|
|
|
newProjects {
|
|
id
|
|
title
|
|
thumbnail_image
|
|
votes_count
|
|
category {
|
|
title
|
|
id
|
|
}
|
|
}
|
|
|
|
allCategories {
|
|
id
|
|
title
|
|
project {
|
|
id
|
|
thumbnail_image
|
|
title
|
|
votes_count
|
|
category {
|
|
title
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|