Skip to content

Commit

Permalink
update solr schema
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesamcl committed Nov 1, 2024
1 parent a19c985 commit 71a195d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,9 @@
stored - If true, the actual value of the field can be retrieved by queries.
-->
<field name="grebi__edgeId" type="string" indexed="true" stored="true" required="true" multiValued="false" />
<field name="grebi__from" type="string" indexed="true" stored="true" required="true" multiValued="false" />
<field name="grebi__to" type="string" indexed="true" stored="true" required="true" multiValued="false" />
<field name="grebi__fromNodeId" type="string" indexed="true" stored="true" required="true" multiValued="false" />
<field name="grebi__fromSourceIds" type="string" indexed="true" stored="true" required="false" multiValued="true" />
<field name="grebi__toNodeId" type="string" indexed="true" stored="true" required="true" multiValued="false" />
<field name="grebi__datasources" type="string" indexed="true" stored="true" required="false" multiValued="true" />
<copyField source="grebi__datasources" dest="str_grebi__datasources"/>
<copyField source="grebi__datasources" dest="lowercase_grebi__datasources"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@
<field name="grebi__subgraph" type="string" indexed="true" stored="true" required="false" multiValued="false" />
<copyField source="grebi__subgraph" dest="str_grebi__subgraph"/>
<copyField source="grebi__subgraph" dest="lowercase_grebi__subgraph"/>
<field name="grebi__sourceIds" type="string" indexed="true" stored="true" required="false" multiValued="true" />
<copyField source="grebi__sourceIds" dest="str_grebi__sourceIds"/>
<copyField source="grebi__sourceIds" dest="lowercase_grebi__sourceIds"/>

[[GREBI_FIELDS]]

Expand Down

0 comments on commit 71a195d

Please sign in to comment.