@xata.io/client
Advanced tools
Comparing version 0.0.0-alpha.964f29b to 0.0.0-alpha.c8f2e88
@@ -57,11 +57,47 @@ export interface XataRecord { | ||
}; | ||
declare type CursorNavigationOptions = { | ||
first?: string; | ||
} | { | ||
last?: string; | ||
} | { | ||
after?: string; | ||
before?: string; | ||
}; | ||
declare type OffsetNavigationOptions = { | ||
size?: number; | ||
offset?: number; | ||
}; | ||
declare type PaginationOptions = CursorNavigationOptions & OffsetNavigationOptions; | ||
declare type BulkQueryOptions<T> = { | ||
filter?: FilterConstraints<T>; | ||
sort?: { | ||
column: keyof T; | ||
direction?: SortDirection; | ||
} | keyof T; | ||
page?: PaginationOptions; | ||
}; | ||
declare type QueryOrConstraint<T, R> = Query<T, R> | Constraint<T>; | ||
export declare class Query<T, R = T> { | ||
declare type QueryMeta = { | ||
page: { | ||
cursor: string; | ||
more: boolean; | ||
}; | ||
}; | ||
interface BasePage<T, R> { | ||
query: Query<T, R>; | ||
meta: QueryMeta; | ||
records: R[]; | ||
nextPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
previousPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
firstPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
lastPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
hasNextPage(): boolean; | ||
} | ||
declare class Page<T, R> implements BasePage<T, R> { | ||
readonly query: Query<T, R>; | ||
readonly meta: QueryMeta; | ||
readonly records: R[]; | ||
constructor(query: Query<T, R>, meta: QueryMeta, records?: R[]); | ||
nextPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
previousPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
firstPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
lastPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
hasNextPage(): boolean; | ||
} | ||
export declare class Query<T, R = T> implements BasePage<T, R> { | ||
table: string; | ||
@@ -74,2 +110,5 @@ repository: Repository<T>; | ||
readonly $sort?: Record<string, SortDirection>; | ||
readonly query: Query<T, R>; | ||
readonly meta: QueryMeta; | ||
readonly records: R[]; | ||
constructor(repository: Repository<T> | null, table: string, data: Partial<Query<T, R>>, parent?: Query<T, R>); | ||
@@ -83,6 +122,14 @@ any(...queries: Query<T, R>[]): Query<T, R>; | ||
sort<F extends keyof T>(column: F, direction: SortDirection): Query<T, R>; | ||
getPaginated(options?: BulkQueryOptions<T>): Promise<Page<T, R>>; | ||
[Symbol.asyncIterator](): AsyncIterableIterator<R>; | ||
getIterator(chunk: number, options?: Omit<BulkQueryOptions<T>, 'page'>): AsyncGenerator<R[]>; | ||
getMany(options?: BulkQueryOptions<T>): Promise<R[]>; | ||
getOne(options?: BulkQueryOptions<T>): Promise<R | null>; | ||
getOne(options?: Omit<BulkQueryOptions<T>, 'page'>): Promise<R | null>; | ||
deleteAll(): Promise<number>; | ||
include(columns: Include<T>): this; | ||
nextPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
previousPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
firstPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
lastPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
hasNextPage(): boolean; | ||
} | ||
@@ -92,6 +139,7 @@ export declare abstract class Repository<T> extends Query<T, Selectable<T>> { | ||
abstract create(object: Selectable<T>): Promise<T>; | ||
abstract createMany(objects: Selectable<T>[]): Promise<T[]>; | ||
abstract read(id: string): Promise<T | null>; | ||
abstract update(id: string, object: Partial<T>): Promise<T>; | ||
abstract delete(id: string): void; | ||
abstract query<R>(query: Query<T, R>): Promise<R[]>; | ||
abstract executeQuery<R>(query: Query<T, R>, options?: BulkQueryOptions<T>): Promise<Page<T, R>>; | ||
} | ||
@@ -102,9 +150,10 @@ export declare class RestRepository<T> extends Repository<T> { | ||
constructor(client: BaseClient<any>, table: string); | ||
request(method: string, path: string, body?: unknown): Promise<any>; | ||
request<T>(method: string, path: string, body?: unknown): Promise<T | undefined>; | ||
select<K extends keyof T>(...columns: K[]): Query<T, Select<T, K>>; | ||
create(object: T): Promise<T>; | ||
createMany(records: T[]): Promise<T[]>; | ||
read(id: string): Promise<T | null>; | ||
update(id: string, object: Partial<T>): Promise<T>; | ||
delete(id: string): Promise<void>; | ||
query<R>(query: Query<T, R>): Promise<R[]>; | ||
executeQuery<R>(query: Query<T, R>, options?: BulkQueryOptions<T>): Promise<Page<T, R>>; | ||
} | ||
@@ -111,0 +160,0 @@ interface RepositoryFactory { |
@@ -18,2 +18,14 @@ "use strict"; | ||
}; | ||
var __await = (this && this.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); } | ||
var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) { | ||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); | ||
var g = generator.apply(thisArg, _arguments || []), i, q = []; | ||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; | ||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } | ||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } | ||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } | ||
function fulfill(value) { resume("next", value); } | ||
function reject(value) { resume("throw", value); } | ||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
@@ -58,4 +70,39 @@ exports.XataError = exports.BaseClient = exports.RestRespositoryFactory = exports.RestRepository = exports.Repository = exports.Query = exports.includesAll = exports.includesPattern = exports.includesSubstring = exports.includes = exports.contains = exports.isNot = exports.is = exports.pattern = exports.endsWith = exports.startsWith = exports.notExists = exports.exists = exports.le = exports.lte = exports.lt = exports.gte = exports.ge = exports.gt = void 0; | ||
exports.includesAll = includesAll; | ||
class Page { | ||
constructor(query, meta, records = []) { | ||
this.query = query; | ||
this.meta = meta; | ||
this.records = records; | ||
} | ||
nextPage(size, offset) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
return this.query.getPaginated({ page: { size, offset, after: this.meta.page.cursor } }); | ||
}); | ||
} | ||
previousPage(size, offset) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
return this.query.getPaginated({ page: { size, offset, before: this.meta.page.cursor } }); | ||
}); | ||
} | ||
firstPage(size, offset) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
return this.query.getPaginated({ page: { size, offset, first: this.meta.page.cursor } }); | ||
}); | ||
} | ||
lastPage(size, offset) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
return this.query.getPaginated({ page: { size, offset, last: this.meta.page.cursor } }); | ||
}); | ||
} | ||
// TODO: We need to add something on the backend if we want a hasPreviousPage | ||
hasNextPage() { | ||
return this.meta.page.more; | ||
} | ||
} | ||
class Query { | ||
constructor(repository, table, data, parent) { | ||
// Cursor pagination | ||
this.query = this; | ||
this.meta = { page: { cursor: 'start', more: true } }; | ||
this.records = []; | ||
if (repository) { | ||
@@ -133,15 +180,47 @@ this.repository = repository; | ||
} | ||
// TODO: pagination. Maybe implement different methods for different type of paginations | ||
// and one to simply get the first records returned by the query with no pagination. | ||
getPaginated(options) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
return this.repository.executeQuery(this, options); | ||
}); | ||
} | ||
[Symbol.asyncIterator]() { | ||
return __asyncGenerator(this, arguments, function* _a() { | ||
var e_1, _b; | ||
try { | ||
for (var _c = __asyncValues(this.getIterator(1)), _d; _d = yield __await(_c.next()), !_d.done;) { | ||
const [record] = _d.value; | ||
yield yield __await(record); | ||
} | ||
} | ||
catch (e_1_1) { e_1 = { error: e_1_1 }; } | ||
finally { | ||
try { | ||
if (_d && !_d.done && (_b = _c.return)) yield __await(_b.call(_c)); | ||
} | ||
finally { if (e_1) throw e_1.error; } | ||
} | ||
}); | ||
} | ||
getIterator(chunk, options = {}) { | ||
return __asyncGenerator(this, arguments, function* getIterator_1() { | ||
let offset = 0; | ||
let end = false; | ||
while (!end) { | ||
const { records, meta } = yield __await(this.getPaginated(Object.assign(Object.assign({}, options), { page: { size: chunk, offset } }))); | ||
yield yield __await(records); | ||
offset += chunk; | ||
end = !meta.page.more; | ||
} | ||
}); | ||
} | ||
getMany(options) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
// TODO: use options | ||
return this.repository.query(this); | ||
const { records } = yield this.getPaginated(options); | ||
return records; | ||
}); | ||
} | ||
getOne(options) { | ||
getOne(options = {}) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
// TODO: use options | ||
const arr = yield this.getMany(); // TODO, limit to 1 | ||
return arr[0] || null; | ||
const records = yield this.getMany(Object.assign(Object.assign({}, options), { page: { size: 1 } })); | ||
return records[0] || null; | ||
}); | ||
@@ -151,3 +230,3 @@ } | ||
return __awaiter(this, void 0, void 0, function* () { | ||
// Return number of affected rows | ||
// TODO: Return number of affected rows | ||
return 0; | ||
@@ -160,2 +239,25 @@ }); | ||
} | ||
nextPage(size, offset) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
return this.firstPage(size, offset); | ||
}); | ||
} | ||
previousPage(size, offset) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
return this.firstPage(size, offset); | ||
}); | ||
} | ||
firstPage(size, offset) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
return this.getPaginated({ page: { size, offset } }); | ||
}); | ||
} | ||
lastPage(size, offset) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
return this.getPaginated({ page: { size, offset, before: 'end' } }); | ||
}); | ||
} | ||
hasNextPage() { | ||
return this.meta.page.more; | ||
} | ||
} | ||
@@ -227,3 +329,3 @@ exports.Query = Query; | ||
if (resp.status === 204) | ||
return; | ||
return undefined; | ||
return resp.json(); | ||
@@ -244,11 +346,28 @@ }); | ||
} | ||
const obj = yield this.request('POST', `/tables/${this.table}/data`, body); | ||
return this.client.initObject(this.table, obj); | ||
const response = yield this.request('POST', `/tables/${this.table}/data`, body); | ||
if (!response) { | ||
throw new Error("The server didn't return any data for the query"); | ||
} | ||
// TODO: Review this, not sure we are properly initializing the object | ||
return this.client.initObject(this.table, response); | ||
}); | ||
} | ||
createMany(records) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
// TODO: Review the id of the records | ||
const response = yield this.request('POST', `/tables/${this.table}/bulk`, { records }); | ||
if (!response) { | ||
throw new Error("The server didn't return any data for the query"); | ||
} | ||
// TODO: Review this, not sure we are properly initializing the object | ||
return response.recordIDs.map((record) => this.client.initObject(this.table, { id: record })); | ||
}); | ||
} | ||
read(id) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
try { | ||
const obj = yield this.request('GET', `/tables/${this.table}/data/${id}`); | ||
return this.client.initObject(this.table, obj); | ||
const response = yield this.request('GET', `/tables/${this.table}/data/${id}`); | ||
if (!response) | ||
return null; | ||
return this.client.initObject(this.table, response); | ||
} | ||
@@ -264,4 +383,8 @@ catch (err) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
const obj = yield this.request('PUT', `/tables/${this.table}/data/${id}`, object); | ||
return this.client.initObject(this.table, obj); | ||
const response = yield this.request('PUT', `/tables/${this.table}/data/${id}`, object); | ||
if (!response) { | ||
throw new Error("The server didn't return any data for the query"); | ||
} | ||
// TODO: Review this, not sure we are properly initializing the object | ||
return this.client.initObject(this.table, response); | ||
}); | ||
@@ -271,6 +394,7 @@ } | ||
return __awaiter(this, void 0, void 0, function* () { | ||
// TODO: Return boolean? | ||
yield this.request('DELETE', `/tables/${this.table}/data/${id}`); | ||
}); | ||
} | ||
query(query) { | ||
executeQuery(query, options) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
@@ -285,6 +409,12 @@ const filter = { | ||
filter: Object.values(filter).some(Boolean) ? filter : undefined, | ||
sort: query.$sort | ||
sort: query.$sort, | ||
page: options === null || options === void 0 ? void 0 : options.page | ||
}; | ||
const result = yield this.request('POST', `/tables/${this.table}/query`, body); | ||
return result.records.map((record) => this.client.initObject(this.table, record)); | ||
const response = yield this.request('POST', `/tables/${this.table}/query`, body); | ||
if (!response) { | ||
throw new Error("The server didn't return any data for the query"); | ||
} | ||
const { meta, records: objects } = response; | ||
const records = objects.map((record) => this.client.initObject(this.table, record)); | ||
return new Page(query, meta, records); | ||
}); | ||
@@ -348,3 +478,3 @@ } | ||
getBranch() { | ||
var e_1, _a; | ||
var e_2, _a; | ||
return __awaiter(this, void 0, void 0, function* () { | ||
@@ -368,3 +498,3 @@ if (this.branch) | ||
} | ||
catch (e_1_1) { e_1 = { error: e_1_1 }; } | ||
catch (e_2_1) { e_2 = { error: e_2_1 }; } | ||
finally { | ||
@@ -374,3 +504,3 @@ try { | ||
} | ||
finally { if (e_1) throw e_1.error; } | ||
finally { if (e_2) throw e_2.error; } | ||
} | ||
@@ -377,0 +507,0 @@ throw new Error('Unable to resolve branch value'); |
@@ -234,3 +234,6 @@ "use strict"; | ||
const expected = { method: 'POST', path: '/tables/users/query', body: {} }; | ||
expectRequest(users, expected, () => users.getMany(), { records: [] }); | ||
expectRequest(users, expected, () => users.getMany(), { | ||
records: [], | ||
meta: { page: { cursor: '', more: false } } | ||
}); | ||
})); | ||
@@ -240,3 +243,6 @@ test('query with one filter', () => __awaiter(void 0, void 0, void 0, function* () { | ||
const expected = { method: 'POST', path: '/tables/users/query', body: { filter: { $all: [{ name: 'foo' }] } } }; | ||
expectRequest(users, expected, () => users.filter('name', 'foo').getMany(), { records: [] }); | ||
expectRequest(users, expected, () => users.filter('name', 'foo').getMany(), { | ||
records: [], | ||
meta: { page: { cursor: '', more: false } } | ||
}); | ||
})); | ||
@@ -247,4 +253,4 @@ }); | ||
const { users } = buildClient(); | ||
const result = { records: [{ id: '1234' }] }; | ||
const expected = { method: 'POST', path: '/tables/users/query', body: {} }; | ||
const result = { records: [{ id: '1234' }], meta: { page: { cursor: '', more: false } } }; | ||
const expected = { method: 'POST', path: '/tables/users/query', body: { page: { size: 1 } } }; | ||
expectRequest(users, expected, () => __awaiter(void 0, void 0, void 0, function* () { | ||
@@ -257,4 +263,4 @@ const first = yield users.select().getOne(); | ||
const { users } = buildClient(); | ||
const result = { records: [] }; | ||
const expected = { method: 'POST', path: '/tables/users/query', body: {} }; | ||
const result = { records: [], meta: { page: { cursor: '', more: false } } }; | ||
const expected = { method: 'POST', path: '/tables/users/query', body: { page: { size: 1 } } }; | ||
expectRequest(users, expected, () => __awaiter(void 0, void 0, void 0, function* () { | ||
@@ -261,0 +267,0 @@ const first = yield users.getOne(); |
{ | ||
"name": "@xata.io/client", | ||
"version": "0.0.0-alpha.964f29b", | ||
"version": "0.0.0-alpha.c8f2e88", | ||
"description": "Xata.io SDK for TypeScript and JavaScript", | ||
@@ -23,3 +23,3 @@ "main": "./dist/index.js", | ||
"homepage": "https://github.com/xataio/client-ts/blob/main/client/README.md", | ||
"gitHead": "964f29b3568a1a4e35119c1152b5ba33c494a1fc" | ||
"gitHead": "c8f2e8877faf74729601a36ec10b25938fee4a38" | ||
} |
@@ -267,3 +267,3 @@ import { BaseClient, RestRepository, XataClientOptions, XataError, XataRecord } from './'; | ||
callback: () => void, | ||
response?: unknown | ||
response?: any | ||
) { | ||
@@ -289,3 +289,6 @@ const request = jest.fn(async () => response); | ||
const expected = { method: 'POST', path: '/tables/users/query', body: {} }; | ||
expectRequest(users, expected, () => users.getMany(), { records: [] }); | ||
expectRequest(users, expected, () => users.getMany(), { | ||
records: [], | ||
meta: { page: { cursor: '', more: false } } | ||
}); | ||
}); | ||
@@ -297,3 +300,6 @@ | ||
const expected = { method: 'POST', path: '/tables/users/query', body: { filter: { $all: [{ name: 'foo' }] } } }; | ||
expectRequest(users, expected, () => users.filter('name', 'foo').getMany(), { records: [] }); | ||
expectRequest(users, expected, () => users.filter('name', 'foo').getMany(), { | ||
records: [], | ||
meta: { page: { cursor: '', more: false } } | ||
}); | ||
}); | ||
@@ -306,4 +312,4 @@ }); | ||
const result = { records: [{ id: '1234' }] }; | ||
const expected = { method: 'POST', path: '/tables/users/query', body: {} }; | ||
const result = { records: [{ id: '1234' }], meta: { page: { cursor: '', more: false } } }; | ||
const expected = { method: 'POST', path: '/tables/users/query', body: { page: { size: 1 } } }; | ||
expectRequest( | ||
@@ -323,4 +329,4 @@ users, | ||
const result = { records: [] }; | ||
const expected = { method: 'POST', path: '/tables/users/query', body: {} }; | ||
const result = { records: [], meta: { page: { cursor: '', more: false } } }; | ||
const expected = { method: 'POST', path: '/tables/users/query', body: { page: { size: 1 } } }; | ||
expectRequest( | ||
@@ -327,0 +333,0 @@ users, |
199
src/index.ts
@@ -93,3 +93,9 @@ export interface XataRecord { | ||
type CursorNavigationOptions = { first?: string } | { last?: string } | { after?: string; before?: string }; | ||
type OffsetNavigationOptions = { size?: number; offset?: number }; | ||
type PaginationOptions = CursorNavigationOptions & OffsetNavigationOptions; | ||
type BulkQueryOptions<T> = { | ||
page?: PaginationOptions; | ||
/** TODO: Not implemented yet | ||
filter?: FilterConstraints<T>; | ||
@@ -102,2 +108,3 @@ sort?: | ||
| keyof T; | ||
**/ | ||
}; | ||
@@ -107,3 +114,51 @@ | ||
export class Query<T, R = T> { | ||
type QueryMeta = { page: { cursor: string; more: boolean } }; | ||
interface BasePage<T, R> { | ||
query: Query<T, R>; | ||
meta: QueryMeta; | ||
records: R[]; | ||
nextPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
previousPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
firstPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
lastPage(size?: number, offset?: number): Promise<Page<T, R>>; | ||
hasNextPage(): boolean; | ||
} | ||
class Page<T, R> implements BasePage<T, R> { | ||
readonly query: Query<T, R>; | ||
readonly meta: QueryMeta; | ||
readonly records: R[]; | ||
constructor(query: Query<T, R>, meta: QueryMeta, records: R[] = []) { | ||
this.query = query; | ||
this.meta = meta; | ||
this.records = records; | ||
} | ||
async nextPage(size?: number, offset?: number): Promise<Page<T, R>> { | ||
return this.query.getPaginated({ page: { size, offset, after: this.meta.page.cursor } }); | ||
} | ||
async previousPage(size?: number, offset?: number): Promise<Page<T, R>> { | ||
return this.query.getPaginated({ page: { size, offset, before: this.meta.page.cursor } }); | ||
} | ||
async firstPage(size?: number, offset?: number): Promise<Page<T, R>> { | ||
return this.query.getPaginated({ page: { size, offset, first: this.meta.page.cursor } }); | ||
} | ||
async lastPage(size?: number, offset?: number): Promise<Page<T, R>> { | ||
return this.query.getPaginated({ page: { size, offset, last: this.meta.page.cursor } }); | ||
} | ||
// TODO: We need to add something on the backend if we want a hasPreviousPage | ||
hasNextPage(): boolean { | ||
return this.meta.page.more; | ||
} | ||
} | ||
export class Query<T, R = T> implements BasePage<T, R> { | ||
table: string; | ||
@@ -118,2 +173,7 @@ repository: Repository<T>; | ||
// Cursor pagination | ||
readonly query: Query<T, R> = this; | ||
readonly meta: QueryMeta = { page: { cursor: 'start', more: true } }; | ||
readonly records: R[] = []; | ||
constructor(repository: Repository<T> | null, table: string, data: Partial<Query<T, R>>, parent?: Query<T, R>) { | ||
@@ -238,17 +298,37 @@ if (repository) { | ||
// TODO: pagination. Maybe implement different methods for different type of paginations | ||
// and one to simply get the first records returned by the query with no pagination. | ||
async getPaginated(options?: BulkQueryOptions<T>): Promise<Page<T, R>> { | ||
return this.repository.executeQuery(this, options); | ||
} | ||
async *[Symbol.asyncIterator](): AsyncIterableIterator<R> { | ||
for await (const [record] of this.getIterator(1)) { | ||
yield record; | ||
} | ||
} | ||
async *getIterator(chunk: number, options: Omit<BulkQueryOptions<T>, 'page'> = {}): AsyncGenerator<R[]> { | ||
let offset = 0; | ||
let end = false; | ||
while (!end) { | ||
const { records, meta } = await this.getPaginated({ ...options, page: { size: chunk, offset } }); | ||
yield records; | ||
offset += chunk; | ||
end = !meta.page.more; | ||
} | ||
} | ||
async getMany(options?: BulkQueryOptions<T>): Promise<R[]> { | ||
// TODO: use options | ||
return this.repository.query(this); | ||
const { records } = await this.getPaginated(options); | ||
return records; | ||
} | ||
async getOne(options?: BulkQueryOptions<T>): Promise<R | null> { | ||
// TODO: use options | ||
const arr = await this.getMany(); // TODO, limit to 1 | ||
return arr[0] || null; | ||
async getOne(options: Omit<BulkQueryOptions<T>, 'page'> = {}): Promise<R | null> { | ||
const records = await this.getMany({ ...options, page: { size: 1 } }); | ||
return records[0] || null; | ||
} | ||
async deleteAll(): Promise<number> { | ||
// Return number of affected rows | ||
// TODO: Return number of affected rows | ||
return 0; | ||
@@ -261,2 +341,22 @@ } | ||
} | ||
async nextPage(size?: number, offset?: number): Promise<Page<T, R>> { | ||
return this.firstPage(size, offset); | ||
} | ||
async previousPage(size?: number, offset?: number): Promise<Page<T, R>> { | ||
return this.firstPage(size, offset); | ||
} | ||
async firstPage(size?: number, offset?: number): Promise<Page<T, R>> { | ||
return this.getPaginated({ page: { size, offset } }); | ||
} | ||
async lastPage(size?: number, offset?: number): Promise<Page<T, R>> { | ||
return this.getPaginated({ page: { size, offset, before: 'end' } }); | ||
} | ||
hasNextPage(): boolean { | ||
return this.meta.page.more; | ||
} | ||
} | ||
@@ -271,2 +371,4 @@ | ||
abstract createMany(objects: Selectable<T>[]): Promise<T[]>; | ||
abstract read(id: string): Promise<T | null>; | ||
@@ -279,3 +381,3 @@ | ||
// Used by the Query object internally | ||
abstract query<R>(query: Query<T, R>): Promise<R[]>; | ||
abstract executeQuery<R>(query: Query<T, R>, options?: BulkQueryOptions<T>): Promise<Page<T, R>>; | ||
} | ||
@@ -314,3 +416,3 @@ | ||
async request(method: string, path: string, body?: unknown) { | ||
async request<T>(method: string, path: string, body?: unknown): Promise<T | undefined> { | ||
const { databaseURL, apiKey } = this.client.options; | ||
@@ -328,2 +430,3 @@ const branch = await this.client.getBranch(); | ||
}); | ||
if (!resp.ok) { | ||
@@ -343,3 +446,4 @@ try { | ||
} | ||
if (resp.status === 204) return; | ||
if (resp.status === 204) return undefined; | ||
return resp.json(); | ||
@@ -360,10 +464,37 @@ } | ||
} | ||
const obj = await this.request('POST', `/tables/${this.table}/data`, body); | ||
return this.client.initObject(this.table, obj); | ||
const response = await this.request<{ | ||
id: string; | ||
xata: { version: number }; | ||
}>('POST', `/tables/${this.table}/data`, body); | ||
if (!response) { | ||
throw new Error("The server didn't return any data for the query"); | ||
} | ||
// TODO: Review this, not sure we are properly initializing the object | ||
return this.client.initObject(this.table, response); | ||
} | ||
async createMany(records: T[]): Promise<T[]> { | ||
// TODO: Review the id of the records | ||
const response = await this.request<{ | ||
recordIDs: string[]; | ||
}>('POST', `/tables/${this.table}/bulk`, { records }); | ||
if (!response) { | ||
throw new Error("The server didn't return any data for the query"); | ||
} | ||
// TODO: Review this, not sure we are properly initializing the object | ||
return response.recordIDs.map((record) => this.client.initObject(this.table, { id: record })); | ||
} | ||
async read(id: string): Promise<T | null> { | ||
try { | ||
const obj = await this.request('GET', `/tables/${this.table}/data/${id}`); | ||
return this.client.initObject(this.table, obj); | ||
const response = await this.request< | ||
T & { id: string; xata: { version: number; table?: string; warnings?: string[] } } | ||
>('GET', `/tables/${this.table}/data/${id}`); | ||
if (!response) return null; | ||
return this.client.initObject(this.table, response); | ||
} catch (err) { | ||
@@ -376,11 +507,20 @@ if ((err as XataError).status === 404) return null; | ||
async update(id: string, object: Partial<T>): Promise<T> { | ||
const obj = await this.request('PUT', `/tables/${this.table}/data/${id}`, object); | ||
return this.client.initObject(this.table, obj); | ||
const response = await this.request<{ | ||
id: string; | ||
xata: { version: number }; | ||
}>('PUT', `/tables/${this.table}/data/${id}`, object); | ||
if (!response) { | ||
throw new Error("The server didn't return any data for the query"); | ||
} | ||
// TODO: Review this, not sure we are properly initializing the object | ||
return this.client.initObject(this.table, response); | ||
} | ||
async delete(id: string) { | ||
// TODO: Return boolean? | ||
await this.request('DELETE', `/tables/${this.table}/data/${id}`); | ||
} | ||
async query<R>(query: Query<T, R>): Promise<R[]> { | ||
async executeQuery<R>(query: Query<T, R>, options?: BulkQueryOptions<T>): Promise<Page<T, R>> { | ||
const filter = { | ||
@@ -392,8 +532,21 @@ $any: query.$any, | ||
}; | ||
const body = { | ||
filter: Object.values(filter).some(Boolean) ? filter : undefined, | ||
sort: query.$sort | ||
sort: query.$sort, | ||
page: options?.page | ||
}; | ||
const result = await this.request('POST', `/tables/${this.table}/query`, body); | ||
return result.records.map((record: object) => this.client.initObject(this.table, record)); | ||
const response = await this.request<{ | ||
records: object[]; | ||
meta: { page: { cursor: string; more: boolean } }; | ||
}>('POST', `/tables/${this.table}/query`, body); | ||
if (!response) { | ||
throw new Error("The server didn't return any data for the query"); | ||
} | ||
const { meta, records: objects } = response; | ||
const records = objects.map((record) => this.client.initObject<R>(this.table, record)); | ||
return new Page(query, meta, records); | ||
} | ||
@@ -400,0 +553,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
87503
1907