From a91db35f91625c0987513783f98657eee6267336 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Mon, 24 Apr 2017 23:34:53 +0700 Subject: [PATCH] Add comments for filter --- client/coral-framework/hocs/withFragments.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/coral-framework/hocs/withFragments.js b/client/coral-framework/hocs/withFragments.js index 8e5fbccb9..a2686d94b 100644 --- a/client/coral-framework/hocs/withFragments.js +++ b/client/coral-framework/hocs/withFragments.js @@ -1,5 +1,7 @@ import React from 'react'; +// TODO: revisit `filtering` after https://github.com/apollographql/graphql-anywhere/issues/38. + function getDisplayName(WrappedComponent) { return WrappedComponent.displayName || WrappedComponent.name || 'Component'; }