Load an entity where compositeField equals compositeFieldValue, or null if no entity exists.
composite field being queried
compositeField value being queried
entity where compositeField equals compositeFieldValue, or null if no entity matches the condition.
Load an entity where fieldName equals fieldValue, or null if no entity exists.
entity where uniqueFieldName equals fieldValue, or null if no entity matches the condition.
Load an entity by a specified ID, or return null if non-existent.
entity for matching ID, or null if no entity exists for ID.
Load many entities where compositeField equals compositeFieldValue.
composite field being queried
compositeField value being queried
array of entities that match the query for compositeFieldValue
Load many entities where compositeField is one of compositeFieldValues.
composite field being queried
compositeField values being queried
map from compositeFieldValue to entities that match the query for that compositeFieldValue
Load many entities where fieldName equals fieldValue.
array of entities that match the query for fieldValue
Enforcing entity loader. All normal loads are batched, cached, and authorized against the entity's EntityPrivacyPolicy. All loads through this loader will throw if the load is not successful.