You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use `feathers generate service` command to generate a new `Cassandra` service.
23
23
@@ -79,8 +79,8 @@ $in
79
79
| Operator | Native Operator | Description | Example |
80
80
|:---: | :---: | --- | --- |
81
81
|`$token`|`TOKEN`| Token query on primary keys. can be used for pagination | Single key: `$token: { id: { $gt: 1 } }` Multiple keys: `$token: { $keys: ['id', 'time'], $condition: { $gt: [1, 2] } }`|
82
-
|`$minTimeuuid`|`minTimeuuid`| Query on `timeuuid` column given a time component. [read more](http://cassandra.apache.org/doc/4.0/cql/functions.html#mintimeuuid-and-maxtimeuuid)|`$minTimeuuid: { timeuuid: { $lt: '2013-02-02 10:00+0000' } }`|
83
-
|`$maxTimeuuid`|`maxTimeuuid`| Query on `timeuuid` column given a time component. [read more](http://cassandra.apache.org/doc/4.0/cql/functions.html#mintimeuuid-and-maxtimeuuid)|`$maxTimeuuid: { timeuuid: { $gt: '2013-01-01 00:05+0000' } }`|
82
+
|`$minTimeuuid`|`minTimeuuid`| Query on `timeuuid` column given a time component. [read more](https://cassandra.apache.org/doc/latest/cql/functions.html#mintimeuuid-and-maxtimeuuid)|`$minTimeuuid: { timeuuid: { $lt: '2013-02-02 10:00+0000' } }`|
83
+
|`$maxTimeuuid`|`maxTimeuuid`| Query on `timeuuid` column given a time component. [read more](https://cassandra.apache.org/doc/latest/cql/functions.html#mintimeuuid-and-maxtimeuuid)|`$maxTimeuuid: { timeuuid: { $gt: '2013-01-01 00:05+0000' } }`|
84
84
|`$contains`|`CONTAINS`| Search in indexed list, set or map |`colors: { $contains: 'blue' }`|
|`$if`|`IF`| Condition that must return TRUE for the update to succeed. Will be used automatically when an update, patch or remove request query by id with additional query conditions |`$if: { name: 'John' }`|
@@ -108,9 +108,9 @@ $in
108
108
|`$increment`|`+`| Increments a counter |`days: { $increment: 2 }`|
109
109
|`$decrement`|`-`| Decrements a counter |`days: { $decrement: 2 }`|
Set `params.queryOptions` to override options per query, like [setting a different consistency level for a single query](http://datastax.github.io/nodejs-driver/getting-started/#setting-the-consistency-level).
113
+
Set `params.queryOptions` to override options per query, like [setting a different consistency level for a single query](https://docs.datastax.com/en/developer/nodejs-driver/4.5/getting-started/#setting-the-consistency-level).
114
114
115
115
### Materialized Views
116
116
@@ -128,7 +128,7 @@ Filter functions runs in get & find requests when specified in the `query.$filte
128
128
129
129
### Cassandra
130
130
131
-
Set Cassandra init options as defined in [Cassandra](https://docs.datastax.com/en/developer/nodejs-driver/3.5/api/type.ClientOptions/) & [Express-Cassandra](https://express-cassandra.readthedocs.io/en/latest/usage/#explanations-for-the-options-used-to-initialize):
131
+
Set Cassandra init options as defined in [Cassandra](https://docs.datastax.com/en/developer/nodejs-driver/4.5/api/type.ClientOptions/) & [Express-Cassandra](https://express-cassandra.readthedocs.io/en/latest/usage/#explanations-for-the-options-used-to-initialize):
132
132
133
133
config/defaults.json
134
134
```json
@@ -636,7 +636,7 @@ try {
636
636
637
637
`feathers-cassandra` 2.0.0 comes with important security and usability updates.
638
638
639
-
> __Important:__ For general migration information to the new database adapter functionality see [crow.docs.feathersjs.com/migrating.html#database-adapters](https://crow.docs.feathersjs.com/migrating.html#database-adapters).
639
+
> __Important:__ For general migration information to the new database adapter functionality see [docs.feathersjs.com/guides/migrating.html#database-adapters](https://docs.feathersjs.com/guides/migrating.html#database-adapters).
640
640
641
641
The following breaking changes have been introduced:
0 commit comments