graphql_map_input_fields_to_wp_query

Filter the input fields. This allows plugins/themes to hook in and alter what $args should be allowed to be passed from a GraphQL Query to the WP_Query.

apply_filters( 'graphql_map_input_fields_to_wp_query', array $query_args, array $where_args, mixed $source, array $all_args, AppContext $context, ResolveInfo $info, mixed|string|array $post_type );

Params

  • $query_args (array): Array of mapped query args
  • $where_args (array): Array of query “where” args
  • $source (mixed): The query results
  • $all_args (array): All of the query arguments (not just the “where” args)
  • $context (AppContext): The AppContext object
  • $info (ResolveInfo): The ResolveInfo object
  • $post_type (mixed|string|array): The post type for the query