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
/
beta
/
graphql
/
queries
/
availableOffers.ts
20 lines
(18 loc)
•
336 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
import
gql
from
'graphql-tag'
; export const CONTRACT_AVAILABLE_OFFERS = gql` query ContractAvailableOffers($
input
: ContractInput!) { contractAvailableOffers(
input
: $
input
) { amount
id
description isAvailable length name reasons {
id
title } unit } } `;