graphql_map_input_fields_to_wp_user_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_User_Query.

apply_filters( 'graphql_map_input_fields_to_wp_user_query', array $query_args, array $where_args, mixed $source, array $all_args, AppContext $context, ResolveInfo $info );

Params

  • $query_args (array): Array of mapped query args
  • $where_args (array): Array of query “where” args
  • $source (mixed): The query results of the query calling this relation
  • $all_args (array): All of the query arguments (not just the “where” args)
  • $context (AppContext): The AppContext object
  • $info (ResolveInfo): The ResolveInfo object