From 859a0b1fbea10a002c069cc7aedcbef940fafe5d Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Fri, 19 May 2017 02:03:36 +0700 Subject: [PATCH] Make until arg required --- graph/typeDefs.graphql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph/typeDefs.graphql b/graph/typeDefs.graphql index 8297ae7db..217ec975f 100644 --- a/graph/typeDefs.graphql +++ b/graph/typeDefs.graphql @@ -679,8 +679,8 @@ input SuspendUserInput { # message to be sent to the user. message: String! - # If set, the suspension lasts at least until specified date. - until: Date + # target user will be suspended until this date. + until: Date! } # Input for rejectUsername mutation.