码迷,mamicode.com
首页 > Web开发 > 详细

Nestjs Graphql

时间:2019-01-31 19:21:33      阅读:423      评论:0      收藏:0      [点我收藏+]

标签:ons   href   apollo   tool   graph   服务   git   doc   工作   

文档
工作示例

安装依赖:

npm i --save @nestjs/graphql apollo-server-express graphql-tools graphql

app.module.ts

import { Module } from '@nestjs/common';
// import { AppController } from './app.controller';
import { AppService } from './app.service';

import { GraphQLModule } from '@nestjs/graphql';
import { AppResolver } from './app.resolvers';

@Module({
  imports: [
    GraphQLModule.forRoot({
      typePaths: ['./**/*.graphql'],
    }),
  ],
  // controllers: [AppController],
  providers: [AppService, AppResolver],
})
export class AppModule {}

定义 typeDefs :

// app.graphql
type Query {
  hello: String
}

定义 resolvers :

// app.resolvers.ts
import { Query, Resolver } from '@nestjs/graphql';

@Resolver()
export class AppResolver {
  constructor() {}

  @Query()
  hello(): string {
    return 'hello nest.js';
  }
}

启动服务器,访问 http://localhost:5000/graphql

// 发送
query { hello }

// 返回
{
  "data": {
    "hello": "hello nest.js"
  }
}

Nestjs Graphql

标签:ons   href   apollo   tool   graph   服务   git   doc   工作   

原文地址:https://www.cnblogs.com/ajanuw/p/10343127.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!