import { Showpad } from '@showpad/experience-app-sdk'const query = 'sample'const assets = await Showpad.getAssetsByQuery(query) Copy
import { Showpad } from '@showpad/experience-app-sdk'const query = 'sample'const assets = await Showpad.getAssetsByQuery(query)
A string we'll look for in the asset displayName.
Internally, this will translate to WHERE displayName LIKE "%query%".
WHERE displayName LIKE "%query%"
List of assets that match with the given query.
Generated using TypeDoc
Example