Entries larger than 250,000 characters will be chunked. Be carefull when using together with the REST API.
Objects and arrays will be automatically stringified to be stored in AppsDb.
import { Showpad } from '@showpad/experience-app-sdk'import { v4 as uuidv4 } from 'uuid'type Contact = { name: string surname: string}const contact: Contact = { name: 'John', surname: 'Doe'}const appsDbEntries = await Showpad.setStoreEntryValue('Contacts', uuidv4(), contact) Copy
import { Showpad } from '@showpad/experience-app-sdk'import { v4 as uuidv4 } from 'uuid'type Contact = { name: string surname: string}const contact: Contact = { name: 'John', surname: 'Doe'}const appsDbEntries = await Showpad.setStoreEntryValue('Contacts', uuidv4(), contact)
Limited to 10Mb (10,000,000 characters)
Generated using TypeDoc
Entries larger than 250,000 characters will be chunked. Be carefull when using together with the REST API.
Objects and arrays will be automatically stringified to be stored in AppsDb.
Example