Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add error code 900424 #8209

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions en/docs/troubleshooting/error-handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,24 @@ Given below are some error codes and their meanings.
</tr>
</thead>
<tbody>
<tr class="odd">
<tr class="even">
<td><code>700700</code></td>
<td>API blocked</td>
<td>This API has been blocked temporarily. Please try again later or contact the system administrators.</td>
<td>Invoke an API which is in the <strong>BLOCKED</strong> lifecycle state</td>
</tr>
<tr class="even">
<tr class="odd">
<td><code>900422</code></td>
<td>Invalid GraphQL query</td>
<td>Syntax of the provided GraphQL query is invalid</td>
<td>Invoking a GraphQL API which has a invalid query</td>
</tr>
<tr class="even">
<td><code>900424</code></td>
<td>Temporary Server Error</td>
<td>Server has encountered an error. Please try again.</td>
<td>Invoking a protected backend with an invalid Oauth 2.0 backend token.</td>
</tr>
<tr class="odd">
<td> <code>900800</code> </td>
<td>Message throttled out</td>
Expand Down