summaryrefslogtreecommitdiffstats
path: root/frontend/pages
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-05-15 11:48:19 -0400
committerWes Bos <wesbos@gmail.com>2018-05-15 11:48:19 -0400
commitc0752fa731a0f028a93cce948043044fe56b57d6 (patch)
tree66326fc4756ef5a92bbc3047b0a02a261157c365 /frontend/pages
parentfc43594e43cdcba82930c788012d0e7ad7110ccd (diff)
migrate to graphql
Diffstat (limited to 'frontend/pages')
-rw-r--r--frontend/pages/_app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/pages/_app.js b/frontend/pages/_app.js
index b23df9b..ccbc3ae 100644
--- a/frontend/pages/_app.js
+++ b/frontend/pages/_app.js
@@ -1,6 +1,6 @@
import { ApolloApp } from 'next-with-apollo';
import withData from '../lib/withData';
-import { CURRENT_USER_QUERY } from '../queries/queries';
+import { CURRENT_USER_QUERY } from '../queries/queries.graphql';
// Next.js wraps each Page in an <App></App> component. This is handy for when you want to persist anything from page to page, or just access a component that is 1 level higher than each page.