Can search with SWHID and/or for metadata.
Will support the existing query language.
eg:
query {
search(type: "origin", query: "test") {
nodes {
type: "Origin"
target: {
url
}
match: 30
}
}
search(type: "swhid", query: "test", ...extra-params) {
nodes {
type: "Content"
target: {
}
match: 100
}
}
}
This query will later be used by the search UI.
Related to T3952