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
/
report.ts
13 lines
(11 loc)
•
277 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import gql
from
'graphql-tag'
; export
const
REPORT_BETA
= gql` query
ReportBeta
(
$subscription
: SubscriptionInput!,
$reportInput
: ReportInput) {
subscription
(
input
:
$subscription
) {
report
(
input
:
$reportInput
) { htmlString json } } } `;