GetRecord
GetRecord is a generic operation used to retrieve a single data record from a data store by its unique identifier. It is commonly exposed in database systems, key-value stores, document databases, and data-access APIs. The operation usually accepts a key or composite key and may include optional parameters such as a field projection (which fields to return), a version or timestamp for historical reads, and a consistency level.
Behavior varies by system. If the record exists, GetRecord returns the record data in a structured form
Common implementations include: in relational databases, retrieving by primary key using a SELECT statement; in key-value
GetRecord is often contrasted with batch retrieval operations (e.g., GetRecords) and with queries that return multiple