内容简介:1.0 特性 纯打字稿生成,无需维护 graphql 文件 没有依赖关系 @notadd/cli a simple tool to generate graphql for @nestjs/graphql install npm i -g @notadd/cli use notadd graphql -i main.ts // ...
1.0 特性
- 纯打字稿生成,无需维护 graphql 文件
- 没有依赖关系
@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!
}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
在线进制转换器
各进制数互转换器
HEX CMYK 转换工具
HEX CMYK 互转工具