本文整理汇总了TypeScript中@orbit/data.buildQuery函数的典型用法代码示例。如果您正苦于以下问题:TypeScript buildQuery函数的具体用法?TypeScript buildQuery怎么用?TypeScript buildQuery使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了buildQuery函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: query
query(queryOrExpression: QueryOrExpression, options?: object, id?: string) {
const query = buildQuery(
queryOrExpression,
options,
id,
this._sourceCache.queryBuilder
);
const result = this._sourceCache.query(query);
return this._identityMap.lookupQueryResult(query, result);
}
开发者ID:orbitjs,项目名称:ember-orbit,代码行数:10,代码来源:cache.ts
示例2: query
query(queryOrExpression: QueryOrExpression, options?: object, id?: string) {
const query = buildQuery(
queryOrExpression,
options,
id,
this.source.queryBuilder
);
return this.source
.query(query)
.then(result => this.identityMap.lookupQueryResult(query, result));
}
开发者ID:orbitjs,项目名称:ember-orbit,代码行数:11,代码来源:store.ts
示例3: query
/**
* Queries the cache.
*/
query(
queryOrExpression: QueryOrExpression,
options?: object,
id?: string
): QueryResultData {
const query = buildQuery(
queryOrExpression,
options,
id,
this._queryBuilder
);
return this._query(query.expression);
}
开发者ID:orbitjs,项目名称:orbit.js,代码行数:16,代码来源:sync-record-cache.ts
示例4: query
/**
* Queries the cache.
*/
async query(
queryOrExpression: QueryOrExpression,
options?: object,
id?: string
): Promise<QueryResultData> {
const query = buildQuery(
queryOrExpression,
options,
id,
this._queryBuilder
);
return await this._query(query.expression);
}
开发者ID:orbitjs,项目名称:orbit.js,代码行数:16,代码来源:async-record-cache.ts
示例5: liveQuery
liveQuery(
queryOrExpression: QueryOrExpression,
options?: object,
id?: string
) {
const query = buildQuery(
queryOrExpression,
options,
id,
this.source.queryBuilder
);
return this.source.query(query).then(() => this.cache.liveQuery(query));
}
开发者ID:orbitjs,项目名称:ember-orbit,代码行数:13,代码来源:store.ts
示例6: liveQuery
liveQuery(
queryOrExpression: QueryOrExpression,
options?: object,
id?: string
) {
const query = buildQuery(
queryOrExpression,
options,
id,
this._sourceCache.queryBuilder
);
return LiveQuery.create({
_query: query,
_sourceCache: this._sourceCache,
_identityMap: this._identityMap
});
}
开发者ID:orbitjs,项目名称:ember-orbit,代码行数:18,代码来源:cache.ts
注:本文中的@orbit/data.buildQuery函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论