Hey guys, I don't want to have a link to the GraphiQL IDE in my admin toolbar.

Please provide a way to remove it.
@benknight I'll work up a PR to provide a setting to enable/disable this link.
In the mean time, you can filter it out like so:
add_action( 'admin_bar_menu', 'remove_graphiql_from_admin_bar_menu', 999 );
function remove_graphiql_from_admin_bar_menu( $wp_admin_bar ) {
// replace 'updraft_admin_node' with your node id
$wp_admin_bar->remove_node( 'graphiql-ide' );
}
Thanks for the quick follow-up!
My PR didn't really note this but there's now a setting to turn this off. Noting here for reference.

Most helpful comment
@benknight I'll work up a PR to provide a setting to enable/disable this link.
In the mean time, you can filter it out like so: