pub fn doc_url(keyword: &str) -> Option<&'static str>Expand description
Get the documentation URL for a SurrealQL keyword, statement, function, or clause.
Accepts keywords in any case. Compound keywords can be space-separated
(e.g., "define table", "order by", "live select").
For function namespaces, pass the namespace with a trailing :: or without
(e.g., "string" or "string::"). For specific function lookups, use
doc_url_for_function instead.