IsCollectionNameUnique checks that there is no existing collection with the provided name (case insensitive!). Note: case insensitive check because the name is used also as table name for the records.
(name string, excludeIds ...string)
| 457 | // Note: case insensitive check because the name is used also as |
| 458 | // table name for the records. |
| 459 | IsCollectionNameUnique(name string, excludeIds ...string) bool |
| 460 | |
| 461 | // TruncateCollection deletes all records associated with the provided collection. |
| 462 | // |
no outgoing calls