Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
graphql_commerce
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
graphql_commerce
Merge requests
!8
Issue
#3436413
by czigor: Empty cart endpoint
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3436413
by czigor: Empty cart endpoint
issue/graphql_commerce-3436413:3436413-empty-cart-endpoint
into
2.0.x
Overview
0
Commits
4
Pipelines
6
Changes
10
Merged
András Czövek
requested to merge
issue/graphql_commerce-3436413:3436413-empty-cart-endpoint
into
2.0.x
9 months ago
Overview
0
Commits
4
Pipelines
6
Changes
10
Expand
0
0
Merge request reports
Compare
2.0.x
version 3
0a7b8d7c
9 months ago
version 2
2d3ba0e5
9 months ago
version 1
b91a3f37
9 months ago
2.0.x (base)
and
latest version
latest version
edc3114a
4 commits,
9 months ago
version 3
0a7b8d7c
3 commits,
9 months ago
version 2
2d3ba0e5
2 commits,
9 months ago
version 1
b91a3f37
1 commit,
9 months ago
10 files
+
329
−
42
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
graphql/commerce.extension.graphqls
+
2
−
2
Options
@@ -14,7 +14,7 @@ extend type Mutation {
"""
Remove the given order item from the cart.
"""
commerceRemoveFromCart(orderItem: ID!): Commerce
MutationResult
commerceRemoveFromCart(orderItem: ID!): Commerce
OrderResponse
"""
Change the quantity of an order item.
@@ -27,7 +27,7 @@ extend type Mutation {
"""
Empty the cart.
"""
commerceEmptyCart
: CommerceMutationResult
commerceEmptyCart
(order: ID!): CommerceOrderResponse
}
extend type Query {
Loading