Use embed for all graphql files sources
- 主要语言
- Go
- 星标
- 10.8k
- 派生
- 1.3k
- 平均合并
- 2 天 36 分钟
- 30 天内合并 PR
- 26
描述
@vikstrous Now that I have tried to solve https://github.com/99designs/gqlgen/issues/2196 by myself I have realized that you are only using embed for the first file in the list of possible graphql files of the config `schema` field.
Can you try adding another in your project (maybe even using the glob way) and check that it's not just me?
Like my one:
```yml
schema:
- schema/*.graphql
- ../../pkg/**/gqlgen/schema/*.graphql
```
Just as an example, this is an exceprt of the generated.go file after your improvement:
```go
var sources = []*ast.Source{
{Name: "schema/schema.graphql", Input: sourceData("schema/schema.graphql"), BuiltIn: false},
{Name: "../../pkg/player/gqlgen/schema/player.graphql", Input: `type Player {
id: ID!
createdAt: Time!
name: String!
age: Int!
}
`, BuiltIn: false},
// and so on many other sources here...
```
贡献指南
评估
这个 Issue 还没有评估数据。