Skip to content

Instantly share code, notes, and snippets.

⭐ Total Stars: 20
➕ Total Commits: 14,115
🔀 Total PRs: 3,490
🚩 Total Issues: 1,286
📦 Contributed to: 36
🌞 Morning 673 commits ███████▌░░░░░░░░░░░░░ 36.2%
🌆 Daytime 780 commits ████████▊░░░░░░░░░░░░ 41.9%
🌃 Evening 395 commits ████▍░░░░░░░░░░░░░░░░ 21.2%
🌙 Night 13 commits ▏░░░░░░░░░░░░░░░░░░░░ 0.7%
TypeScript 11 hrs 13 mins ███████████▍░░░░░░░░░ 54.6%
JavaScript 6 hrs 13 mins ██████▎░░░░░░░░░░░░░░ 30.3%
YAML 1 hr 56 mins █▉░░░░░░░░░░░░░░░░░░░ 9.4%
Other 19 mins ▎░░░░░░░░░░░░░░░░░░░░ 1.5%
Docker 14 mins ▏░░░░░░░░░░░░░░░░░░░░ 1.1%
import { GraphQLResolveInfo, GraphQLScalarType, GraphQLScalarTypeConfig } from 'graphql';
import gql from 'graphql-tag';
export type Maybe<T> = T | null;
export type RequireFields<T, K extends keyof T> = { [X in Exclude<keyof T, K>]?: T[X] } & { [P in K]-?: NonNullable<T[P]> };
/** All built-in and custom scalars, mapped to their actual values */
export type Scalars = {
ID: string,
String: string,
Boolean: boolean,
Int: number,
import { GraphQLResolveInfo, GraphQLScalarType, GraphQLScalarTypeConfig } from 'graphql';
import gql from 'graphql-tag';
export type Maybe<T> = T | null;
export type RequireFields<T, K extends keyof T> = { [X in Exclude<keyof T, K>]?: T[X] } & { [P in K]-?: NonNullable<T[P]> };
/** All built-in and custom scalars, mapped to their actual values */
export type Scalars = {
ID: string,
String: string,
Boolean: boolean,
Int: number,
import { join } from 'path'
import { GraphQLDefinitionsFactory } from '@nestjs/graphql'
const definitionsFactory = new GraphQLDefinitionsFactory()
definitionsFactory.generate({
typePaths: ['./src/schema.gql'],
path: join(process.cwd(), 'src/graphql.schema.ts'),
outputAs: 'interface',
})
@9renpoto
9renpoto / Likes.txt
Last active October 24, 2019 13:41
Likes
Beer/Sake ██████████████████░░
Ski/Snowboard █████████████████░░░
Overwatch/CoD ████████████████░░░░
English ██░░░░░░░░░░░░░░░░░░
Motorcycle █████████████░░░░░░░
Epic Music ████████████████████
@9renpoto
9renpoto / Skills
Last active January 13, 2020 08:44 — forked from BcRikko/Skills
(P)react / Next.js ██████████████████░░
GraphQL ███████████████░░░░░
CSS █████░░░░░░░░░░░░░░░
Node/ NestJS █████████████░░░░░░░
DynamicTyping ██░░░░░░░░░░░░░░░░░░
@9renpoto
9renpoto / file0.js
Last active January 17, 2020 15:34
アクティブでなさそうなSlackチャンネルにメッセージを送る ref: https://qiita.com/9renpoto/items/2b1aabb64957feca3995
const { channels } = await web.conversations.list({
exclude_archived: true
})