UNPKG
portal-www
Version:
beta (1.74.0)
latest (1.74.0)
1.74.0
Nova Portal Website. Based on Next starter by Ueno
portal-www
/
src
/
graphql
/
fragments
/
offer.ts
27 lines
(25 loc)
•
349 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import
gql
from
'graphql-tag'
;
export
const
offerFragment = gql`
fragment
OfferFragment
on
Offer
{
id name description thumbnail cover days link from to locations
{
coordinates
{
lat lon
}
area streetAddress
}
category usageLimit redeemMethod
}
`
;