From c3235c0f39acc25a9aedbfe1e9c0eea66a14d9df Mon Sep 17 00:00:00 2001 From: Scott Kennedy Date: Mon, 22 May 2023 21:12:26 +0100 Subject: [PATCH] Rebase --- includes/mutation/class-order-create.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/includes/mutation/class-order-create.php b/includes/mutation/class-order-create.php index 42372c734..8e23ee1c8 100644 --- a/includes/mutation/class-order-create.php +++ b/includes/mutation/class-order-create.php @@ -107,13 +107,12 @@ public static function get_input_fields() { 'isPaid' => [ 'type' => 'Boolean', 'description' => __( 'Define if the order is paid. It will set the status to processing and reduce stock items.', 'wp-graphql-woocommerce' ), - ), + ], 'createdVia' => array( 'type' => 'String', 'description' => __( 'Order created via', 'wp-graphql-woocommerce' ), - ), - ); - + ) + ]; return $input_fields; }