|
| setDocumentClass ($class) |
| Set the class for document objects.
|
|
| getDocumentClass () |
| Get the class for document objects.
|
|
| setDocumentSetClass ($class) |
| Set the class for document set objects.
|
|
| getDocumentSetClass () |
| Get the class for document set objects.
|
|
| setQueryClass ($class) |
| Set the query class for query objects.
|
|
| getQueryClass () |
| Get the class for query objects.
|
|
| createCollection ($name, $options=null) |
| Create collection.
|
|
| deleteCollection ($name, $options=null) |
| Delete collection.
|
|
| listCollections ($options=null) |
| List collections.
|
|
| listDocuments ($collectionName, array $options=null) |
| List all documents in a collection.
|
|
| insertDocument ($collectionName, $document, $options=null) |
| Insert document.
|
|
| replaceDocument ($collectionName, $document, $options=null) |
| Replace document The new document replaces the existing document with the same ID.
|
|
| updateDocument ($collectionName, $documentID, $fieldset=null, $options=null) |
| Update document The fields of the existing documents will be updated.
|
|
| deleteDocument ($collectionName, $documentID, $options=null) |
| Delete document.
|
|
| fetchDocument ($collectionName, $documentID, $options=null) |
| Fetch single document by ID.
|
|
| query ($collectionName, $query, $options=null) |
| Query for documents stored in the document service.
|
|
| select ($fields=null) |
| Create query statement.
|
|
| getClient () |
| Get the concrete service client.
|
|