-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuery.graphqls
More file actions
72 lines (58 loc) · 971 Bytes
/
Query.graphqls
File metadata and controls
72 lines (58 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
schema {
query: Query
}
# This is just here to have a root query type
# this is not functional
type Query {
signalSearch(SignalQuery: SignalQuery): [Signal]!
echo(input: String)String!
}
type Signal {
id:Int!
timestamp:String!
name:String!
vars:[Variable]
}
input SignalQuery {
fromDateTime:String!
toDateTime:String!
sortBy:SortType!
limit:Int!
signalIds:[Int]
entities:[String]
varCriterias:[VarCriteria]
}
enum SortType {
TIMEDESC
TIMEASC
ENTITY
}
enum DataType {
BOOLEAN
STRING
FLOAT
INTEGER
}
enum Operator {
GREATERTHAN
LESSTHAN
EQUALTO
NOTEQUAL
}
input VarCriteria {
varId:Int!
operator:Operator!
dataType:DataType!
intValue:Int
floatValue:Float
stringValue:String
booleanValue:Boolean
}
type Variable {
id:Int!
dataType:DataType!
intValue:Int
floatValue:Float
stringValue:String
booleanValue:Boolean
}