1
Fork 0
photoview/api/gqlgen.yml

31 lines
655 B
YAML
Raw Normal View History

2020-01-30 14:28:14 +01:00
# .gqlgen.yml example
#
# Refer to https://gqlgen.com/config/
# for detailed .gqlgen.yml documentation.
schema:
- graphql/schema.graphql
2020-02-01 00:08:23 +01:00
2020-01-30 14:28:14 +01:00
exec:
filename: graphql/generated.go
2020-02-01 00:08:23 +01:00
2020-01-30 14:28:14 +01:00
model:
2020-02-01 00:08:23 +01:00
filename: graphql/models/generated.go
package: models
2020-01-30 14:28:14 +01:00
resolver:
2020-02-05 14:51:46 +01:00
filename: graphql/resolvers/root.go
2020-01-30 14:28:14 +01:00
type: Resolver
2020-02-01 00:08:23 +01:00
2020-01-30 14:28:14 +01:00
autobind: []
2020-02-01 00:08:23 +01:00
2020-01-31 23:30:34 +01:00
models:
User:
model: github.com/viktorstrate/photoview/api/graphql/models.User
2020-02-05 14:51:46 +01:00
Photo:
model: github.com/viktorstrate/photoview/api/graphql/models.Photo
PhotoURL:
model: github.com/viktorstrate/photoview/api/graphql/models.PhotoURL
2020-02-05 16:14:21 +01:00
Album:
model: github.com/viktorstrate/photoview/api/graphql/models.Album