search: add expanded folders

This commit is contained in:
Daniel Lee
2017-11-17 15:30:21 +01:00
parent f47673ab5c
commit 7c74111187
4 changed files with 46 additions and 10 deletions

View File

@@ -54,15 +54,16 @@ type Query struct {
}
type FindPersistedDashboardsQuery struct {
Title string
OrgId int64
SignedInUser *models.SignedInUser
IsStarred bool
DashboardIds []int64
Type string
FolderId int64
Tags []string
Limit int
Title string
OrgId int64
SignedInUser *models.SignedInUser
IsStarred bool
DashboardIds []int64
Type string
FolderId int64
Tags []string
ExpandedFolders []int64
Limit int
Result HitList
}