@Test(expected = InvalidDepthException.class)
 public void testFindByLabelZeroDepth() throws Exception {
   query.findByType("ORBITS", 0).getStatement();
 }
 @Test
 public void testFindByLabel() throws Exception {
   assertEquals(
       "MATCH p=()-[r:`ORBITS`*..3]-() RETURN p", query.findByType("ORBITS", 3).getStatement());
 }