# 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.md) | 简体中文 ## 功能特点 - 纯 Typescript 生成,无需维护 graphql 文件 - 无依赖 ## TODO - [ ] 支持同时生成 proto 文件(grpc 用) - [ ] 支持 webapck 打包发布 ## @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! } ```