portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
44 lines (41 loc) • 804 B
text/typescript
import gql from 'graphql-tag';
export const FORYOUITEMS = gql`
query ForYouItems($locale: String) {
forYouItemCollection(locale: $locale, limit: 5) {
items {
image {
title
url
}
link
order
tags
title
categoryId
}
}
}
`;
export const DANCEFLOOR = gql`
query Dancefloor($locale: String) {
appHomeSection(id: "13j8nQ4MslIm1lZjLXbB0u", locale: $locale) {
title
itemsCollection(limit: 10) {
items {
... on AppDancefloorItem_cfContent {
image {
description
url
title
}
url
title
themeColor
subtitle
tag
}
}
}
}
}
`;