You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyGraphqlPost.java
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyGraphqlPostString.java
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/error/GraphQLErrorObject.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@
110
110
publicinterfaceGraphQLErrorObject {
111
111
112
112
/**
113
-
* <p>Error identifier.</p>
113
+
* <p>One of the error codes that is listed on the Errors page.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/error/GraphQLErrorObjectImpl.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ public GraphQLErrorObjectImpl() {
43
43
}
44
44
45
45
/**
46
-
* <p>Error identifier.</p>
46
+
* <p>One of the error codes that is listed on the Errors page.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/error/GraphQLInsufficientScopeErrorImpl.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ public GraphQLInsufficientScopeErrorImpl() {
43
43
}
44
44
45
45
/**
46
-
* <p>Error identifier.</p>
46
+
* <p>One of the error codes that is listed on the Errors page.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/error/GraphQLInvalidSubjectErrorImpl.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ public GraphQLInvalidSubjectErrorImpl() {
43
43
}
44
44
45
45
/**
46
-
* <p>Error identifier.</p>
46
+
* <p>One of the error codes that is listed on the Errors page.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/error/GraphQLInvalidTokenErrorImpl.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ public GraphQLInvalidTokenErrorImpl() {
43
43
}
44
44
45
45
/**
46
-
* <p>Error identifier.</p>
46
+
* <p>One of the error codes that is listed on the Errors page.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/graph_ql/GraphQLError.java
+11-11
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
importjakarta.validation.constraints.NotNull;
19
19
20
20
/**
21
-
* GraphQLError
21
+
* <p>Contains an error message, the location of the code that caused the error, and other information to help you correct the error.</p>
22
22
*
23
23
* <hr>
24
24
* Example to create an instance using the builder pattern
@@ -37,15 +37,15 @@
37
37
publicinterfaceGraphQLError {
38
38
39
39
/**
40
-
*
40
+
* <p>Detailed description of the error explaining the root cause of the problem and suggesting how to correct the error.</p>
41
41
* @return message
42
42
*/
43
43
@NotNull
44
44
@JsonProperty("message")
45
45
publicStringgetMessage();
46
46
47
47
/**
48
-
*
48
+
* <p>Location within your query where the error occurred.</p>
49
49
* @return locations
50
50
*/
51
51
@NotNull
@@ -54,15 +54,15 @@ public interface GraphQLError {
54
54
publicList<GraphQLErrorLocation> getLocations();
55
55
56
56
/**
57
-
*
57
+
* <p>Query fields listed in order from the root of the query response up to the field in which the error occurred. <code>path</code> is displayed in the response only if an error is associated with a particular field in the query result.</p>
58
58
* @return path
59
59
*/
60
60
61
61
@JsonProperty("path")
62
62
publicList<Object> getPath();
63
63
64
64
/**
65
-
* <p>Represents a single error.</p>
65
+
* <p>Dictionary with additional information where applicable.</p>
66
66
* @return extensions
67
67
*/
68
68
@NotNull
@@ -71,44 +71,44 @@ public interface GraphQLError {
71
71
publicGraphQLErrorObjectgetExtensions();
72
72
73
73
/**
74
-
* set message
74
+
* <p>Detailed description of the error explaining the root cause of the problem and suggesting how to correct the error.</p>
75
75
* @param message value to be set
76
76
*/
77
77
78
78
publicvoidsetMessage(finalStringmessage);
79
79
80
80
/**
81
-
* set locations
81
+
* <p>Location within your query where the error occurred.</p>
* <p>Query fields listed in order from the root of the query response up to the field in which the error occurred. <code>path</code> is displayed in the response only if an error is associated with a particular field in the query result.</p>
97
97
* @param path values to be set
98
98
*/
99
99
100
100
@JsonIgnore
101
101
publicvoidsetPath(finalObject... path);
102
102
103
103
/**
104
-
* set path
104
+
* <p>Query fields listed in order from the root of the query response up to the field in which the error occurred. <code>path</code> is displayed in the response only if an error is associated with a particular field in the query result.</p>
105
105
* @param path values to be set
106
106
*/
107
107
108
108
publicvoidsetPath(finalList<Object> path);
109
109
110
110
/**
111
-
* <p>Represents a single error.</p>
111
+
* <p>Dictionary with additional information where applicable.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/graph_ql/GraphQLErrorBuilder.java
+17-17
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ public class GraphQLErrorBuilder implements Builder<GraphQLError> {
* <p>Detailed description of the error explaining the root cause of the problem and suggesting how to correct the error.</p>
40
40
* @param message value to be set
41
41
* @return Builder
42
42
*/
@@ -47,7 +47,7 @@ public GraphQLErrorBuilder message(final String message) {
47
47
}
48
48
49
49
/**
50
-
* set values to the locations
50
+
* <p>Location within your query where the error occurred.</p>
51
51
* @param locations value to be set
52
52
* @return Builder
53
53
*/
@@ -59,7 +59,7 @@ public GraphQLErrorBuilder locations(
59
59
}
60
60
61
61
/**
62
-
* set value to the locations
62
+
* <p>Location within your query where the error occurred.</p>
63
63
* @param locations value to be set
64
64
* @return Builder
65
65
*/
@@ -71,7 +71,7 @@ public GraphQLErrorBuilder locations(
71
71
}
72
72
73
73
/**
74
-
* add values to the locations
74
+
* <p>Location within your query where the error occurred.</p>
75
75
* @param locations value to be set
76
76
* @return Builder
77
77
*/
@@ -86,7 +86,7 @@ public GraphQLErrorBuilder plusLocations(
86
86
}
87
87
88
88
/**
89
-
* add the value to the locations using the builder function
89
+
* <p>Location within your query where the error occurred.</p>
90
90
* @param builder function to build the locations value
91
91
* @return Builder
92
92
*/
@@ -102,7 +102,7 @@ public GraphQLErrorBuilder plusLocations(
102
102
}
103
103
104
104
/**
105
-
* set the value to the locations using the builder function
105
+
* <p>Location within your query where the error occurred.</p>
106
106
* @param builder function to build the locations value
107
107
* @return Builder
108
108
*/
@@ -116,7 +116,7 @@ public GraphQLErrorBuilder withLocations(
116
116
}
117
117
118
118
/**
119
-
* add the value to the locations using the builder function
119
+
* <p>Location within your query where the error occurred.</p>
120
120
* @param builder function to build the locations value
121
121
* @return Builder
122
122
*/
@@ -127,7 +127,7 @@ public GraphQLErrorBuilder addLocations(
127
127
}
128
128
129
129
/**
130
-
* set the value to the locations using the builder function
130
+
* <p>Location within your query where the error occurred.</p>
131
131
* @param builder function to build the locations value
132
132
* @return Builder
133
133
*/
@@ -138,7 +138,7 @@ public GraphQLErrorBuilder setLocations(
138
138
}
139
139
140
140
/**
141
-
* set values to the path
141
+
* <p>Query fields listed in order from the root of the query response up to the field in which the error occurred. <code>path</code> is displayed in the response only if an error is associated with a particular field in the query result.</p>
142
142
* @param path value to be set
143
143
* @return Builder
144
144
*/
@@ -149,7 +149,7 @@ public GraphQLErrorBuilder path(@Nullable final java.lang.Object... path) {
149
149
}
150
150
151
151
/**
152
-
* set value to the path
152
+
* <p>Query fields listed in order from the root of the query response up to the field in which the error occurred. <code>path</code> is displayed in the response only if an error is associated with a particular field in the query result.</p>
153
153
* @param path value to be set
154
154
* @return Builder
155
155
*/
@@ -160,7 +160,7 @@ public GraphQLErrorBuilder path(@Nullable final java.util.List<java.lang.Object>
160
160
}
161
161
162
162
/**
163
-
* add values to the path
163
+
* <p>Query fields listed in order from the root of the query response up to the field in which the error occurred. <code>path</code> is displayed in the response only if an error is associated with a particular field in the query result.</p>
164
164
* @param path value to be set
165
165
* @return Builder
166
166
*/
@@ -174,7 +174,7 @@ public GraphQLErrorBuilder plusPath(@Nullable final java.lang.Object... path) {
174
174
}
175
175
176
176
/**
177
-
* <p>Represents a single error.</p>
177
+
* <p>Dictionary with additional information where applicable.</p>
178
178
* @param extensions value to be set
179
179
* @return Builder
180
180
*/
@@ -185,7 +185,7 @@ public GraphQLErrorBuilder extensions(final com.commercetools.api.models.error.G
185
185
}
186
186
187
187
/**
188
-
* <p>Represents a single error.</p>
188
+
* <p>Dictionary with additional information where applicable.</p>
189
189
* @param builder function to build the extensions value
190
190
* @return Builder
191
191
*/
@@ -197,7 +197,7 @@ public GraphQLErrorBuilder extensions(
197
197
}
198
198
199
199
/**
200
-
* value of message}
200
+
* <p>Detailed description of the error explaining the root cause of the problem and suggesting how to correct the error.</p>
201
201
* @return message
202
202
*/
203
203
@@ -206,7 +206,7 @@ public String getMessage() {
206
206
}
207
207
208
208
/**
209
-
* value of locations}
209
+
* <p>Location within your query where the error occurred.</p>
210
210
* @return locations
211
211
*/
212
212
@@ -215,7 +215,7 @@ public java.util.List<com.commercetools.api.models.graph_ql.GraphQLErrorLocation
215
215
}
216
216
217
217
/**
218
-
* value of path}
218
+
* <p>Query fields listed in order from the root of the query response up to the field in which the error occurred. <code>path</code> is displayed in the response only if an error is associated with a particular field in the query result.</p>
219
219
* @return path
220
220
*/
221
221
@@ -225,7 +225,7 @@ public java.util.List<java.lang.Object> getPath() {
225
225
}
226
226
227
227
/**
228
-
* <p>Represents a single error.</p>
228
+
* <p>Dictionary with additional information where applicable.</p>
0 commit comments