Skip to content

Instantly share code, notes, and snippets.

View 9renpoto's full-sized avatar

Keisuke Umeno 9renpoto

View GitHub Profile
@9renpoto
9renpoto / Keisuke Umeno's GitHub Stats
Last active November 1, 2025 00:36
github status
⭐ Total Stars: 20
➕ Total Commits: 11,202
🔀 Total PRs: 2,768
🚩 Total Issues: 1,815
📦 Contributed to: 2
🌞 Morning 467 commits ████████▏░░░░░░░░░░░░ 39.1%
🌆 Daytime 400 commits ███████░░░░░░░░░░░░░░ 33.5%
🌃 Evening 305 commits █████▎░░░░░░░░░░░░░░░ 25.5%
🌙 Night 22 commits ▍░░░░░░░░░░░░░░░░░░░░ 1.8%
Dart 1 hr 37 mins ████▏░░░░░░░░░░░░░░░░ 19.7%
Markdown 1 hr 11 mins ██▉░░░░░░░░░░░░░░░░░░ 14.3%
Ruby 1 hr 5 mins ██▊░░░░░░░░░░░░░░░░░░ 13.2%
Other 1 hr 5 mins ██▊░░░░░░░░░░░░░░░░░░ 13.2%
Bash 32 mins █▎░░░░░░░░░░░░░░░░░░░ 6.5%
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
})