Session Snapshot Management

Export & Import Session Sandbox

Save your complete sandboxed mutation state into a portable JSON snapshot or restore mock data across devices and team environments.

What is Snapshot Export & Import and Where is it Used?

When prototyping or building automated test suites, you often create complex mock states—such as multiple created posts, modified user profiles, and deleted task items.

Team Collaboration

Export your sandbox state into a JSON snapshot file and share it with frontend team members so everyone tests against the exact same mock data scenario.

Automated E2E Testing

Pre-load deterministic snapshot JSON files into Playwright or Cypress E2E test suites before running component tests.

Cross-Device Backup

Transfer session state between desktop browsers, mobile emulators, or postman workspaces effortlessly.

1. Export Session State

Download active overlay JSON

Generates a structured JSON file containing all created local records, updated rows, and deleted record IDs.

2. Restore State Snapshot

Import JSON payload state

Paste or load a JSON snapshot file into the editor below and click restore to apply the state to your session identity.

Format: JSON v1.0.0
Snapshot Payload (JSON)
1
{
2
"version": "1.0.0",
3
"timestamp": "2026-08-09T10:16:14.906Z",
4
"identity_id": "pg-identity-anon-session-abc123xyz",
5
"created_records": [
6
{
7
"resource": "posts",
8
"id": "local-f81d4fae-7dec-11d0-a765-00a0c91e6bf6",
9
"title": "E2E Testing Prototype Post",
10
"body": "Pre-seeded mock post payload for automated integration testing.",
11
"user_id": 1,
12
"created_at": "2026-08-09T10:16:14.906Z"
13
}
14
],
15
"updated_records": [],
16
"deleted_record_ids": []
17
}