Member Junction
    Preparing search index...

    Generic action for retrieving multiple records from any entity with filtering and sorting capabilities. This action provides a flexible way to fetch filtered and sorted datasets for any entity type by accepting the entity name, optional filter clause, and ordering parameters.

    // Get all active events sorted by start date
    await runAction({
    ActionName: 'Get Records',
    Params: [
    {
    Name: 'EntityName',
    Value: 'Events'
    }, {
    Name: 'Filter',
    Value: 'Status = 'Active' AND StartDate >= GETDATE()'
    }, {
    Name: 'OrderBy',
    Value: 'StartDate ASC'
    }, {
    Name: 'MaxRows',
    Value: 100
    }
    ]
    });

    // Get recent submissions for a specific event
    await runAction({
    ActionName: 'Get Records',
    Params: [
    {
    Name: 'EntityName',
    Value: 'Submissions'
    }, {
    Name: 'Filter',
    Value: 'EventID = '123e4567-e89b-12d3-a456-426614174000' AND CreatedAt >= DATEADD(day, -30, GETDATE())'
    }, {
    Name: 'OrderBy',
    Value: 'CreatedAt DESC'
    }
    ]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Accessors

    Methods

    Constructors

    Accessors

    Methods