datarhei-dragonfork-core/http/api/graph.go

12 lines
225 B
Go
Raw Permalink Normal View History

2022-05-13 13:26:45 -04:00
package api
type GraphQuery struct {
Query string `json:"query"`
Variables interface{} `json:"variables"`
}
type GraphResponse struct {
Data interface{} `json:"data"`
Errors []interface{} `json:"errors"`
}