Hi guys im trying send a request to graphql to search for all the datasets with a specific tag:
{
search(
input: {start: 0, count: 10, query: "*", type: DATASET, filters: {field: "tags", value: "facundo_prueba"} }
) {
searchResults {
entity {
urn
type
}
matchedFields {
name
value
}
}
}
}
even though i have two datasets with that tag, the response is:
{'data': {'search': {'searchResults': []}}}
i tried to request directly to the backend with:
{
"input": "tags:facundo_prueba",
"entity": "dataset",
"start": 0,
"count": 10
}
and it works
is the graphql query not correct? im trying to use graphql instead of directly querying the backend.