From e023ca768f9d7cf848590055c962679809876e9f Mon Sep 17 00:00:00 2001 From: xingxingst <6249206+xingxingst@users.noreply.github.com> Date: Tue, 14 Mar 2023 13:31:46 +0900 Subject: [PATCH] add status --- wp-graphql-redirection.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-graphql-redirection.php b/wp-graphql-redirection.php index 28cb6c5..7a79e1d 100755 --- a/wp-graphql-redirection.php +++ b/wp-graphql-redirection.php @@ -72,6 +72,7 @@ 'groupId' => ['type' => 'Int'], 'groupName' => ['type' => 'String'], 'matchType' => ['type' => 'String'], + 'status' => ['type' => 'String'], ], ]); @@ -118,6 +119,7 @@ 'groupId' => $row->group_id, 'groupName' => $row->name, 'matchType' => $row->match_type, + 'status' => $row->status, ]; }