-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgqlgen.yml
40 lines (39 loc) · 1.21 KB
/
gqlgen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# .gqlgen.yml example
#
# Refer to https://gqlgen.com/config/
# for detailed .gqlgen.yml documentation.
schema:
- schema.graphql
exec:
filename: generated.go
package: playground
model:
filename: model/models_gen.go
package: model
resolver:
filename: resolver.go
type: Resolver
autobind: []
models:
UUID:
model: github.com/onflow/flow-playground-api/model.UUID
Address:
model: github.com/onflow/flow-playground-api/model.Address
Version:
model: github.com/onflow/flow-playground-api/model.Version
Project:
model: github.com/onflow/flow-playground-api/model.Project
Account:
model: github.com/onflow/flow-playground-api/model.Account
TransactionTemplate:
model: github.com/onflow/flow-playground-api/model.TransactionTemplate
TransactionExecution:
model: github.com/onflow/flow-playground-api/model.TransactionExecution
ScriptTemplate:
model: github.com/onflow/flow-playground-api/model.ScriptTemplate
ScriptExecution:
model: github.com/onflow/flow-playground-api/model.ScriptExecution
ContractTemplate:
model: github.com/onflow/flow-playground-api/model.ContractTemplate
ContractDeployment:
model: github.com/onflow/flow-playground-api/model.ContractDeployment