Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var AllTag = []Tag{ TagGraphQL, TagDatabase, TagQuestion, }
Functions ¶
This section is empty.
Types ¶
type CyclicType ¶ added in v0.8.22
type CyclicType struct {
Id string `json:"id" dql:"uid"`
Name string `json:"name" dql:"CyclicType.name"`
InverseType *InverseType `json:"inverseType" dql:"CyclicType.inverseType"`
}
type InverseType ¶ added in v0.8.22
type InverseType struct {
Id string `json:"id" dql:"uid"`
Name string `json:"name" dql:"InverseType.name"`
CyclicType *CyclicType `json:"cyclicType" dql:"InverseType.cyclicType"`
}
type User ¶
type User struct {
UserID string `json:"userID" dql:"User.userID"`
Credentials *models.Credentials `json:"credentials" dql:"User.credentials"`
Name string `json:"name" dql:"User.name"`
LastSignIn *time.Time `json:"lastSignIn" dql:"User.lastSignIn"`
RecentScores []float64 `json:"recentScores" dql:"User.recentScores"`
Likes int64 `json:"likes" dql:"User.likes"`
Reputation int64 `json:"reputation" dql:"User.reputation"`
Rank int64 `json:"rank" dql:"User.rank"`
Active bool `json:"active" dql:"User.active"`
}
Click to show internal directories.
Click to hide internal directories.