从我的graphQL模式生成TS接口时遇到问题。 我的代码:
export const userTypeDefs = gql`
input SignUpRequestInput {
name: String!
password: String!
role: Int!
}
interface SomeInter {
name: String!
}
type Mutation {
createUser(request: SignUpRequestInput): SomeInter
}
`;
当我在graphql操场上运行服务器时,我可以同时看到SignUpRequestInput
输入和SomeInter
界面,但是当我运行graphql-codegen
脚本时,它只会生成SignUpRequestInput
界面并且省略SomeInter
我正在运行的脚本:
graphql-codegen --config codegen.yml
codegen.yml:
overwrite: true
schema: 'http://localhost:4000/graphql'
documents: null
generates:
src/interfaces/generated.ts:
plugins:
- 'typescript'
config:
skipTypename: true
declarationKind:
type: 'interface'
input: 'interface'
interface: 'interface'
有人知道我在做什么错吗? 谢谢