Skip to content

Commit

Permalink
issue #957: fixes entity subgraph
Browse files Browse the repository at this point in the history
  • Loading branch information
mrk-vi committed Jun 28, 2024
1 parent 1e94946 commit 1996975
Showing 1 changed file with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@
value = "newDataIndex",
subgraph = "dataIndex-subgraph"
)
},
subgraphs = {
@NamedSubgraph(
name = "dataIndex-subgraph",
attributeNodes = {
@NamedAttributeNode(value = "vectorIndex")
}
)
}
),
@NamedEntityGraph(
Expand All @@ -64,8 +72,14 @@
value = "datasource",
subgraph = "datasource-subgraph"
),
@NamedAttributeNode(value = "oldDataIndex"),
@NamedAttributeNode(value = "newDataIndex")
@NamedAttributeNode(
value = "oldDataIndex",
subgraph = "dataIndex-subgraph"
),
@NamedAttributeNode(
value = "newDataIndex",
subgraph = "dataIndex-subgraph"
)
},
subgraphs = {
@NamedSubgraph(
Expand Down

0 comments on commit 1996975

Please sign in to comment.