This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
backend/internal/graphql/generated/models.go

33 lines
710 B
Go
Raw Normal View History

2021-03-06 10:54:55 +00:00
// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
package generated
import (
2022-09-20 16:46:47 +00:00
"gitea.dwysokinski.me/zdam-egzamin-zawodowy/backend/internal/model"
2021-03-06 10:54:55 +00:00
)
type ProfessionList struct {
2021-07-14 04:58:10 +00:00
Total int `json:"total"`
Items []*model.Profession `json:"items"`
2021-03-06 10:54:55 +00:00
}
type QualificationList struct {
2021-07-14 04:58:10 +00:00
Total int `json:"total"`
Items []*model.Qualification `json:"items"`
2021-03-06 10:54:55 +00:00
}
type QuestionList struct {
2021-07-14 04:58:10 +00:00
Total int `json:"total"`
Items []*model.Question `json:"items"`
2021-03-06 10:54:55 +00:00
}
type UserList struct {
2021-07-14 04:58:10 +00:00
Total int `json:"total"`
Items []*model.User `json:"items"`
2021-03-06 10:54:55 +00:00
}
2021-03-06 11:29:33 +00:00
type UserWithToken struct {
2021-07-14 04:58:10 +00:00
Token string `json:"token"`
User *model.User `json:"user"`
2021-03-06 11:29:33 +00:00
}