surrealdb 1.0.0-beta.8

A scalable, distributed, collaborative, document-graph database, for the realtime web
Documentation
use crate::sql::part::Part;
use crate::sql::value::Value;

impl Value {
	pub fn all(&self) -> Self {
		self.pick(&[Part::All])
	}
}