Types > FileQuery
Commerce APITypesFileQuery
FileQuery

Description

Fields

only_images: Boolean

Restrict search to only images

Example: true


only_uploaded_private_files: Boolean

Restrict search to uploaded private files

Example: true


query: String

Search query string

Example: "fancy shoes"


Preview (typescript)

interface FileQuery {
only_images?: boolean
only_uploaded_private_files?: boolean
query?: string
}