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
/
_Field.d.ts
10 lines
(9 loc)
•
268 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
type
{ _ }
from
"./_"
;
import
type
{ _InputField }
from
"./_InputField"
;
import
type
{ _Type }
from
"./_Type"
;
export
interface
_Field
extends
_ {
args
:
Array
<_InputField>;
type
: _Type;
isDeprecated
:
boolean
;
deprecationReason
:
string
|
null
; }