Function useTutorialsBySchema

  • Custom hook to fetch and manage tutorial assets filtered by a specific schema.

    This hook is a wrapper around useTutorials, pre-configured to fetch tutorial assets for a given schema by providing the schemaId parameter.

    Parameters

    • schemaId: string

      The ID of the schema to fetch tutorials for.

    • Optional params: any = {}

      Additional parameters to filter and paginate tutorials.

    Returns UseAssetsReturn

    The returning object contains:

    • assets: An array of extended asset objects.
    • fetched: Boolean indicating whether the assets have been successfully fetched.
    • hasMore: Boolean indicating whether there are more assets available to fetch.
    • currentPage: The current page number of the fetched assets.
    • fetchMore: AssetsFetchMoreMethod - Function to fetch more assets, typically for pagination.
    • refresh: AssetsFetchMethod - Function to refresh or re-fetch the assets.

Generated using TypeDoc