Skip to content

Commit

Permalink
Updated query to support new lucene indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
sahalali committed Apr 29, 2024
1 parent c5ae87e commit d2b4b79
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/config/graphdb-indexes.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import * as dotenv from "dotenv";

dotenv.config();
const { env } = process;

export const GRAPHDB_INDEX = {
EVENT: env.EVENT || "event-index",
PLACE: env.PLACE || "place-index",
ORGANIZATION: env.ORGANIZATION || "organization-index",
PERSON: env.PERSON || "person-index",
CONCEPT: env.CONCEPT || "concept-index",
EVENT_TYPE: env.EVENT_TYPE || "event-type-index",
DEFAULT: env.DEFAULT || "resource-index",
};


0 comments on commit d2b4b79

Please sign in to comment.