Can search with SWHID and/or for metadata.
Will support the existing query language.
eg:
query {
search(types: ["swhid", "origin"], query: "test") {
nodes {
type
}
}
search(types: ["origin", "content"], query: "test", ...extra-params) {
nodes {
type
}
}
}
This query will later be used by the search UI.
Related to T3952