Home > @vsf-enterprise/commercetools-types > CartQueryResult
# CartQueryResult type
Signature:
export declare type CartQueryResult = {
    __typename?: 'CartQueryResult';
    offset: Scalars['Int'];
    count: Scalars['Int'];
    total: Scalars['Long'];
    exists: Scalars['Boolean'];
    results: Array<Cart>;
};