Skip to content

Commit d6e8936

Browse files
committed
cleanup
1 parent 5f61be5 commit d6e8936

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

packages/host/tests/helpers/indexer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ type TestIndexRow =
8989
// 2. provide a card instance for each row in the indexed_cards table
9090
// 3. provide an object { card, data } where the card instance is used for each
9191
// row in the indexed_cards table, as well as any additional fields that you
92-
// will to set from the `data` object.
92+
// wish to set from the `data` object.
9393
//
9494
// the realm version table will default to version 1 of the testRealmURL if no
9595
// value is supplied

packages/host/tests/unit/query-test.ts

+1-10
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ import { testRealmURL, setupIndex, serializeCard } from '../helpers';
1717

1818
let cardApi: typeof import('https://cardstack.com/base/card-api');
1919
let string: typeof import('https://cardstack.com/base/string');
20-
// let number: typeof import('https://cardstack.com/base/number');
21-
// let date: typeof import('https://cardstack.com/base/date');
22-
// let datetime: typeof import('https://cardstack.com/base/datetime');
23-
// let boolean: typeof import('https://cardstack.com/base/boolean');
24-
// let queryableValue: typeof queryableValueType;
2520
let { sqlSchema, resolvedBaseRealmURL } = ENV;
2621

2722
module('Unit | query', function (hooks) {
@@ -38,11 +33,6 @@ module('Unit | query', function (hooks) {
3833

3934
cardApi = await loader.import(`${baseRealm.url}card-api`);
4035
string = await loader.import(`${baseRealm.url}string`);
41-
// number = await loader.import(`${baseRealm.url}number`);
42-
// date = await loader.import(`${baseRealm.url}date`);
43-
// datetime = await loader.import(`${baseRealm.url}datetime`);
44-
// boolean = await loader.import(`${baseRealm.url}boolean`);
45-
// queryableValue = cardApi.queryableValue;
4636

4737
let { field, contains, CardDef } = cardApi;
4838
let { default: StringField } = string;
@@ -148,4 +138,5 @@ module('Unit | query', function (hooks) {
148138
});
149139

150140
skip(`can filter using 'eq' thru nested fields`);
141+
skip(`can leverage queryableValue hook in card definition`);
151142
});

packages/runtime-common/indexer/client.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -250,12 +250,14 @@ export class IndexerDBClient {
250250

251251
let on = filter.on ?? onRef;
252252

253-
// TODO: any, every, not, eq, contains, range
254-
255253
if ('eq' in filter) {
256254
return this.eqCondition(filter, on);
257255
}
258256

257+
// TODO handle filters for: any, every, not, contains, and range
258+
// refer to hub v2 for a good reference:
259+
// https://github.dev/cardstack/cardstack/blob/d36e6d114272a9107a7315d95d2f0f415e06bf5c/packages/hub/pgsearch/pgclient.ts
260+
259261
throw new Error(`Unknown filter: ${JSON.stringify(filter)}`);
260262
}
261263

0 commit comments

Comments
 (0)