-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Many changes. Go files moved around, interpolate variables function w…
…ith test, retrodaredevil is organization, docker compose uses oss image
- Loading branch information
1 parent
f362766
commit 41ee7ca
Showing
20 changed files
with
290 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pkg/plugin/util/parsing_test.go → pkg/plugin/parsing/parsing_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package util | ||
package parsing | ||
|
||
import ( | ||
"bytes" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package querymodel | ||
|
||
// QueryModel represents data sent from the frontend to perform a query | ||
type QueryModel struct { | ||
QueryText string `json:"queryText"` | ||
// The name of the operation, or a blank string to let the GraphQL server infer the operation name | ||
OperationName string `json:"operationName"` | ||
// The variables for the operation. May either be a string or a map[string]interface{} | ||
Variables interface{} `json:"variables"` | ||
ParsingOptions []ParsingOption `json:"parsingOptions"` | ||
} | ||
|
||
type ParsingOption struct { | ||
// The path from the root to the array. This is dot-delimited | ||
DataPath string `json:"dataPath"` | ||
// the time path relative to the data path. | ||
TimePath string `json:"timePath"` | ||
} |
Oops, something went wrong.