Gadget's database stores session records by storing and retrieving each of the fields defined on the model in the Gadget Editor to a managed database. Gadget has generated a GraphQL type matching the configured fields for session:
1exporttypeSession={
2
3 __typename:'Session';
4
5/** The globally unique, unchanging identifier for this record. Assigned and managed by Gadget. */
6 id:string;
7
8/** The time at which this record was first created. Set once upon record creation and never changed. Managed by Gadget. */
9 createdAt: Date;
10
11/** The time at which this record was last changed. Set each time the record is successfully acted upon by an action. Managed by Gadget. */
12 updatedAt: Date;
13
14/** The current state this record is in. Changed by invoking actions. Managed by Gadget. */
Any fetched session record will have this same Session type, and expose the same data by default, regardless of where it comes from. This means you can select any of the record's fields wherever you like in a GraphQL query according to the use case at hand.
session for Session Storage and Authentication
The session powers session functionality for the example-app app. Sessions store transient data specific to one browser interacting with the application, like whether a banner message has been shown, or anything else that needs to be specific to each session someone has with example-app.
example-app uses session to power user authentication using actions on session
. Each user's current session is accessible using special GraphQL fields for querying and mutating. session are stored in the Gadget platform similarly to other models, but have this extra functionality for convenient access to the current session
.
Because of this, session does not have normal findOne, maybeFindOne, findMany, findFirst, maybeFindFirst, or create actions. The Gadget platform manages the lifecycle of session records, and uses cookies to associate them with browser requests as needed.
session can still be managed like other models using the
Internal API
.
Retrieving the current session record
The current session record for a request can be retrieved using the currentSession GraphQL field, or the .currentSession.get() JS client function. You can also return only some fields, or extra fields beyond what Gadget retrieves by default, using the select
option.
The findOne, maybeFindOne, findMany, findFirst, and maybeFindFirst record readers do not exist for session. If you need to change arbitrary records, or iterate the list of session, you can use the
Internal API
for session.
1const record =await api.currentSession.get();
2// => a string
3console.log(record.id);
4// => a state value like { "created": "loggedOut" }
session records are changed by invoking Actions. Action are the things that "do" stuff -- creating data, deleting data,
making API calls to other services, etc. Actions with a GraphQL API trigger each have one corresponding GraphQL mutation and a corresponding
function available in the API client libraries.
Actions for session are executed on the currentSession GraphQL field, or the .currentSession JS client ModelManager object. Each of these automatically refers to the session for the current browser session.
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.
session Log in via email
Input
Log in via email operates on the current session for the API client making a request. The Gadget platform manages which session is available, and no `id` parameter should be passed. The Log in via email action takes this input:
Log in via email returns data in the action result format, which includes the record if the action was successful. The fields returned for the record can be controlled with the select option.
1exporttypeLogInViaEmailSessionResult={
2 __typename:"LogInViaEmailSessionResult";
3
4 success:Scalars["Boolean"];
5
6 errors:ExecutionError[];
7
8 actionRun:Scalars["String"]|null;
9
10 session:Session|null;
11};
1typeLogInViaEmailSessionResult{
2success:Boolean!
3errors:[ExecutionError!]
4actionRun:String
5session:Session
6}
1export type LogInViaEmailSessionResult={
2__typename:"LogInViaEmailSessionResult";
3
4success:Scalars["Boolean"];
5
6errors:ExecutionError[];
7
8actionRun:Scalars["String"]|null;
9
10session:Session|null;
11};
session Log out
Input
Log out operates on the current session for the API client making a request. The Gadget platform manages which session is available, and no `id` parameter should be passed. The Log out action takes this input:
Log out returns data in the action result format, which includes the record if the action was successful. The fields returned for the record can be controlled with the select option.