# notadd-cli **Repository Path**: notadd/notadd-cli ## Basic Information - **Project Name**: notadd-cli - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2019-12-09 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README English | [简体中文](README_zh.md) ## Features - Pure typescript generation, no need to maintain graphql files - No dependencies ## TODO - [ ] Supports simultaneous generation of proto files (for grpc) - [ ] Support webapck package release ## @notadd/cli > a simple tool to generate graphql for @nestjs/graphql ##### install ```sh npm i -g @notadd/cli ``` ##### use ```ts notadd graphql -i main.ts // input file default `main.ts` -o notadd.graphql // output file default `notadd.graphql` ``` ##### demo.ts and run `notadd graphql` ```ts import { Resolver, Query } from "@nestjs/graphql"; export interface List { data: T[]; currentPage: number; pageSize: number; total: number; } export interface User { username: string; } export interface Article { title: string; } @Resolver() export class DemoResolver { @Query() getUser(): List { return {} as any; } @Query() getArticles(): List
{ return {} as any; } } ``` ```graphql type User { username: String! } type UserList { data: [User]! currentPage: Int! pageSize: Int! total: Int! } type Article { title: String! } type ArticleList { data: [Article]! currentPage: Int! pageSize: Int! total: Int! } type Query { getUser: UserList! getArticles: ArticleList! } ```