From 4519a550a20fd5e03e1326a014dbbe3b8d655d09 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Fri, 21 Apr 2017 02:27:26 +0700 Subject: [PATCH] Fix fresh login on profile --- client/coral-framework/actions/auth.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/client/coral-framework/actions/auth.js b/client/coral-framework/actions/auth.js index b2080b3b4..e112b2b6c 100644 --- a/client/coral-framework/actions/auth.js +++ b/client/coral-framework/actions/auth.js @@ -11,6 +11,16 @@ const ME_QUERY = gql` query Me { me { status + comments { + id + body + asset { + id + title + url + } + created_at + } } } `;