02-07-2014 07:20 AM
"SELECT D.*,alias.customprefix:documentDate FROM cmis:document AS D JOIN customprefix:customAspect AS alias ON D.cmis:objectId = alias.cmis:objectId WHERE alias.customprefix:documentDate = TIMESTAMP '2013-04-22T12:52:12.123Z'"
02-07-2014 09:58 AM
System.out.println("Find content of type sc:whitepaper published between 1/1/2006 and 6/1/2007");
queryString = "select d.cmis:objectId, w.sc:published from sc:whitepaper as d join sc:webable as w on d.cmis:objectId = w.cmis:objectId " +
"where w.sc:published > TIMESTAMP '2006-01-01T00:00:00.000-05:00' " +
" and w.sc:published < TIMESTAMP '2007-06-02T00:00:00.000-05:00'";
dumpQueryResults(getQueryResults(queryString));
02-07-2014 11:39 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.