Revision 0295177bb00dadfc68d0f5df26104a6d06e751f8 authored by Yaelle Chaudy on 13 October 2022, 08:58:07 UTC, committed by GitHub on 13 October 2022, 08:58:07 UTC
* Added nextPageToken prop

* Adding first and pageToken condition to while loop

* clean up

* revert gitignore

* fix go lint

* Added logic to builder too

* Removed pageSize - was for local testing

* gofmt

* extracted doRequest function

* extracted doRequest in query too

* Adressed filter comments

* Adressed query comments

* go fmt

* removed pageSize added for testing

* go fmt again
1 parent b9d4495
Raw File
embed.go
package grafana

import (
	"embed"
)

// CueSchemaFS embeds all schema-related CUE files in the Grafana project.
//
//go:embed cue.mod/module.cue packages/grafana-schema/src/schema/*.cue public/app/plugins/*/*/*.cue public/app/plugins/*/*/plugin.json pkg/framework/coremodel/*.cue
var CueSchemaFS embed.FS
back to top