From 9cf31e0bfa57d3c278d08801d7c7b72df76d6804 Mon Sep 17 00:00:00 2001 From: gaba Date: Fri, 14 Apr 2017 10:37:05 -0700 Subject: [PATCH] A note on the from/to parameters. --- graph/typeDefs.graphql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph/typeDefs.graphql b/graph/typeDefs.graphql index 3f61273d4..2c410ce3c 100644 --- a/graph/typeDefs.graphql +++ b/graph/typeDefs.graphql @@ -544,11 +544,11 @@ type RootQuery { users(query: UsersQuery): [User] # Asset metrics related to user actions are saturated into the assets - # returned. + # returned. Parameters `from` and `to` are related to the action created_at field. assetMetrics(from: Date!, to: Date!, sort: ASSET_METRICS_SORT!, limit: Int = 10): [Asset!] # Comment metrics related to user actions are saturated into the comments - # returned. + # returned. Parameters `from` and `to` are related to the action created_at field. commentMetrics(from: Date!, to: Date!, sort: ACTION_TYPE!, limit: Int = 10): [Comment!] }