CreateMerchantResult
The result of creating a merchant
type CreateMerchantResult {
success: Boolean!
merchant: Merchant
errors: [MerchantError!]
}
Fields
CreateMerchantResult.success ● Boolean! non-null scalar
If the created Merchant was successful
CreateMerchantResult.merchant ● Merchant object
The created Merchant
CreateMerchantResult.errors ● [MerchantError!] list object
Any errors present when creating a Merchant will be returned here
Returned By
createMerchant mutation