I have been trying to use a filter when querying the occurrences but there is no impact on the output.
filterStr := fmt.Sprintf("kind=%q", common_go_proto.NoteKind_BUILD.String())
respOccurrences, err := client.ListOccurrences(context.Background(),
&pb.ListOccurrencesRequest{
Parent: "projects/occurrence_example",
Filter: filterStr,
})
They mention filtering was not supported as of then. Can someone help me with what can I try to onboard the filtering feature? Any databases that supports it today?
Thank you.