calm-garage-18868
10/12/2022, 12:46 PMfilters
argument in the GraphQL search
operation requires the value
to be a string. I had hoped I could do the following:
search(input: {
type:DATASET,
query:"*",
start:0,
count:10,
filters: [
{
field: "deprecated"
value: true
}
...
bulky-soccer-26729
10/12/2022, 2:50 PMquery
here instead of filters. If you change your query to look like this it should work:
search(input: {
type:DATASET,
query:"deprecated: true",
start:0,
count:10,
...
calm-garage-18868
10/12/2022, 2:52 PMbulky-soccer-26729
10/12/2022, 2:53 PMcalm-garage-18868
10/13/2022, 12:35 PMbulky-soccer-26729
10/13/2022, 1:25 PM