uuid.php
Table of Contents
Functions
- uuid() : string
- Return a universally unique identifier (UUID).
Functions
uuid()
Return a universally unique identifier (UUID).
uuid() : string
This helper wraps the ArangoDB AQL function UUID() which generates and returns
a universally unique identifier. UUIDs are useful for generating unique identifiers
that are globally unique across different systems and time periods.
Example AQL usage:
UUID() // returns something like "550e8400-e29b-41d4-a716-446655440000"
UUID() // returns a different UUID each time
Tags
Return values
string —The formatted AQL expression.