3.2.0 • Published 3 years ago

@notadd/cli v3.2.0

Weekly downloads
3
License
ISC
Repository
-
Last release
3 years ago

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

3 years ago

3.1.16

3 years ago

3.1.3

4 years ago

3.1.2

4 years ago

2.1.34

4 years ago

2.1.35

4 years ago

2.1.27

4 years ago

2.1.25

4 years ago

2.1.26

4 years ago

2.1.23

4 years ago

2.1.24

4 years ago

2.1.29

4 years ago

2.1.32

4 years ago

2.1.33

4 years ago

2.1.30

4 years ago

1.1.23

4 years ago

2.1.31

4 years ago

1.1.22

4 years ago

1.1.21

4 years ago

1.1.20

4 years ago

1.1.19

4 years ago

1.1.18

4 years ago

1.1.17

4 years ago

1.1.12

4 years ago

1.1.16

4 years ago

1.1.15

4 years ago

1.1.14

4 years ago

1.1.13

4 years ago

1.1.11

4 years ago

1.1.10

4 years ago

1.1.9

4 years ago

1.1.8

4 years ago

1.1.6

4 years ago

1.1.5

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.5

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago

2.0.6

6 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago