From dc3ea366bc46a1d075e0ceb9e2ff3d02b9fc85f0 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Mon, 24 Sep 2018 20:24:24 +0200 Subject: [PATCH] More comments --- src/core/client/stream/local/local.graphql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/client/stream/local/local.graphql b/src/core/client/stream/local/local.graphql index 088e86390..45887aff2 100644 --- a/src/core/client/stream/local/local.graphql +++ b/src/core/client/stream/local/local.graphql @@ -20,7 +20,10 @@ type AuthPopup { } extend type Comment { + # pending is true during the optimistic response. pending: Boolean + # localReplies contains only comments created by the user + # on the ultimate threading level. localReplies: [Comment!] }