forked from graphql-java/graphql-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExecutionInput.java
More file actions
95 lines (76 loc) · 2.31 KB
/
ExecutionInput.java
File metadata and controls
95 lines (76 loc) · 2.31 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package graphql;
import java.util.Collections;
import java.util.Map;
@PublicApi
public class ExecutionInput {
private final String query;
private final String operationName;
private final Object context;
private final Object root;
private final Map<String, Object> variables;
public ExecutionInput(String query, String operationName, Object context, Object root, Map<String, Object> variables) {
this.query = query;
this.operationName = operationName;
this.context = context;
this.root = root;
this.variables = variables;
}
public String getQuery() {
return query;
}
public String getOperationName() {
return operationName;
}
public Object getContext() {
return context;
}
public Object getRoot() {
return root;
}
public Map<String, Object> getVariables() {
return variables;
}
@Override
public String toString() {
return "ExecutionInput{" +
"query='" + query + '\'' +
", operationName='" + operationName + '\'' +
", context=" + context +
", root=" + root +
", variables=" + variables +
'}';
}
public static Builder newExecutionInput() {
return new Builder();
}
public static class Builder {
private String query;
private String operationName;
private Object context;
private Object root;
private Map<String, Object> variables = Collections.emptyMap();
public Builder query(String query) {
this.query = query;
return this;
}
public Builder operationName(String operationName) {
this.operationName = operationName;
return this;
}
public Builder context(Object context) {
this.context = context;
return this;
}
public Builder root(Object root) {
this.root = root;
return this;
}
public Builder variables(Map<String, Object> variables) {
this.variables = variables;
return this;
}
public ExecutionInput build() {
return new ExecutionInput(query, operationName, context, root, variables);
}
}
}