Full text search

Full text searches can be issued, involving a join with the ContentSearch class.
See the following example for full text search:
{
  documents(
    repositoryIdentifier: "OS1"
    from: "Document d inner join contentsearch c on d.this = c.queriedobject"
    where: "(contains(d.*, 'FileNet OR IBM'))"
    orderBy: "d.DocumentTitle ASC"
    options: "COUNT_LIMIT 500"
    pageSize: 10) {
    documents {
      className
      id
      name
      mimeType
      creator
      dateCreated
      isReserved
      accessAllowed
    }
    pageInfo {
      totalCount
      token
    }
  }
}