DaffMagentoCartCustomerBillingAddressService
A service for making Magento GraphQL queries for carts.
import { DaffMagentoCartCustomerBillingAddressService } from '@daffodil/cart-customer/driver/magento'
@Injectable()
class DaffMagentoCartCustomerBillingAddressService implements DaffCartBillingAddressServiceInterface {
get(cartId: string): Observable<DaffCartAddress>
update(
cartId: string
address: Partial<DaffCartAddress>
): Observable<Partial<DaffCart>>
}
Properties
Name | Type | Description |
---|---|---|
get | Observable<DaffCartAddress> | Retrieve the billing address of a cart |
update | Observable<Partial<DaffCart>> | Update the billing address of a cart |