I hereby claim:
- I am eljenso on github.
- I am eljenso (https://keybase.io/eljenso) on keybase.
- I have a public key ASCqH2Q3A4aSebOyVklktTO9iPEibb7s4ydD5llUyNbCvwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
interface IElement { | |
id: ID! | |
name: String! | |
parent: IElement | |
children(id: ID): [IElement!] | |
} | |
type Section implements IElement { | |
id: ID! | |
name: String! |
{ | |
"__schema": { | |
"queryType": { | |
"name": "Query" | |
}, | |
"mutationType": null, | |
"subscriptionType": null, | |
"types": [ | |
{ | |
"kind": "OBJECT", |
/* tslint:disable */ | |
import { GraphQLResolveInfo } from "graphql"; | |
export type Resolver<Result, Parent = any, Context = any, Args = any> = ( | |
parent: Parent, | |
args: Args, | |
context: Context, | |
info: GraphQLResolveInfo, | |
) => Promise<Result> | Result; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |