Alokai

customerSignMeUpMutation

Portion of the GraphQL query used in the customerSignMeUp API endpoint

customerSignMeUpMutation = "\n  mutation customerSignMeUp(
	$draft: CustomerSignMeUpDraft!,
	$locale: Locale!,
	$acceptLanguage: [Locale!],
	$currency: Currency!,
	$storeKey: KeyReferenceInput
) {\n    user: customerSignMeUp(draft: $draft,
	storeKey: $storeKey) {\n      customer {\n        ...DefaultCustomer\n      }\n      cart {\n        ...DefaultCart\n      }\n    }\n  }\n"