• Example

    import { Showpad } from '@showpad/experience-app-sdk'

    const query = 'sample'

    const assets = await Showpad.getAssetsByQuery(query)

    Parameters

    • query: string

      A string we'll look for in the asset displayName.

      Internally, this will translate to WHERE displayName LIKE "%query%".

    Returns Promise<Asset[]>

    List of assets that match with the given query.

Generated using TypeDoc