From 63a4e0148fa8c80c461f6eff74c7218affd42b06 Mon Sep 17 00:00:00 2001 From: Caralyn Reisle Date: Fri, 17 Jun 2022 12:09:17 -0700 Subject: [PATCH 1/2] Remove leftover exports that are no longer valid resolves: #42 --- src/repo/commands/index.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/repo/commands/index.js b/src/repo/commands/index.js index 4535b254..2730d942 100644 --- a/src/repo/commands/index.js +++ b/src/repo/commands/index.js @@ -4,10 +4,6 @@ const { QUERY_LIMIT, RELATED_NODE_DEPTH, select, - selectCounts, - selectByKeyword, - selectFromList, - searchSelect, fetchDisplayName, } = require('./select'); const { remove, update } = require('./update'); @@ -20,10 +16,6 @@ module.exports = { fetchDisplayName, getUserByName, remove, - searchSelect, select, - selectByKeyword, - selectCounts, - selectFromList, update, }; From 31f6f28177937e0b3b311a604e81d0b86b6b8d67 Mon Sep 17 00:00:00 2001 From: Caralyn Reisle Date: Fri, 17 Jun 2022 12:20:19 -0700 Subject: [PATCH 2/2] Re-add selectCounts --- src/repo/commands/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/repo/commands/index.js b/src/repo/commands/index.js index 2730d942..5696098f 100644 --- a/src/repo/commands/index.js +++ b/src/repo/commands/index.js @@ -1,10 +1,11 @@ const { create, createUser } = require('./create'); const { + fetchDisplayName, getUserByName, QUERY_LIMIT, RELATED_NODE_DEPTH, select, - fetchDisplayName, + selectCounts, } = require('./select'); const { remove, update } = require('./update'); @@ -17,5 +18,6 @@ module.exports = { getUserByName, remove, select, + selectCounts, update, };