The capabilities for a feature source that can be queried.

interface QuerySourceCapabilities {
    supportsAdd: boolean;
    supportsAttachmentEditing: boolean;
    supportsDelete: boolean;
    supportsEditing: boolean;
    supportsQuery: boolean;
    supportsStandardizedQueries: boolean;
    supportsUpdate: boolean;
}

Hierarchy (view full)

Properties

supportsAdd: boolean

Whether creation of features is supported.

supportsAttachmentEditing: boolean

Whether modification of attachments on features is supported.

supportsDelete: boolean

Whether deleting features is supported.

supportsEditing: boolean

Whether feature editing is supported.

supportsQuery: boolean

Whether the query operation is supported.

supportsStandardizedQueries: boolean

Whether standardized queries are supported.

supportsUpdate: boolean

Whether updating features is supported.