This page documents all the root level mutations powered by Global actions in the example-app API.
Action Result format
Each API action returns results in the same format that includes a success indicator, errors, and the actual result if the action succeeded. The result is the record that was acted on for a model action, or a list of records for a bulk action, or a JSON blob for Global Actions. Model actions that delete the record don't return the record.
The success field returns a boolean indicating if the action executed as expected. Any execution errors are returned in the errors object, which will always be null if success is true or contain ExecutionError objects if success is false.
ExecutionError objects always have a message describing what error prevented the action from succeeding, as well as a code attribute that gives a stable, searchable, human-readable error class code for referencing this specific error. Details on each error code can be found in the Errors documentation. All ExecutionError object types returned by the GraphQL object can be one of many types of error, where some types have extra data that is useful for remedying the error. All error types will always have message and code properties, but some, like InvalidRecordError have extra fields for use by clients.
Errors when using the generated client
The generated JavaScript client automatically interprets errors from invoking actions and throws JavaScript Error instances if the action didn't succeed. The Error objects it throws are rich, and expose extra error properties beyond just message and code if they exist.
Errors thrown by the JavaScript client are easiest to catch by using a try/catch statement around an await, like so:
JavaScript
1import{
2GadgetOperationError,
3InvalidRecordError,
4}from"@gadgetinc/api-client-core";
5
6// must be in an async function to use await` syntax
7exportasyncfunctionrun({ api }){
8try{
9returnawait api.exampleModel.create({ name:"example record name"});
10}catch(error){
11if(error instanceofGadgetOperationError){
12// a recognized general error has occurred, retry the operation or inspect \error.code\`
13console.error(error);
14}elseif(error instanceofInvalidRecordError){
15// the submitted input data for the action was invalid, inspect the invalid fields which \`InvalidRecordError\` exposes
16console.error(error.validationErrors);
17}else{
18// an unrecognized error occurred like an HTTP connection interrupted error or a syntax error. Re-throw it because it's not clear what to do to fix it
19throw error;
20}
21}
22}
1import{
2GadgetOperationError,
3InvalidRecordError,
4}from"@gadgetinc/api-client-core";
5
6// must be in an async function to use await` syntax
7exportasyncfunctionrun({ api }){
8try{
9returnawait api.exampleModel.create({name:"example record name"});
10}catch(error){
11if(error instanceofGadgetOperationError){
12// a recognized general error has occurred, retry the operation or inspect \error.code\`
13console.error(error);
14}elseif(error instanceofInvalidRecordError){
15// the submitted input data for the action was invalid, inspect the invalid fields which \`InvalidRecordError\` exposes
16console.error(error.validationErrors);
17}else{
18// an unrecognized error occurred like an HTTP connection interrupted error or a syntax error. Re-throw it because it's not clear what to do to fix it
19throw error;
20}
21}
22}
For more information on error codes, consult the Errors documentation.