Skip to content

Instantly share code, notes, and snippets.

View buts101's full-sized avatar

Ashish Batajoo buts101

  • 10:50 (UTC +05:45)
View GitHub Profile
@kevinswiber
kevinswiber / graphql.json
Created August 19, 2022 01:26
GraphQL Introspection Example
{
"data": {
"__schema": {
"queryType": {
"name": "Root"
},
"mutationType": null,
"subscriptionType": null,
"types": [
{
import * as cdk from 'aws-cdk-lib';
import {
aws_ec2 as ec2,
aws_resourcegroups as resourcegroups,
}
from 'aws-cdk-lib'
import { Construct } from 'constructs';
// import * as sqs from 'aws-cdk-lib/aws-sqs';
import * as network from 'raindancers-network'