Files
landscape-template/src/features/Projects/pages/ExplorePage/ProjectsSection/exploreProjects.graphql
MTG2000 e49b0dafe6 fix: fixing some QA issues
- 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
2022-05-27 10:50:25 +03:00

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
}
}
}
}