handsome-football-66174
07/29/2022, 8:54 PM{
searchAcrossEntities( input: {start: 0, count: 20, query: "*", types: [CONTAINER],filters: ["subTypes","Database"]
})
{
searchResults {
entity {
urn
type
}
}
}
}
handsome-football-66174
08/01/2022, 4:15 PM{
searchAcrossEntities( input: {start: 0, count: 20, query: "*", types: [CONTAINER],filters: [{field:"typeNames",value:"Database"}]
})
{
searchResults {
entity {
urn
type
}
}
}
}
better-orange-49102
08/01/2022, 4:39 PMquery test{
searchAcrossEntities(input:{
types:CONTAINER
query: "*"
filters:{
field: "typeNames"
value: "Database"
}
}){
searchResults{
entity{
urn
... on Container{
properties{
name
}
}
}
}
}
}
handsome-football-66174
08/01/2022, 6:21 PM