We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 134e3df commit 7d3575bCopy full SHA for 7d3575b
src/drivers/default/builders/queryBuilder.ts
@@ -53,7 +53,7 @@ export class QueryBuilder<
53
54
public async get(limit: number = 15, page: number = 1): Promise<Array<M>> {
55
const response = await this.httpClient.request(
56
- '/',
+ '',
57
HttpMethod.GET,
58
this.prepareQueryParams({ limit, page })
59
);
@@ -93,7 +93,7 @@ export class QueryBuilder<
93
94
public async store(attributes: Attributes): Promise<M> {
95
96
97
HttpMethod.POST,
98
this.prepareQueryParams(),
99
attributes
0 commit comments