Created
June 5, 2020 11:23
-
-
Save esamattis/8efa2b65865f736610dab4f50a7612b7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
register_graphql_connection( [ | |
'fromType' => 'HierarchicalContentNode', | |
'toType' => 'ContentNode', | |
'fromFieldName' => 'ancestors', | |
'description' => __( 'Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root).', 'wp-graphql' ), | |
'resolve' => function( Post $post, $args, $context, $info ) { | |
$ancestors = get_ancestors( $post->ID, null, 'post_type' ); | |
if ( empty( $ancestors ) || ! is_array( $ancestors ) ) { | |
return null; | |
} | |
$resolver = new PostObjectConnectionResolver( $post, $args, $context, $info ); | |
$resolver->set_query_arg( 'post__in', $ancestors ); | |
return $resolver->get_connection(); | |
} | |
] ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment