import { DaffMagentoCartShippingAddressService } from '@daffodil/cart/driver/magento'
A service for making Magento GraphQL queries for a cart's shipping address.
@Injectable()
class DaffMagentoCartShippingAddressService implements DaffCartShippingAddressServiceInterface {
get(cartId: string): Observable<DaffCartAddress>
update(
cartId: string
address: Partial<DaffCartAddress>
): Observable<Partial<DaffCart>>
}
Observable<DaffCartAddress>
Retrieve the shipping address of a cart.
Parameter | cartId: string |
---|---|
Description |
Observable<Partial<DaffCart>>
Update the shipping address of a cart.
Parameter | cartId: string |
---|---|
Description |
Parameter | address: Partial<DaffCartAddress> |
---|---|
Description |