handsome-football-66174
03/01/2022, 5:22 PM{
search(input: {start: 0, count: 100, query: "*", type: DATASET,filters:{field:"description",value:"Project*"}}) {
searchResults {
entity {
urn
type
}
matchedFields {
name
value
}
}
}
}big-carpet-38439
03/01/2022, 6:50 PMfilters field, we will expect that the filters are exact matches when performing the search. To accomplish this, you could use a query that searches on a particular index field, but this will simply return all assets that contain "Project" in their description. From the results, you'll need to further parse to check each description:
{
search(input: {start: 0, count: 100, query: "description.delimited:Project", type: DATASET}) {
searchResults {
entity {
urn
type
}
matchedFields {
name
value
}
}
}
}handsome-football-66174
03/01/2022, 8:03 PMbig-carpet-38439
03/01/2022, 9:45 PMbig-carpet-38439
03/01/2022, 9:45 PMhandsome-football-66174
03/02/2022, 2:45 PMbig-carpet-38439
03/02/2022, 6:25 PMbig-carpet-38439
03/02/2022, 6:25 PMbig-carpet-38439
03/02/2022, 6:25 PMbig-carpet-38439
03/02/2022, 6:30 PMhandsome-football-66174
03/02/2022, 8:48 PMbland-lighter-26751
10/11/2023, 6:54 PM