@statezero/core 0.1.42 → 0.1.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -67,14 +67,15 @@ export class MetricRegistry {
|
|
|
67
67
|
}
|
|
68
68
|
const stores = [];
|
|
69
69
|
const modelClass = queryset.ModelClass;
|
|
70
|
-
const operationAst = queryset.build();
|
|
71
70
|
for (const [key, entry] of this._stores.entries()) {
|
|
72
71
|
const store = entry.store;
|
|
73
72
|
// First check if model class matches
|
|
74
73
|
if (store.modelClass !== modelClass) {
|
|
75
74
|
continue;
|
|
76
75
|
}
|
|
77
|
-
|
|
76
|
+
if (store.queryset.semanticKey != queryset.semanticKey) {
|
|
77
|
+
continue;
|
|
78
|
+
}
|
|
78
79
|
stores.push(store);
|
|
79
80
|
}
|
|
80
81
|
return stores;
|
package/package.json
CHANGED