Does anyone know of any good developer documentation for GF_Query? I’ve previously added my GravityView filter conditions using the gravityview_search_criteria filter hook, but it looks like it’s getting replaced by GF_Query. Unfortunately, I can’t figure out how to add (working) additional filters using the GF_Query and I haven’t found any good developer documentation.
What I’m basically looking for the modern and correct way to add field filters like this one.
$criteria['search_criteria']['field_filters'][] = array(
'key' => $field_id,
'operator' => 'is',
'value' => 'something' );