forked from onflow/flow-playground-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgqlgen.yml
38 lines (37 loc) · 1.15 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
# .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/dapperlabs/flow-playground-api/model.UUID
Address:
model: github.com/dapperlabs/flow-playground-api/model.Address
Version:
model: github.com/dapperlabs/flow-playground-api/model.Version
Project:
model: github.com/dapperlabs/flow-playground-api/model.Project
Account:
model: github.com/dapperlabs/flow-playground-api/model.Account
UpdateAccount:
model: github.com/dapperlabs/flow-playground-api/model.UpdateAccount
TransactionTemplate:
model: github.com/dapperlabs/flow-playground-api/model.TransactionTemplate
TransactionExecution:
model: github.com/dapperlabs/flow-playground-api/model.TransactionExecution
ScriptTemplate:
model: github.com/dapperlabs/flow-playground-api/model.ScriptTemplate
ScriptExecution:
model: github.com/dapperlabs/flow-playground-api/model.ScriptExecution