Interface ListWorkspacesInput

interface ListWorkspacesInput {
    assigneeId?: string;
    createdAfter?: string;
    createdBefore?: string;
    includeMetadata?: boolean;
    includeThumbnailUrl?: boolean;
    limit?: number;
    modifiedAfter?: string;
    modifiedBefore?: string;
    offset?: number;
    onlyVisibleToOwner?: boolean;
    slugs?: string[];
    tags: string[];
    templateSlug?: string;
    term?: string;
}

Properties

assigneeId?: string
createdAfter?: string
createdBefore?: string
includeMetadata?: boolean

When explicitly set to false, omits the workspace layout and metadata models.

includeThumbnailUrl?: boolean
limit?: number
modifiedAfter?: string
modifiedBefore?: string
offset?: number
onlyVisibleToOwner?: boolean
slugs?: string[]
tags: string[]
templateSlug?: string
term?: string