Skip to content

Commit aa94432

Browse files
authored
feat: add domain, glossary, dataproduct name in search tool (#44)
1 parent f7ac8cf commit aa94432

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/mcp_server_datahub/gql/search.gql

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,26 @@ fragment SearchEntityInfo on Entity {
2323
name
2424
}
2525
}
26+
... on GlossaryTerm {
27+
properties {
28+
name
29+
}
30+
}
31+
... on GlossaryNode {
32+
properties {
33+
name
34+
}
35+
}
36+
... on Domain {
37+
properties {
38+
name
39+
}
40+
}
41+
... on DataProduct {
42+
properties {
43+
name
44+
}
45+
}
2646
}
2747

2848
fragment FacetEntityInfo on Entity {

0 commit comments

Comments
 (0)