3.2.0 • Published 4 years ago
@notadd/cli v3.2.0
English | 简体中文
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
WARNING
- entry main ts like this, not support async/await
NestFactory.create(AppModule).then(app=>{
app.list(8080)
})
@notadd/cli
a simple tool to generate graphql for @nestjs/graphql
install
npm i -g @notadd/cli
use
notadd graphql
-i main.ts // input file default `main.ts`
-o notadd.graphql // output file default `notadd.graphql`
demo.ts and run notadd graphql
import { Resolver, Query } from "@nestjs/graphql";
export interface List<T> {
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<User> {
return {} as any;
}
@Query()
getArticles(): List<Article> {
return {} as any;
}
}
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!
}
3.2.0
4 years ago
3.1.16
4 years ago
3.1.3
5 years ago
3.1.2
5 years ago
2.1.34
5 years ago
2.1.35
5 years ago
2.1.27
5 years ago
2.1.25
5 years ago
2.1.26
5 years ago
2.1.23
5 years ago
2.1.24
5 years ago
2.1.29
5 years ago
2.1.32
5 years ago
2.1.33
5 years ago
2.1.30
5 years ago
1.1.23
5 years ago
2.1.31
5 years ago
1.1.22
5 years ago
1.1.21
5 years ago
1.1.20
5 years ago
1.1.19
5 years ago
1.1.18
5 years ago
1.1.17
5 years ago
1.1.12
5 years ago
1.1.16
5 years ago
1.1.15
5 years ago
1.1.14
5 years ago
1.1.13
5 years ago
1.1.11
5 years ago
1.1.10
5 years ago
1.1.9
5 years ago
1.1.8
5 years ago
1.1.6
5 years ago
1.1.5
5 years ago
1.1.3
5 years ago
1.1.2
5 years ago
1.1.1
6 years ago
1.1.0
6 years ago
1.0.9
6 years ago
1.0.8
6 years ago
1.0.7
6 years ago
1.0.5
6 years ago
1.0.2
6 years ago
1.0.1
6 years ago
1.0.0
6 years ago
1.0.4
6 years ago
1.0.3
6 years ago
0.0.3
7 years ago
0.0.2
7 years ago
0.0.1
7 years ago
2.0.6
7 years ago
2.0.5
7 years ago
2.0.4
7 years ago
2.0.3
7 years ago
2.0.2
7 years ago
2.0.1
7 years ago
2.0.0
7 years ago