graphql_data_is_private

Filter to determine if the data should be considered private or not

apply_filters( 'graphql_data_is_private', bool $is_private, string $model_name, mixed $data, string $visibility, int $owner, WP_User $current_user );

Params

  • $is_private (bool): If the data is private
  • $model_name (string): Name of the model the filter is currently being executed in
  • $data (mixed): The un-modeled incoming data
  • $visibility (string|null): The visibility that has currently been set for the data at this point
  • $owner (null|int): The user ID for the owner of this piece of data
  • $current_user (WP_User): The current user for the session