There are two ways of selecting data - the simplest is to use the find methods with an array of criteria, as shown below. More complex requirements can be handled using .
Here are some quick code samples showing how to read data from a standard Objectiphy repository. Note that if you did not specify an entity class name when you defined the dependencies, you will usually need to do so before you call any of these methods: $repository->setClassName($className);. The Objectiphy findBy and findOneBy methods are a little more sophisticated than their Doctrine equivalents (Doctrine uses a separate 'matching' method with expressions, or DQL, for more complex requirements instead).
Example 1: Find by ID, as per doctrine
$policy = $repository->find(19086207);
Example 2: Find by child property (not possible in Doctrine)