mirror of
https://github.com/datarhei/core.git
synced 2025-09-27 04:16:25 +08:00
12 lines
225 B
Go
12 lines
225 B
Go
package api
|
|
|
|
type GraphQuery struct {
|
|
Query string `json:"query"`
|
|
Variables interface{} `json:"variables"`
|
|
}
|
|
|
|
type GraphResponse struct {
|
|
Data interface{} `json:"data"`
|
|
Errors []interface{} `json:"errors"`
|
|
}
|