functions/public/Get-AxoniusQueries.ps1

<#
.Synopsis
    Get details of all saved queries.
.DESCRIPTION
    Get details of all saved queries.
.PARAMETER FolderID
    The ID of the folder to pull from. Use all to pull from all folders.
    Defaults to 'all'.
.PARAMETER UsedIn
    A list of system modules where the queries are used
.PARAMETER IncludeMetadata
    When true, returns metadata such as item count and paging information (page number, offset, limit). For use when returning large amounts of data
.PARAMETER Offset
    The number of rows to skip from the beginning of the result set
.PARAMETER Limit
    The number of rows to return from the result set
    Defaults to 1000.
.PARAMETER Query
    An AQL statement used to select which queries are returned e.g., "(`"name`" == regex(`"installed`", `"i`"))"
    Reminder that you may need to escape your quotes in powershell with backtick (`)
.EXAMPLE
    Get-AxoniusQueries
.EXAMPLE
    Get-AxoniusQueries -FolderID 'Public' -UsedIn @('dashboard','enforcements') -IncludeMetadata -Offset 100 -Limit 100
#>

function Get-AxoniusQueries{
    [CmdletBinding()]
    [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseSingularNouns', '',
            Justification = 'This is consistent with the vendors verbiage')]
    param (
        [Alias('folder_id')]
        [string]$FolderID,
        [Alias('used_in')]
        [string[]]$UsedIn,
        [Alias('include_metadata')]
        [switch]$IncludeMetadata,
        [int]$Offset,
        [int]$Limit,
        [string]$Query
    )

    process{

        $QueryObjects = @()

        If(-not $FolderID){
            $QueryObjects += "folder_id=all"
        }

        If(-not $IncludeMetadata){
            $QueryObjects += "include_metadata=false"
        }

        $Query = [System.Web.HttpUtility]::UrlEncode($Query)

        $PSCmdlet.MyInvocation.BoundParameters.GetEnumerator() | ForEach-Object {
            $alias = $MyInvocation.MyCommand.Parameters[$_.Key].Aliases[0]
            $paramName = $alias ?? $_.Key.ToLower()

            # Handle array parameters by adding multiple entries
            if ($_.Value -is [array]) {
                foreach ($value in $_.Value) {
                    $QueryObjects += "$($paramName)=$value"
                }
            }
            else {
                if ($_.Key -eq "Query") {
                    $QueryObjects += "$($paramName)=$($Query)"
                }
                else{
                    $QueryObjects += "$($paramName)=$($_.Value)"
                }
            }
        }

        $QueryString = $QueryObjects -join "&"
        $RelativeUri = "queries?$($QueryString)"

        $RestSplat = @{
            Method      = 'GET'
            RelativeURI = $RelativeUri
        }

        $Response = Invoke-AxoniusRestCall @RestSplat
        $Response
    }
}