/// <summary>
 /// will allow you to write queries on CustomerUserError.
 /// </summary>
 public DisplayableErrorQuery onCustomerUserError(CustomerUserErrorDelegate buildQuery)
 {
     Query.Append("...on CustomerUserError{");
     buildQuery(new CustomerUserErrorQuery(Query));
     Query.Append("}");
     return(this);
 }
Exemple #2
0
        /// <summary>
        /// List of errors that occurred executing the mutation.
        /// </summary>
        public CustomerAddressDeletePayloadQuery customerUserErrors(CustomerUserErrorDelegate buildQuery)
        {
            Query.Append("customerUserErrors ");

            Query.Append("{");
            buildQuery(new CustomerUserErrorQuery(Query));
            Query.Append("}");

            return(this);
        }