Skip to content

Instantly share code, notes, and snippets.

@esamattis
Created June 5, 2020 11:23
Show Gist options
  • Save esamattis/8efa2b65865f736610dab4f50a7612b7 to your computer and use it in GitHub Desktop.
Save esamattis/8efa2b65865f736610dab4f50a7612b7 to your computer and use it in GitHub Desktop.
<?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