UNPKG
@cran/gql.reflect
Version:
latest (0.1.0)
0.1.0
0.0.3
0.0.2
Cranberry Introspection Utilities for GraphQL
@cran/gql.reflect
/
cjs
/
input
/
_Schema.d.ts
11 lines
(10 loc)
•
297 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
type
{ _Directive }
from
"./_Directive"
;
import
type
{ _Type }
from
"./_Type"
;
export
interface
_Schema {
description
:
string
|
null
;
types
:
Array
<_Type>;
queryType
: _Type;
mutationType
: _Type |
null
;
subscriptionType
: _Type |
null
;
directives
:
Array
<_Directive>; }