You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The regional and language settings that determine how the Function
@@ -3955,7 +3981,7 @@ type Localization {
3955
3981
"""
3956
3982
The market of the active localized experience.
3957
3983
"""
3958
-
market: Market!
3984
+
market: Market!@deprecated(reason: "This `market` field will be removed in a future version of the API.")
3959
3985
}
3960
3986
3961
3987
"""
@@ -4223,7 +4249,7 @@ type MailingAddress {
4223
4249
"""
4224
4250
The market of the address.
4225
4251
"""
4226
-
market: Market
4252
+
market: Market@deprecated(reason: "This `market` field will be removed in a future version of the API.")
4227
4253
4228
4254
"""
4229
4255
The full name of the customer, based on firstName and lastName.
@@ -4382,6 +4408,26 @@ type MoneyV2 {
4382
4408
The root mutation for the API.
4383
4409
"""
4384
4410
typeMutationRoot {
4411
+
"""
4412
+
Handles the Function result for the cart.validations.generate.fetch target.
4413
+
"""
4414
+
cartValidationsGenerateFetch(
4415
+
"""
4416
+
The result of the Function.
4417
+
"""
4418
+
result: CartValidationsGenerateFetchResult!
4419
+
): Void!
4420
+
4421
+
"""
4422
+
Handles the Function result for the cart.validations.generate.run target.
4423
+
"""
4424
+
cartValidationsGenerateRun(
4425
+
"""
4426
+
The result of the Function.
4427
+
"""
4428
+
result: CartValidationsGenerateRunResult!
4429
+
): Void!
4430
+
4385
4431
"""
4386
4432
Handles the Function result for the purchase.validation.fetch target.
4387
4433
"""
@@ -4413,6 +4459,16 @@ type MutationRoot {
4413
4459
): Void!
4414
4460
}
4415
4461
4462
+
"""
4463
+
An operation to apply.
4464
+
"""
4465
+
inputOperation@oneOf {
4466
+
"""
4467
+
Add a performed validation.
4468
+
"""
4469
+
validationAdd: ValidationAddOperation
4470
+
}
4471
+
4416
4472
"""
4417
4473
The goods and services that merchants offer to customers. Products can include details such as
4418
4474
title, vendor, and custom data stored in [metafields](https://shopify.dev/docs/apps/build/custom-data).
@@ -4802,6 +4858,32 @@ type Validation implements HasMetafields {
4802
4858
): Metafield
4803
4859
}
4804
4860
4861
+
"""
4862
+
Add a performed validation.
4863
+
"""
4864
+
inputValidationAddOperation {
4865
+
"""
4866
+
Errors.
4867
+
"""
4868
+
errors: [ValidationError!]!
4869
+
}
4870
+
4871
+
"""
4872
+
A Function error for a path.
4873
+
"""
4874
+
inputValidationError {
4875
+
"""
4876
+
Returns a message describing the error.
4877
+
"""
4878
+
message: String!
4879
+
4880
+
"""
4881
+
Specifies the path/target for use by the UI. See [Supported checkout field targets](https://shopify.dev/docs/api/functions/reference/cart-checkout-validation/graphql#supported-checkout-field-targets)
4882
+
for a list of supported targets.
4883
+
"""
4884
+
target: String!
4885
+
}
4886
+
4805
4887
"""
4806
4888
A void type that can be used to return a null value from a mutation.
0 commit comments