use crate::query::select_node_count::SelectNodeCountQuery;
/// Select node count builder.
#[cfg_attr(feature = "api", derive(agdb::TypeDef))]
pub struct SelectNodeCount {}
#[cfg_attr(feature = "api", agdb::impl_def())]
impl SelectNodeCount {
/// Returns the `SelectNodeCountQuery` object.
pub fn query(self) -> SelectNodeCountQuery {
SelectNodeCountQuery {}
}
}