PWA Studio only.
Learn more.
recaptchaV3Config query
The recaptchaV3Config
query returns information about the reCaptcha V3 configuration.
Syntax
{recaptchaV3Config {ReCaptchaConfigurationV3}}
Example usage
The following query returns information about the reCaptchaV3 configuration:
Request:
1
2
3
4
5
6
7
8
9
query {
recaptchaV3Config {
minimum_score
website_key
badge_position
failure_message
forms
}
}
Response:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"data": {
"recaptchaV3Config": {
"minimum_score": 0.5,
"website_key": "<key-value>",
"badge_position": "inline",
"failure_message": "reCAPTCHA verification failed.",
"forms": [
"PLACE_ORDER",
"CUSTOMER_FORGOT_PASSWORD",
"CUSTOMER_EDIT",
"CUSTOMER_LOGIN",
"CUSTOMER_CREATE",
"BRAINTREE"
]
}
}
}
Input attributes
None
Output attributes
Attribute | Data Type | Description |
---|---|---|
badge_position |
String! | The position of the invisible reCAPTCHA badge on each page |
failure_message |
String! | The message that appears to the user if validation fails |
forms |
[ReCaptchaFormEnum!]! | A list of forms on the storefront that have been configured to use reCAPTCHA V3 |
language_code |
String | A two-character code that specifies the language that is used for Google reCAPTCHA text and messaging |
minimum_score |
Float! | The minimum score that identifies a user interaction as a potential risk |
website_key |
String! | The website key generated when the Google reCAPTCHA account was registered |