const { ApolloServer, gql } = require('apollo-server-koa')
const typeDefs = gql`
type Query {
hello: String
}
`
上面的 gql+字符串模板,是个什么.
1
wszgrcy 2019-11-25 15:24:30 +08:00 via Android 1
标签模板
|
2
IsaacYoung 2019-11-25 15:26:30 +08:00
函数调用
|
3
optional 2019-11-25 15:34:43 +08:00
你再来个 console.log(typeDefs)就明白了
|
4
ipwx 2019-11-25 15:38:36 +08:00 1
|
5
ayase252 2019-11-25 15:39:30 +08:00 1
tagged template literals
|