diff --git a/fqm-speed-comparison/.gitignore b/fqm-speed-comparison/.gitignore deleted file mode 100644 index 9d969d06d..000000000 --- a/fqm-speed-comparison/.gitignore +++ /dev/null @@ -1,135 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* -.pnpm-debug.log* - -# Diagnostic reports (https://nodejs.org/api/report.html) -report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage -*.lcov - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# Snowpack dependency directory (https://snowpack.dev/) -web_modules/ - -# TypeScript cache -*.tsbuildinfo - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Optional stylelint cache -.stylelintcache - -# Microbundle cache -.rpt2_cache/ -.rts2_cache_cjs/ -.rts2_cache_es/ -.rts2_cache_umd/ - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variable files -.env -.env.development.local -.env.test.local -.env.production.local -.env.local - -# parcel-bundler cache (https://parceljs.org/) -.cache -.parcel-cache - -# Next.js build output -.next -out - -# Nuxt.js build / generate output -.nuxt -dist - -# Gatsby files -.cache/ -# Comment in the public line in if your project uses Gatsby and not Next.js -# https://nextjs.org/blog/next-9-1#public-directory-support -# public - -# vuepress build output -.vuepress/dist - -# vuepress v2.x temp and cache directory -.temp -.cache - -# Docusaurus cache and generated files -.docusaurus - -# Serverless directories -.serverless/ - -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ - -# TernJS port file -.tern-port - -# Stores VSCode versions used for testing VSCode extensions -.vscode-test - -# yarn v2 -.yarn/cache -.yarn/unplugged -.yarn/build-state.yml -.yarn/install-state.gz -.pnp.* - -.DS_Store -benchmark/ -results.json -results-descriptions.json diff --git a/fqm-speed-comparison/.prettierrc b/fqm-speed-comparison/.prettierrc deleted file mode 100644 index 2bf6b70d5..000000000 --- a/fqm-speed-comparison/.prettierrc +++ /dev/null @@ -1,7 +0,0 @@ -{ - "tabWidth": 2, - "useTabs": false, - "semi": true, - "singleQuote": true, - "printWidth": 80 -} diff --git a/fqm-speed-comparison/README.md b/fqm-speed-comparison/README.md deleted file mode 100644 index e1a1fd6e3..000000000 --- a/fqm-speed-comparison/README.md +++ /dev/null @@ -1,36 +0,0 @@ -# fqm-speed-comparison - -This script runs a series of benchmarks against instance(s) of [mod-fqm-manager](https://github.com/folio-org/mod-fqm-manager) to compare speeds across versions and time. - -## Requirements - -- A running instance of mod-fqm-manager - -## Usage - -To benchmark, run the following (`QUERY_VERSION` refers to the index used in the `queries.json5` file): - -```sh -USER=ABCDEF \ -PASSWORD=123456 \ -TENANT=fs09000000 \ -OKAPI_URL=http://okapi:9130 \ -QUERY_VERSION=1 \ -LABEL=LABEL_HERE \ -PG_HOST=... \ -PG_PORT=... \ -PG_DATABASE=... \ -PG_USER=... \ -PG_PASSWORD=... \ -bun benchmark.ts -``` - -Once you've run this, `LABEL_HERE.json` and `LABEL_HERE-description.json` will have been created in the `raw-results` directory. - -Once all datasets are ready, run: - -```sh -bun chart.ts key1 key2 key3 ... -``` - -This will create a report `results.html`. diff --git a/fqm-speed-comparison/benchmark.ts b/fqm-speed-comparison/benchmark.ts deleted file mode 100644 index 157bcf52f..000000000 --- a/fqm-speed-comparison/benchmark.ts +++ /dev/null @@ -1,332 +0,0 @@ -import { writeFile } from 'fs'; -import { parse, toSeconds } from 'iso8601-duration'; -import json5 from 'json5'; -import kyBase from 'ky-universal'; -import postgres from 'postgres'; -import { exit } from 'process'; -import { promisify } from 'util'; - -const USERNAME = process.env.USER ?? 'folio'; -const PASSWORD = process.env.PASSWORD ?? 'folio'; -const TENANT = process.env.TENANT ?? 'fs09000000'; -const OKAPI_URL = process.env.OKAPI_URL ?? 'http://localhost:9130'; -const LABEL = process.env.LABEL ?? 'results'; -const QUERY_VERSION = +(process.env.QUERY_VERSION ?? 0); - -const pg = postgres({ - host: process.env.PG_HOST ?? 'localhost', - port: +(process.env.PG_PORT ?? 5432), - database: process.env.PG_DATABASE ?? 'folio', - username: process.env.PG_USER ?? 'folio', - password: process.env.PG_PASSWORD ?? '', -}); - -const resultsFile = `raw-results/${LABEL}.json`; -const descriptionsFile = `raw-results/${LABEL}-descriptions.json`; - -async function auth(): Promise { - return ( - await kyBase.post(`${OKAPI_URL}/authn/login`, { - headers: { - 'x-okapi-tenant': TENANT, - 'content-type': 'application/json', - }, - json: { - username: USERNAME, - password: PASSWORD, - tenant: TENANT, - }, - }) - ).headers.get('x-okapi-token')!; -} - -const ky = kyBase.extend({ - prefixUrl: OKAPI_URL, - headers: { - accept: 'application/json', - 'content-type': 'application/json', - 'x-okapi-tenant': TENANT, - 'x-okapi-token': await auth(), - }, -}); - -function getThisVersionOf(arr: T[]): T { - return arr[Math.min(QUERY_VERSION, arr.length - 1)]; -} - -async function getQueries(includeEachFieldsVariant: boolean): Promise< - { - label: string; - entityTypeId: string; - query: unknown; - fields: string[]; - }[] -> { - const queries: Record< - string, - { - entityType: string[]; - queries: { label: string; queries: unknown[] }[]; - fields: { label: string; fields: string[][] }[]; - } - > = await json5.parse(await Bun.file('queries.json5').text()); - - const fullSet: { - label: string; - entityTypeId: string; - query: unknown; - fields: string[]; - }[] = []; - - Object.entries(queries).forEach( - ([baseLabel, { entityType, queries, fields }]) => { - const entityTypeId = getThisVersionOf(entityType); - - queries.forEach((queryList) => - fields - .slice(0, includeEachFieldsVariant ? fields.length : 1) - .forEach((fieldset) => { - const label = [baseLabel, queryList.label, fieldset.label].join( - '|' - ); - - const query = getThisVersionOf(queryList.queries); - const queryFields = getThisVersionOf(fieldset.fields); - - if (!query || !queryFields || !entityTypeId) { - return; - } - - fullSet.push({ - label, - entityTypeId, - query, - fields: queryFields, - }); - }) - ); - } - ); - - return fullSet; -} - -const queries = await getQueries(false); -const queriesWithFields = await getQueries(true); - -let measures: Record = {}; -if (await Bun.file(resultsFile).exists()) { - measures = JSON.parse(await Bun.file(resultsFile).text()); -} -let descriptions: Record = {}; -if (await Bun.file(descriptionsFile).exists()) { - descriptions = JSON.parse(await Bun.file(descriptionsFile).text()); -} - -async function save() { - await promisify(writeFile)(resultsFile, JSON.stringify(measures)); - await promisify(writeFile)(descriptionsFile, JSON.stringify(descriptions)); -} - -async function measure( - name: string, - run: ( - | { - setup: () => Promise | T; - fn: (res: Awaited) => Promise | R; - teardown: (res: Awaited) => Promise | void; - } - | { - fn: () => Promise | R; - } - ) & { describe: (r: R) => Promise | string }, - maxTimeMs: number -) { - measures[name] = measures[name] ?? []; - - process.stdout.write(`${name}: starting`); - - let res: Awaited | undefined = undefined; - if ('setup' in run) { - process.stdout.clearLine(0); - process.stdout.cursorTo(0); - process.stdout.write(`${name}: setting up`); - res = await run.setup(); - process.stdout.clearLine(0); - process.stdout.cursorTo(0); - process.stdout.write(`${name}: setup complete`); - } - - let description: string | undefined = undefined; - let overallStart = Date.now(); - let initialLength = measures[name].length; - - while ( - measures[name].length < 5 + initialLength || - Date.now() - overallStart < maxTimeMs - ) { - const start = Date.now(); - let result: R; - if ('setup' in run) { - result = await run.fn(res as Awaited); - } else { - result = await run.fn(); - } - const end = Date.now(); - - if (description === undefined) { - // should always be the same; only calculate it once - description = await run.describe(result); - } - - measures[name].push(end - start); - process.stdout.clearLine(0); - process.stdout.cursorTo(0); - process.stdout.write( - `${name} (${description}): ${ - measures[name].length - initialLength - } samples, last ${end - start}ms` - ); - } - - if ('teardown' in run) { - await save(); - - process.stdout.clearLine(0); - process.stdout.cursorTo(0); - process.stdout.write(`${name}: tearing down`); - await run.teardown(res as Awaited); - process.stdout.clearLine(0); - process.stdout.cursorTo(0); - process.stdout.write(`${name}: teardown complete`); - } - - descriptions[name.replace(/\|all$/, '')] = description ?? ''; - - process.stdout.clearLine(0); - process.stdout.cursorTo(0); - console.log( - `${name} (${description}): approx ${( - measures[name].reduce((a, b) => a + b, 0) / measures[name].length - ).toFixed(2)}ms (${measures[name].length} samples)` - ); - - await save(); -} - -async function measureEntityTypes() { - const entityTypes = await ky - .get('entity-types') - .json<{ id: string; label: string }[]>(); - - await measure( - 'get-all-entity-types', - { - fn: () => ky.get('entity-types'), - describe: async (response) => - `${(await response.json()).length} entities`, - }, - 5000 - ); - for (const { id, label } of entityTypes) { - await measure( - `get-entity-type-${label.toLowerCase()}`, - { - fn: () => ky.get(`entity-types/${id}`), - describe: () => '', - }, - 5000 - ); - } -} - -async function measureRefreshes() { - async function waitForRefresh(listId: string) { - return new Promise((resolve, reject) => { - const checkIfDone = async () => { - try { - const response = await (await ky.get(`lists/${listId}`)).json(); - if ( - response.successRefresh?.status === 'SUCCESS' && - !('inProgressRefresh' in response) - ) { - resolve(response.successRefresh.recordsCount); - } else if ('failedRefresh' in response) { - reject(new Error(JSON.stringify(response.failedRefresh, null, 2))); - } else { - setTimeout(checkIfDone, 50); - } - } catch (e) { - console.error(e); - setTimeout(checkIfDone, 0); - } - }; - checkIfDone(); - }); - } - - for (const { label, entityTypeId, query, fields } of queries) { - // shouldn't need this... - delete (query as { _version?: string })._version; - - await measure( - label + '|all', - { - setup: async () => { - const list = await ( - await ky.post('lists', { - json: { - name: `benchmark-${label}`, - description: JSON.stringify( - { label, entityTypeId, query, fields }, - null, - 2 - ), - entityTypeId, - fqlQuery: JSON.stringify(query), - fields, - isActive: true, - isPrivate: false, - }, - }) - ).json(); - - return list; - }, - fn: async (list) => { - await ky.post(`lists/${list.id}/refresh`); - - return await waitForRefresh(list.id); - }, - describe: (count) => `${count} records`, - teardown: async (list) => { - const refreshes = await pg` - SELECT metadata - FROM ${pg.unsafe(TENANT + '_mod_lists.list_refresh_details')} - WHERE list_id = ${list.id} AND status = 'SUCCESS';`; - - for (const { - metadata: { WAIT_FOR_QUERY_COMPLETION, IMPORT_RESULTS }, - } of refreshes) { - measures[label + '|query'] = measures[label + '|query'] ?? []; - measures[label + '|query'].push( - toSeconds(parse(WAIT_FOR_QUERY_COMPLETION)) * 1000 - ); - - measures[label + '|import-results'] = - measures[label + '|import-results'] ?? []; - measures[label + '|import-results'].push( - toSeconds(parse(IMPORT_RESULTS)) * 1000 - ); - } - - await ky.delete(`lists/${list.id}`); - }, - }, - 60000 - ); - } -} - -await measureEntityTypes(); -// await measureRefreshes(); diff --git a/fqm-speed-comparison/bun.lockb b/fqm-speed-comparison/bun.lockb deleted file mode 100755 index bf925f3d6..000000000 Binary files a/fqm-speed-comparison/bun.lockb and /dev/null differ diff --git a/fqm-speed-comparison/chart.ts b/fqm-speed-comparison/chart.ts deleted file mode 100644 index 42d4f02e0..000000000 --- a/fqm-speed-comparison/chart.ts +++ /dev/null @@ -1,502 +0,0 @@ -import { - BoxAndWiskers, - BoxPlotController, -} from '@sgratzl/chartjs-chart-boxplot'; -import { - CategoryScale, - Chart, - ChartConfiguration, - LinearScale, -} from 'chart.js'; -import { randomUUID } from 'crypto'; -import { Stats } from 'fast-stats'; -import { readFileSync } from 'fs'; -import json5 from 'json5'; - -Chart.register(BoxPlotController, BoxAndWiskers, LinearScale, CategoryScale); - -const COLORS = ['#f007', '#0f07', '#00f7']; - -const keys = Bun.argv.slice(2); -const results: Record> = {}; -const descriptions: Record> = {}; -keys - .map((f) => [f, readFileSync(`raw-results/${f}.json`, 'utf8')] as const) - .map(([f, s]) => [f, JSON.parse(s) as Record] as const) - .forEach(([f, r]) => (results[f] = r)); -keys - .map( - (f) => - [f, readFileSync(`raw-results/${f}-descriptions.json`, 'utf8')] as const - ) - .map(([f, s]) => [f, JSON.parse(s) as Record] as const) - .forEach(([f, r]) => (descriptions[f] = r)); - -const metrics = [ - ...new Set([ - ...Object.values(results).flatMap((o) => Object.keys(o)), - ]), -].toSorted((a, b) => a.localeCompare(b)); - -const queries: Record< - string, - { - entityType: string[]; - queries: { label: string; queries: unknown[] }[]; - fields: { label: string; fields: string[][] }[]; - } -> = await json5.parse(await Bun.file('queries.json5').text()); - -function parseMetricLabel(label: string) { - const [entityType, query, fields, category] = label.split('|'); - return { entityType, query, fields, category }; -} -function getDescriptionMetricKey(label: string) { - const parsed = parseMetricLabel(label); - return `${parsed.entityType}|${parsed.query}|${parsed.fields}`; -} - -function renderChart(options: ChartConfiguration, rows = keys.length): string { - const id = randomUUID(); - return ` -
- -
- `; -} - -async function getSummaryTable() { - const summaryStats: Record< - string, - { - min: Stats; - median: Stats; - max: Stats; - mean: Stats; - stddev: Stats; - } - > = keys.reduce((acc, key) => { - return { - ...acc, - [key]: { - min: new Stats(), - median: new Stats(), - max: new Stats(), - mean: new Stats(), - stddev: new Stats(), - }, - }; - }, {}); - return ` - - - - - - - - - - - - - - - - - ${metrics - .map( - (m, metricIndex) => ` - - - ${keys - .map((k, keyIndex) => { - if (!results[k][m]) { - return ` - - - - - - - - - - `; - } - const stats = new Stats().push( - ...results[k][m].map((x) => x / 1000) - ); - const prevStats = - keyIndex === 0 || !results[keys[keyIndex - 1]][m] - ? null - : new Stats().push( - ...results[keys[keyIndex - 1]][m].map((x) => x / 1000) - ); - - if (keys.every((k) => m in results[k])) { - summaryStats[k].min.push(stats.min!); - summaryStats[k].median.push(stats.percentile(50)); - summaryStats[k].max.push(stats.max!); - summaryStats[k].mean.push(stats.amean()); - summaryStats[k].stddev.push(stats.stddev()); - } - - return ` - - - - - - - - - ${ - prevStats - ? purdyPercent( - (stats.percentile(50) / prevStats.percentile(50) - 1) * - 100 - ) - : '' - } - `; - }) - .join( - `` - )} - ` - ) - .join('')} - - - ${keys - .map((k, i) => { - const stats = summaryStats[k]; - const prevStats = i === 0 ? null : summaryStats[keys[i - 1]]; - return ` - - - ` - : ` - - - - - - - - ` - } - `; - }) - .join('')} - -
Test caseVersion# samplesminmedianmaxmeanstddevMOE∆ (median)
${m}
${[ - ...new Set( - Object.values(descriptions).map( - (v) => v[getDescriptionMetricKey(m)] - ) - ), - ].join('
')}
${k}--------${k}${stats.length}${stats.min!.toFixed(3)}${stats.percentile(50).toFixed(3)}${stats.max!.toFixed(3)}${stats.amean().toFixed(3)}${stats.stddev().toFixed(3)}±${stats.moe().toFixed(3)}-
${k} - ${ - prevStats - ? `${purdyPercent( - ((stats.min.sum - prevStats.min.sum) / prevStats.min.sum) * - 100, - stats.min.sum.toFixed(3) + '
', - true - )}${purdyPercent( - ((stats.median.sum - prevStats.median.sum) / - prevStats.median.sum) * - 100, - stats.median.sum.toFixed(3) + '
' - )}${purdyPercent( - ((stats.max.sum - prevStats.max.sum) / prevStats.max.sum) * - 100, - stats.max.sum.toFixed(3) + '
', - true - )}${purdyPercent( - ((stats.mean.sum - prevStats.mean.sum) / prevStats.mean.sum) * - 100, - stats.mean.sum.toFixed(3) + '
' - )}${purdyPercent( - ((stats.stddev.sum - prevStats.stddev.sum) / - prevStats.stddev.sum) * - 100, - stats.stddev.sum.toFixed(3) + '
', - true - )}
--${stats.min.sum.toFixed(3)}${stats.median.sum.toFixed(3)}${stats.max.sum.toFixed(3)}${stats.mean.sum.toFixed(3)}${stats.stddev.sum.toFixed(3)}--
`; -} - -function getMetricInfo(metric: string) { - return ` -
-

${metric.replaceAll('|', ' • ')}

-
- Query -
-      ${JSON.stringify(
-        {
-          entityType: queries[parseMetricLabel(metric).entityType].entityType,
-          query: queries[parseMetricLabel(metric).entityType].queries.find(
-            (q) => q.label === parseMetricLabel(metric).query
-          )?.queries,
-          fields: queries[parseMetricLabel(metric).entityType].fields.find(
-            (f) => f.label === parseMetricLabel(metric).fields
-          )?.fields,
-        },
-        null,
-        2
-      )}
-      
-
- - - - - - - - - - - - - - - - - - - - - - ${keys - .filter((k) => metric in results[k]) - .map((k) => { - const stats = new Stats().push( - results[k][metric].map((x) => x / 1000) - ); - return ` - - - - - - - - - - - - - - - - - `; - }) - .join('')} - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
${k}${descriptions[k][getDescriptionMetricKey(metric)]}${stats.length}${stats.min!.toFixed(3)}${stats.percentile(25).toFixed(3)}${stats.percentile(50).toFixed(3)}${stats.percentile(75).toFixed(3)}${stats.max!.toFixed(3)}${Math.abs( - stats.range()[1] - stats.range()[0] - ).toFixed(3)}${stats.iqr().amean().toFixed(3)}${stats.amean().toFixed(3)}${stats.stddev().toFixed(3)}±${stats.moe().toFixed(3)}${(stats.amean() - stats.moe()).toFixed(3)}${(stats.amean() + stats.moe()).toFixed(3)}
- - ${renderChart({ - type: 'boxplot', - data: { - labels: [metric], - datasets: keys - .filter((k) => metric in results[k]) - .map((k, i) => ({ - label: k, - backgroundColor: COLORS[i], - borderColor: 'black', - borderWidth: 1, - outlierColor: 'black', - outlierBackgroundColor: 'black', - padding: 10, - itemRadius: 0, - meanBackgroundColor: 'black', - data: [results[k][metric].map((x) => x / 1000)], - })), - }, - options: { - responsive: false, - maintainAspectRatio: false, - indexAxis: 'y', - scales: { - x: { - beginAtZero: false, - }, - y: { - beginAtZero: false, - }, - }, - }, - })} - -
-
`; -} - -const result = ` - - - - - - - - -

Results

-

All datapoints are in seconds unless otherwise specified

- - -
- - - -
- - -
- - ${await getSummaryTable()} -
- - - ${metrics - .filter((m) => m.includes('|')) - .map(getMetricInfo) - .join('')} - - -`.trim(); - -await Bun.write('results.html', result); -console.log('Done!'); - -function purdyPercent( - percent: number, - src: string = '', - isNerd: boolean = false -) { - const val = - percent >= 0 - ? `${src}+${percent.toFixed(2)}%` - : `${src}${percent.toFixed(2)}%`; - const clazz = isNerd ? 'nerd' : ''; - const template = (color: string) => - `${val}`; - - if (percent > 25) { - return template('#E57373; font-weight: bold;'); - } else if (percent > 10) { - return template('#EF9A9A'); - } else if (percent > 5) { - return template('#FFCDD2'); - } else if (percent > 2) { - return template('#FFEBEE'); - } else if (percent >= 0) { - return template('#FFFFFF'); - } else if (percent >= -2) { - return template('#FFFFFF'); - } else if (percent > -5) { - return template('#E8F5E9'); - } else if (percent > -10) { - return template('#C8E6C9'); - } else if (percent > -15) { - return template('#A5D6A7'); - } else if (percent > -20) { - return template('#81C784'); - } else if (percent > -25) { - return template('#66BB6A'); - } else { - return template('#4CAF50'); - } -} diff --git a/fqm-speed-comparison/package.json b/fqm-speed-comparison/package.json deleted file mode 100644 index 42262dd3c..000000000 --- a/fqm-speed-comparison/package.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "name": "fqm-speed-comparison", - "version": "1.0.0", - "main": "benchmark.ts", - "repository": "https://github.com/ncovercash/fqm-speed-comparison", - "author": "Noah Overcash ", - "license": "Apache-2.0", - "private": false, - "type": "module", - "devDependencies": { - "@types/fast-stats": "^0.0.35", - "@types/node": "^22.1.0", - "typescript": "^5.5.4", - "@types/bun": "latest" - }, - "scripts": { - "benchmark": "benchmark.ts", - "chart": "chart.ts" - }, - "dependencies": { - "@sgratzl/chartjs-chart-boxplot": "^4.4.1", - "chart.js": "^4.4.3", - "chartjs-chart-error-bars": "^4.4.1", - "chartjs-to-image": "^1.2.2", - "fast-stats": "^0.0.7", - "iso8601-duration": "^2.1.2", - "json5": "^2.2.3", - "ky": "^1.5.0", - "ky-universal": "^0.12.0", - "postgres": "^3.4.4", - "table": "^6.8.2" - } -} diff --git a/fqm-speed-comparison/queries.json5 b/fqm-speed-comparison/queries.json5 deleted file mode 100644 index 54986be9c..000000000 --- a/fqm-speed-comparison/queries.json5 +++ /dev/null @@ -1,1013 +0,0 @@ -{ - items: { - entityType: [ - '0cb79a4c-f7eb-4941-a104-745224ae0292', - 'd0213d22-32cf-490f-9196-d81c3c66e53f', - ], - queries: [ - { - label: 'status-in-array', - queries: [ - { - item_status: { - $in: [ - 'Aged to lost', - 'Claimed returned', - 'Declared lost', - 'Long missing', - 'Missing', - ], - }, - }, - { - _version: '1', - 'items.status_name': { - $in: [ - 'Aged to lost', - 'Claimed returned', - 'Declared lost', - 'Long missing', - 'Missing', - ], - }, - }, - ], - }, - { - label: 'status-not-available', - queries: [ - { item_status: { $ne: 'Available' } }, - { _version: '1', 'items.status_name': { $ne: 'Available' } }, - ], - }, - { - label: 'inst-updated-after-2019-07-20', - queries: [ - { instance_updated_date: { $gt: '2019-07-20' } }, - { _version: '1', 'instances.updated_at': { $gt: '2019-07-20' } }, - ], - }, - { - label: 'location-and-status', - queries: [ - { - $and: [ - { - item_permanent_location_id: { - $eq: 'f4619e23-d081-4447-a589-e278037e7f5e', - }, - }, - { - item_status: { - $in: ['Available', 'Awaiting delivery', 'Awaiting pickup'], - }, - }, - ], - }, - { - _version: '1', - $and: [ - { - 'permanent_location.id': { - $eq: 'f4619e23-d081-4447-a589-e278037e7f5e', - }, - }, - { - 'items.status_name': { - $in: ['Available', 'Awaiting delivery', 'Awaiting pickup'], - }, - }, - ], - }, - ], - }, - { - label: 'material-type-not-in', - queries: [ - { - item_material_type_id: { - $nin: [ - '025ba2c5-5e96-4667-a677-8186463aee69', - '1aa8050a-619b-40c6-9b9b-81a2aa9c0912', - ], - }, - }, - { - _version: '1', - 'mtypes.id': { - $nin: [ - '025ba2c5-5e96-4667-a677-8186463aee69', - '1aa8050a-619b-40c6-9b9b-81a2aa9c0912', - ], - }, - }, - ], - }, - { - label: 'item-copy-number-neq', - queries: [ - { item_copy_number: { $ne: 'c.1' } }, - { _version: '1', 'items.copy_number': { $ne: 'c.1' } }, - ], - }, - { - label: 'large-and', - queries: [ - { - $and: [ - { - item_effective_call_number_typeid: { - $eq: 'c73c17f4-9660-421b-bdfc-e1c6093dec13', - }, - }, - { - item_effective_location_id: { - $nin: [ - 'f4619e23-d081-4447-a589-e278037e7f5e', - 'b1dbe1fa-d76e-4db0-96b4-62c4a0674b29', - ], - }, - }, - { item_status: { $eq: 'Available' } }, - { - item_material_type_id: { - $eq: '025ba2c5-5e96-4667-a677-8186463aee69', - }, - }, - { item_updated_date: { $gt: '2019-07-01' } }, - ], - }, - { - _version: '1', - $and: [ - { - 'effective_call_number.id': { - $eq: 'c73c17f4-9660-421b-bdfc-e1c6093dec13', - }, - }, - { - 'effective_location.id': { - $nin: [ - 'f4619e23-d081-4447-a589-e278037e7f5e', - 'b1dbe1fa-d76e-4db0-96b4-62c4a0674b29', - ], - }, - }, - { 'items.status_name': { $eq: 'Available' } }, - { 'mtypes.id': { $eq: '025ba2c5-5e96-4667-a677-8186463aee69' } }, - { 'items.updated_date': { $gt: '2019-07-01' } }, - ], - }, - ], - }, - { - label: 'call-number-eq-and-regex', - queries: [ - { - $and: [ - { - item_effective_call_number_typeid: { - $eq: 'c73c17f4-9660-421b-bdfc-e1c6093dec13', - }, - }, - { item_effective_call_number: { $regex: '^D' } }, - ], - }, - { - _version: '1', - $and: [ - { - 'effective_call_number.id': { - $eq: 'c73c17f4-9660-421b-bdfc-e1c6093dec13', - }, - }, - { 'items.effective_call_number': { $regex: '^D' } }, - ], - }, - ], - }, - { - label: 'mat-type-and-date-range', - queries: [ - { - $and: [ - { - item_material_type_id: { - $eq: '025ba2c5-5e96-4667-a677-8186463aee69', - }, - }, - { item_created_date: { $gte: '2018-01-01' } }, - { item_created_date: { $lte: '2021-01-01' } }, - ], - }, - { - _version: '1', - $and: [ - { 'mtypes.id': { $eq: '025ba2c5-5e96-4667-a677-8186463aee69' } }, - { 'items.created_date': { $gte: '2018-01-01' } }, - { 'items.created_date': { $lte: '2021-01-01' } }, - ], - }, - ], - }, - // { - // label: 'inst-id-in-list-of-100', - // queries: [ - // { - // instance_id: { - // $in: [ - // '970a8b97-d58c-46e4-9766-f777a99abc2c', - // '7ef91348-858a-4860-925f-77077410249d', - // '9796d69d-0acf-429d-a23f-eaa5aac84c7c', - // '18350c18-3356-4b84-8414-cebad30b85a7', - // 'feb39de1-5012-485d-8d0a-d2e78eb7b66e', - // '015211ab-8731-46b6-97bc-44635a68f127', - // '605877b7-04f7-47be-bcba-c00f29f4e46f', - // 'f4befe1f-592c-4ce3-a1ef-4ddbfc0c795d', - // '8eb60a08-7763-4e67-b065-8d6bc497a76d', - // 'a841b38f-5bbc-4c75-b56a-d420b1357a1a', - // 'f815f77f-1184-4aad-891d-432ce655efda', - // 'ee7d27b9-cf08-4924-9824-8e4f091fe43d', - // 'be4003ac-6ffe-4ecd-ae4c-40704e18f0f1', - // '7615c877-dd16-4cf0-a6b2-ea87b3bd1920', - // '6d6af963-ef9e-49f5-81fb-1fa0a21ffc2c', - // '3b6b3d41-1a29-438a-bcd4-b5751a374022', - // '7f857a4a-0c80-4100-b023-2921c31478e1', - // 'cfc3afe5-c27f-4620-8bee-6a018ad3f77b', - // '79802695-758c-423b-9879-e841a1b85340', - // '4777f5ef-2ec6-42c5-930b-257bc3796c6b', - // '75832111-e53e-4bab-8588-339878082ee9', - // '56f038a0-ca0c-4536-8ce8-d433e7a7d7bd', - // '0d26ea6e-a504-4769-ac55-0fbc82518e9e', - // '605f5395-2e7e-4e9c-8227-92ab0f867519', - // 'abfa5486-3999-4979-b9af-f6dff924202c', - // 'e014573b-f781-4b9c-aabc-ee238f9e5fc4', - // 'e0939e6d-6eed-47ab-861c-73a1e7f1bde6', - // 'b9481b9d-d172-427f-a5fe-2ed3c2ebc084', - // 'd75f6b03-4a31-46f7-b783-3422a847ef4b', - // '268cbdbd-3bd0-4c79-a3bd-7ae299bfcbea', - // '52e25142-20d1-4d88-a698-b54e88fc7228', - // 'a6ee5d16-cf72-460b-a493-03515f95abe3', - // 'ca3c44fd-589e-4570-ba34-8cdbb9edd5ee', - // '046ebca3-e9b3-4626-96c9-716ab762c1e0', - // '549f1bdd-9001-41f9-b392-f938dd9e09a7', - // '35ec83c5-925d-4c99-bf1d-31b0f545306a', - // 'a2e487a9-22e4-493a-b535-90f635c3188e', - // 'a60d251b-98f8-4c50-bedd-51c19ade1097', - // '652cede0-912e-4b82-bb67-63911c8f4e4b', - // 'aa1f8d5c-e95f-4b32-9502-4fece067bd13', - // 'c432a54a-e70c-4a08-bfe7-0f679680d03a', - // '33defc5c-c716-49a8-ad12-68c5561f2e37', - // 'a675a800-8b6c-4e3c-9b80-96dab2c13c5a', - // '722d6afb-7193-4cd8-94b6-29c8cd5755ea', - // '1c6f8e3e-d362-4176-9d03-f79ccd825f11', - // '32829abd-c7c1-4cdd-9482-bc72600c870e', - // '36124a95-8105-4a45-b440-0e0c31d76a55', - // '388f73c0-168c-48a1-9138-11fdbf9137ec', - // 'fe6eb65e-88e0-4d76-990d-4f52c640766f', - // '9d8848c6-ad0e-4bd6-bdbe-f9d92b5f8277', - // '7164633b-6467-443c-a31a-f6b92789670f', - // '0ee11755-c9b2-4609-a6f5-72a166a8b346', - // 'c0d761be-7f17-42cf-92e8-b7c5d6ec6158', - // '029810a6-1a9e-495c-aeff-66c718aae034', - // '60cfa45e-64c5-4f9f-8fb7-9f0c514cd261', - // '57360221-15e3-4d96-a87a-91ee23620cf8', - // '9181894c-0419-4125-8689-0fe097183f30', - // 'c258e58f-93a0-4e19-9e1e-579ecd82b96d', - // '026b9755-ea4a-423c-9a09-a57cae5e967b', - // '43551bbc-2f87-4785-b50b-b81aa63e9b4f', - // '4505ec1a-4f49-47cc-840e-142bb7307369', - // '6b09aaa3-679c-47b7-8ffe-f17cdd78d974', - // 'b96e5e0b-03ba-469b-9b8f-c5f1fb95bd97', - // 'f0e96094-ef06-4517-972d-30f969ac7a8f', - // '5d86a840-0b35-4852-8281-e49a1a672df1', - // '4eea9cfd-a82a-404c-8d61-c6da6b4a68e5', - // '709a6361-c429-40a8-ab28-b07a4d05401a', - // '23b47706-14ca-431a-b8d6-b78c07e6a23a', - // '10018caf-f65b-4cd6-ad47-a6170187b236', - // '75a5b981-916c-45b1-b729-24a77c64cc0c', - // '21a64b66-8388-4a98-9a6e-ca2318699c55', - // 'd48e13b6-c0fb-4e41-9124-4022c11b202e', - // 'afe743f5-f665-4073-b8cc-039afd921705', - // 'e631b725-5480-4c02-b016-eb56f249fb22', - // '810ae066-dc2a-4dd8-851e-1e53a3d4aa29', - // 'bb8542fa-eafd-4b5d-85e3-da06996b6875', - // 'ecd1bbbf-7e01-4935-8693-d0f695e1b6a5', - // '896bb490-2e87-4949-9196-2216a4fc0132', - // '39e5ba1e-cdfe-4eed-9346-05431b4bc08d', - // 'a90d7b5a-778d-4e0a-aa3f-ff7d29cecb62', - // '0dc6ed30-5b60-4062-bfb2-6055e1c0daa5', - // 'f8ed6c81-27b7-4ebe-9228-d0a543c25162', - // '2f37f534-c277-4963-863d-a4b22cd96497', - // '9640357b-8f75-438d-b547-7f202cb98832', - // '7d07bf28-f49e-456d-aaa4-13fedf0b4102', - // 'd342a86c-7f1c-496b-ba49-24861e4ee457', - // '6ffe0b0a-08c6-4c9b-a7d7-d253a48003ad', - // '07773cdd-5214-4a62-bc12-25ffa029ffde', - // '69f4eff5-9146-4982-8cba-9c0f33c0e2ac', - // '6cc60b83-9f23-4881-9e7f-c99e8fe41522', - // '8196a26e-2b4b-44ff-aa1e-ac1e5b34862e', - // '9d2b3876-a95e-439f-92ad-d907cd3f357e', - // '51fcd405-6145-4e4c-bca9-7b5ec5d9faed', - // 'b314753a-bf8d-4aac-8520-80dda3d19f95', - // '2683d8c7-b30b-4c9e-b2ec-43742c48454f', - // '123ed703-7aed-483c-ad95-db4bb0085b4e', - // 'eb3d6d80-6cef-4157-a4b8-63e07f5e2b1b', - // '546b13e1-c158-49c7-9724-0f43bca94f20', - // '92da27a0-6dc3-4609-859d-011289f484c7', - // 'c75cfecf-0a8a-4cec-b7ec-245962042343', - // ], - // }, - // }, - // { - // _version: '1', - // 'instances.id': { - // $in: [ - // '970a8b97-d58c-46e4-9766-f777a99abc2c', - // '7ef91348-858a-4860-925f-77077410249d', - // '9796d69d-0acf-429d-a23f-eaa5aac84c7c', - // '18350c18-3356-4b84-8414-cebad30b85a7', - // 'feb39de1-5012-485d-8d0a-d2e78eb7b66e', - // '015211ab-8731-46b6-97bc-44635a68f127', - // '605877b7-04f7-47be-bcba-c00f29f4e46f', - // 'f4befe1f-592c-4ce3-a1ef-4ddbfc0c795d', - // '8eb60a08-7763-4e67-b065-8d6bc497a76d', - // 'a841b38f-5bbc-4c75-b56a-d420b1357a1a', - // 'f815f77f-1184-4aad-891d-432ce655efda', - // 'ee7d27b9-cf08-4924-9824-8e4f091fe43d', - // 'be4003ac-6ffe-4ecd-ae4c-40704e18f0f1', - // '7615c877-dd16-4cf0-a6b2-ea87b3bd1920', - // '6d6af963-ef9e-49f5-81fb-1fa0a21ffc2c', - // '3b6b3d41-1a29-438a-bcd4-b5751a374022', - // '7f857a4a-0c80-4100-b023-2921c31478e1', - // 'cfc3afe5-c27f-4620-8bee-6a018ad3f77b', - // '79802695-758c-423b-9879-e841a1b85340', - // '4777f5ef-2ec6-42c5-930b-257bc3796c6b', - // '75832111-e53e-4bab-8588-339878082ee9', - // '56f038a0-ca0c-4536-8ce8-d433e7a7d7bd', - // '0d26ea6e-a504-4769-ac55-0fbc82518e9e', - // '605f5395-2e7e-4e9c-8227-92ab0f867519', - // 'abfa5486-3999-4979-b9af-f6dff924202c', - // 'e014573b-f781-4b9c-aabc-ee238f9e5fc4', - // 'e0939e6d-6eed-47ab-861c-73a1e7f1bde6', - // 'b9481b9d-d172-427f-a5fe-2ed3c2ebc084', - // 'd75f6b03-4a31-46f7-b783-3422a847ef4b', - // '268cbdbd-3bd0-4c79-a3bd-7ae299bfcbea', - // '52e25142-20d1-4d88-a698-b54e88fc7228', - // 'a6ee5d16-cf72-460b-a493-03515f95abe3', - // 'ca3c44fd-589e-4570-ba34-8cdbb9edd5ee', - // '046ebca3-e9b3-4626-96c9-716ab762c1e0', - // '549f1bdd-9001-41f9-b392-f938dd9e09a7', - // '35ec83c5-925d-4c99-bf1d-31b0f545306a', - // 'a2e487a9-22e4-493a-b535-90f635c3188e', - // 'a60d251b-98f8-4c50-bedd-51c19ade1097', - // '652cede0-912e-4b82-bb67-63911c8f4e4b', - // 'aa1f8d5c-e95f-4b32-9502-4fece067bd13', - // 'c432a54a-e70c-4a08-bfe7-0f679680d03a', - // '33defc5c-c716-49a8-ad12-68c5561f2e37', - // 'a675a800-8b6c-4e3c-9b80-96dab2c13c5a', - // '722d6afb-7193-4cd8-94b6-29c8cd5755ea', - // '1c6f8e3e-d362-4176-9d03-f79ccd825f11', - // '32829abd-c7c1-4cdd-9482-bc72600c870e', - // '36124a95-8105-4a45-b440-0e0c31d76a55', - // '388f73c0-168c-48a1-9138-11fdbf9137ec', - // 'fe6eb65e-88e0-4d76-990d-4f52c640766f', - // '9d8848c6-ad0e-4bd6-bdbe-f9d92b5f8277', - // '7164633b-6467-443c-a31a-f6b92789670f', - // '0ee11755-c9b2-4609-a6f5-72a166a8b346', - // 'c0d761be-7f17-42cf-92e8-b7c5d6ec6158', - // '029810a6-1a9e-495c-aeff-66c718aae034', - // '60cfa45e-64c5-4f9f-8fb7-9f0c514cd261', - // '57360221-15e3-4d96-a87a-91ee23620cf8', - // '9181894c-0419-4125-8689-0fe097183f30', - // 'c258e58f-93a0-4e19-9e1e-579ecd82b96d', - // '026b9755-ea4a-423c-9a09-a57cae5e967b', - // '43551bbc-2f87-4785-b50b-b81aa63e9b4f', - // '4505ec1a-4f49-47cc-840e-142bb7307369', - // '6b09aaa3-679c-47b7-8ffe-f17cdd78d974', - // 'b96e5e0b-03ba-469b-9b8f-c5f1fb95bd97', - // 'f0e96094-ef06-4517-972d-30f969ac7a8f', - // '5d86a840-0b35-4852-8281-e49a1a672df1', - // '4eea9cfd-a82a-404c-8d61-c6da6b4a68e5', - // '709a6361-c429-40a8-ab28-b07a4d05401a', - // '23b47706-14ca-431a-b8d6-b78c07e6a23a', - // '10018caf-f65b-4cd6-ad47-a6170187b236', - // '75a5b981-916c-45b1-b729-24a77c64cc0c', - // '21a64b66-8388-4a98-9a6e-ca2318699c55', - // 'd48e13b6-c0fb-4e41-9124-4022c11b202e', - // 'afe743f5-f665-4073-b8cc-039afd921705', - // 'e631b725-5480-4c02-b016-eb56f249fb22', - // '810ae066-dc2a-4dd8-851e-1e53a3d4aa29', - // 'bb8542fa-eafd-4b5d-85e3-da06996b6875', - // 'ecd1bbbf-7e01-4935-8693-d0f695e1b6a5', - // '896bb490-2e87-4949-9196-2216a4fc0132', - // '39e5ba1e-cdfe-4eed-9346-05431b4bc08d', - // 'a90d7b5a-778d-4e0a-aa3f-ff7d29cecb62', - // '0dc6ed30-5b60-4062-bfb2-6055e1c0daa5', - // 'f8ed6c81-27b7-4ebe-9228-d0a543c25162', - // '2f37f534-c277-4963-863d-a4b22cd96497', - // '9640357b-8f75-438d-b547-7f202cb98832', - // '7d07bf28-f49e-456d-aaa4-13fedf0b4102', - // 'd342a86c-7f1c-496b-ba49-24861e4ee457', - // '6ffe0b0a-08c6-4c9b-a7d7-d253a48003ad', - // '07773cdd-5214-4a62-bc12-25ffa029ffde', - // '69f4eff5-9146-4982-8cba-9c0f33c0e2ac', - // '6cc60b83-9f23-4881-9e7f-c99e8fe41522', - // '8196a26e-2b4b-44ff-aa1e-ac1e5b34862e', - // '9d2b3876-a95e-439f-92ad-d907cd3f357e', - // '51fcd405-6145-4e4c-bca9-7b5ec5d9faed', - // 'b314753a-bf8d-4aac-8520-80dda3d19f95', - // '2683d8c7-b30b-4c9e-b2ec-43742c48454f', - // '123ed703-7aed-483c-ad95-db4bb0085b4e', - // 'eb3d6d80-6cef-4157-a4b8-63e07f5e2b1b', - // '546b13e1-c158-49c7-9724-0f43bca94f20', - // '92da27a0-6dc3-4609-859d-011289f484c7', - // 'c75cfecf-0a8a-4cec-b7ec-245962042343', - // ], - // }, - // }, - // ], - // }, - { - label: 'perm-location-eq', - queries: [ - { - item_permanent_location_id: { - $eq: 'f4619e23-d081-4447-a589-e278037e7f5e', - }, - }, - { - _version: '1', - 'permanent_location.id': { - $eq: 'f4619e23-d081-4447-a589-e278037e7f5e', - }, - }, - ], - }, - { - label: 'id-not-in-and-status-not-in', - queries: [ - { - $and: [ - { - instance_id: { - $nin: [ - '970a8b97-d58c-46e4-9766-f777a99abc2c', - '7ef91348-858a-4860-925f-77077410249d', - '9796d69d-0acf-429d-a23f-eaa5aac84c7c', - ], - }, - }, - { - item_status: { - $nin: ['Available', 'In transit', 'Paged', 'Restricted'], - }, - }, - ], - }, - { - _version: '1', - $and: [ - { - 'instances.id': { - $nin: [ - '970a8b97-d58c-46e4-9766-f777a99abc2c', - '7ef91348-858a-4860-925f-77077410249d', - '9796d69d-0acf-429d-a23f-eaa5aac84c7c', - ], - }, - }, - { - 'items.status_name': { - $nin: ['Available', 'In transit', 'Paged', 'Restricted'], - }, - }, - ], - }, - ], - }, - { - label: 'title-regex', - queries: [ - { instance_title: { $regex: 'africa' } }, - { _version: '1', 'instances.title': { $regex: 'africa' } }, - ], - }, - // { - // label: 'id-in-list-of-100', - // queries: [ - // { - // id: { - // $in: [ - // '965e1a90-7d05-4039-a063-52aea4efecce', - // 'af97da69-33c9-4db4-9817-4783b0e11190', - // 'c6139366-caa7-44ed-8d97-cc57886493d0', - // 'd6a8e141-b7eb-483a-bf07-e4cb3b48767b', - // 'ddba5f86-6724-446d-8aae-13ac3578a010', - // 'e9572762-1538-415e-b31f-df9e51048338', - // 'f659c55f-1ca4-4a37-86f7-7386053b5120', - // 'ff2b8032-8242-43d8-9020-2b7f03b4ce8a', - // '12dbfe00-fac4-4085-97bd-979c3bb0c950', - // '1c088d53-6799-4010-9a03-82a6cc2f45d0', - // '389ee33c-19c3-4f98-8470-fd67680cc08c', - // '5993c3bc-64f2-4f09-846e-cde043c6e567', - // '5b1bd45d-3013-4723-8a79-eec11d1ca579', - // 'b2cda5c7-1c45-42e2-8753-ec7e2db9090d', - // '07dd7542-f3f4-4627-9b15-435472c5b454', - // '0ffa9fb0-9728-426c-a106-1bbaa53462fe', - // '3cbf755f-ea54-419f-af82-562f1580e24c', - // '3f2d8b2f-e7e7-4fff-9cfb-1d4683735992', - // '97251105-2225-4a24-be36-7700172d912b', - // 'a654e950-6bdf-4dc6-b2a7-c99fd18c20fa', - // 'b23b5a7e-acae-4df5-9309-8f77fe0ad82c', - // 'b622813d-dce3-4204-9a1b-8fdaad0363b0', - // 'bdc789e3-41d0-4339-8219-e826651e59c5', - // 'd573831f-51ef-4cb7-96b1-8648a618a087', - // 'e10acb4f-adf1-48d6-bb8c-1280c8bcf5ab', - // 'ecf0a592-32c9-40e0-8a7a-4be0150f4d7d', - // '0779c271-bed6-46ec-8f6a-412014b700bb', - // '37ab5096-e382-4a58-81a8-e1b099cd85d7', - // '110043f6-7a85-4db8-b76d-01ddca9b89b5', - // '126c437b-abac-45ea-8396-98511b659336', - // '22e2a844-1a02-4e97-9152-f963884d0314', - // '2622207d-4c06-4115-a3f8-162d5c8b306a', - // '26402687-da47-4808-b6fb-d758abeede6f', - // '617723d9-6e5f-4c42-98fd-5fa18c1dbcc4', - // '71b481cb-709d-4c3e-ad4e-a6db595c7ecb', - // '733fb39c-72c9-4196-836c-228f97874575', - // '7d1a7e64-12cf-4179-bc12-255d69443ac1', - // '87049edc-9cfb-479a-a4f0-b17a5c2b1a45', - // '8b827b52-12dd-4a09-92c3-ade5d6a83351', - // '9939c34e-127b-4c12-8155-b6a040884eb9', - // 'a1adfc03-cc2d-4432-84bf-b5ae6bd6d4d3', - // 'b48879c5-4826-416c-b8b5-626d1754ed6d', - // 'c389d1a2-804e-49f9-8323-cd8141f48d3b', - // 'c3f0aa25-6ba8-4e73-9831-f73a851ce291', - // 'c6c14777-d1e6-4ebc-9157-9d1b23bf61ca', - // 'c7c59021-20af-4859-af13-846e0b003c6f', - // 'eca74692-57cc-418d-895f-caba2620fa10', - // 'f5f28e5f-fa1e-4171-8dd7-da107763d295', - // 'fb1b08a2-ea21-4c3b-92c3-88f9c79db9d8', - // '0c033dd1-11b8-4424-a9eb-27767a63f21e', - // '0cb73b2f-1ea9-45b3-8bf4-47a8487b66a1', - // '1fdcfe68-e6ef-40ca-ac34-b6c33c69f4ea', - // '21c4b09f-6d29-43a4-9fb5-bf927d3aa103', - // '26ac1be3-9f1a-45af-ab3f-93d96f5b488d', - // '2fbad2bd-bba0-4427-9ac6-16b3441e8544', - // '346f0290-f084-4a50-a2cb-65faf65036bc', - // '39bed55a-b0b5-441f-b092-7e4ad9e2ecc1', - // '43e4a5d2-a869-4f38-b7dc-77e4695a8d8f', - // '46f351a7-5435-41e3-8ed0-fcbb0a59fe43', - // '4a9e5018-7f99-411a-b327-8b19acc46807', - // '4c34f1ff-15c6-4787-a2e7-e66c39f769bf', - // '4f0024f3-0258-4ab3-9783-387db0bd9dd0', - // '4f17d6c5-2137-4b42-82f3-157aabb0a3c9', - // '50427864-d9a0-4d25-9e5f-dd5dbea02fda', - // '5641e6b0-ff16-47fd-ac05-ebd589cece34', - // '5706f097-d6e4-4fb0-96a1-8424be49bd4f', - // '5f6567c9-47b0-4253-a3df-66b0943f0321', - // '6122f4df-7dc4-4393-be7a-716d734201af', - // '6a106548-a576-4891-b8c8-c522d90face0', - // '6cb52409-4917-42b6-b886-13a55dba8f1a', - // '6df27993-96c6-4715-aa48-f425086c3ea4', - // '6e710e88-aebc-462f-b601-210cd082a17c', - // '72ce8dfb-a078-4fb2-8f9e-a479db3ee504', - // '784610ae-1eaf-48a8-b2e8-b7c2d76c3e99', - // '78926c84-fa40-4258-ad07-100053d00ecd', - // '78b19e8b-2d99-4a6a-a89a-5a543b6c7b52', - // '7c0aa0d5-a229-436d-985b-82f46199dabf', - // '7ea71177-3c04-4382-a3ff-421b2f4e6c00', - // '815287cb-2f15-493a-a202-35d857ada391', - // '826b86aa-7a49-4894-b932-bd370070f59e', - // '89716a73-3a26-4728-a98a-b9c33e7e65ff', - // '89f9f07e-4157-4481-a16a-142a2a202458', - // '8d89ad8e-f929-4bff-a83e-ef020276a143', - // '96ee8112-b29c-434f-aefb-1c4a2a3efc4f', - // '97244f25-5c24-46f3-8a46-35bbf424c8fb', - // '9811f14d-92df-4c82-954c-c3c8c54078cd', - // '98835aa8-0eb1-4555-9916-9b749b39049f', - // '99220eb4-26a5-451c-a57f-63552682631c', - // '99a97217-356c-45ff-90c0-f906ae0353db', - // '9a8d33dd-b089-436f-8c8c-720590007e48', - // '9e6d4fd6-94dd-4af7-9305-516bd691932c', - // '9ef6f8da-f11d-4f5b-8950-e780145ae315', - // 'a5b2c2b0-b4c7-471e-8e60-23f3f1cbb890', - // 'a61aa046-837c-4c1b-9e8c-11e33159660c', - // 'a6f9b3b7-cbfa-4311-bb81-71ea3e2d7cb0', - // 'a98fd442-44cd-4c44-a45e-3462b154c69c', - // 'ac7fa15f-e7e4-45bf-a9a4-f917bf0fc64f', - // 'ad477620-bf34-4003-ab30-a9a3a30c25d3', - // 'adb69cbf-850e-4aae-89b5-6b99c48d3690', - // 'af96d942-1869-4cd8-be9f-32687a963399', - // ], - // }, - // }, - // { - // _version: '1', - // 'items.id': { - // $in: [ - // '965e1a90-7d05-4039-a063-52aea4efecce', - // 'af97da69-33c9-4db4-9817-4783b0e11190', - // 'c6139366-caa7-44ed-8d97-cc57886493d0', - // 'd6a8e141-b7eb-483a-bf07-e4cb3b48767b', - // 'ddba5f86-6724-446d-8aae-13ac3578a010', - // 'e9572762-1538-415e-b31f-df9e51048338', - // 'f659c55f-1ca4-4a37-86f7-7386053b5120', - // 'ff2b8032-8242-43d8-9020-2b7f03b4ce8a', - // '12dbfe00-fac4-4085-97bd-979c3bb0c950', - // '1c088d53-6799-4010-9a03-82a6cc2f45d0', - // '389ee33c-19c3-4f98-8470-fd67680cc08c', - // '5993c3bc-64f2-4f09-846e-cde043c6e567', - // '5b1bd45d-3013-4723-8a79-eec11d1ca579', - // 'b2cda5c7-1c45-42e2-8753-ec7e2db9090d', - // '07dd7542-f3f4-4627-9b15-435472c5b454', - // '0ffa9fb0-9728-426c-a106-1bbaa53462fe', - // '3cbf755f-ea54-419f-af82-562f1580e24c', - // '3f2d8b2f-e7e7-4fff-9cfb-1d4683735992', - // '97251105-2225-4a24-be36-7700172d912b', - // 'a654e950-6bdf-4dc6-b2a7-c99fd18c20fa', - // 'b23b5a7e-acae-4df5-9309-8f77fe0ad82c', - // 'b622813d-dce3-4204-9a1b-8fdaad0363b0', - // 'bdc789e3-41d0-4339-8219-e826651e59c5', - // 'd573831f-51ef-4cb7-96b1-8648a618a087', - // 'e10acb4f-adf1-48d6-bb8c-1280c8bcf5ab', - // 'ecf0a592-32c9-40e0-8a7a-4be0150f4d7d', - // '0779c271-bed6-46ec-8f6a-412014b700bb', - // '37ab5096-e382-4a58-81a8-e1b099cd85d7', - // '110043f6-7a85-4db8-b76d-01ddca9b89b5', - // '126c437b-abac-45ea-8396-98511b659336', - // '22e2a844-1a02-4e97-9152-f963884d0314', - // '2622207d-4c06-4115-a3f8-162d5c8b306a', - // '26402687-da47-4808-b6fb-d758abeede6f', - // '617723d9-6e5f-4c42-98fd-5fa18c1dbcc4', - // '71b481cb-709d-4c3e-ad4e-a6db595c7ecb', - // '733fb39c-72c9-4196-836c-228f97874575', - // '7d1a7e64-12cf-4179-bc12-255d69443ac1', - // '87049edc-9cfb-479a-a4f0-b17a5c2b1a45', - // '8b827b52-12dd-4a09-92c3-ade5d6a83351', - // '9939c34e-127b-4c12-8155-b6a040884eb9', - // 'a1adfc03-cc2d-4432-84bf-b5ae6bd6d4d3', - // 'b48879c5-4826-416c-b8b5-626d1754ed6d', - // 'c389d1a2-804e-49f9-8323-cd8141f48d3b', - // 'c3f0aa25-6ba8-4e73-9831-f73a851ce291', - // 'c6c14777-d1e6-4ebc-9157-9d1b23bf61ca', - // 'c7c59021-20af-4859-af13-846e0b003c6f', - // 'eca74692-57cc-418d-895f-caba2620fa10', - // 'f5f28e5f-fa1e-4171-8dd7-da107763d295', - // 'fb1b08a2-ea21-4c3b-92c3-88f9c79db9d8', - // '0c033dd1-11b8-4424-a9eb-27767a63f21e', - // '0cb73b2f-1ea9-45b3-8bf4-47a8487b66a1', - // '1fdcfe68-e6ef-40ca-ac34-b6c33c69f4ea', - // '21c4b09f-6d29-43a4-9fb5-bf927d3aa103', - // '26ac1be3-9f1a-45af-ab3f-93d96f5b488d', - // '2fbad2bd-bba0-4427-9ac6-16b3441e8544', - // '346f0290-f084-4a50-a2cb-65faf65036bc', - // '39bed55a-b0b5-441f-b092-7e4ad9e2ecc1', - // '43e4a5d2-a869-4f38-b7dc-77e4695a8d8f', - // '46f351a7-5435-41e3-8ed0-fcbb0a59fe43', - // '4a9e5018-7f99-411a-b327-8b19acc46807', - // '4c34f1ff-15c6-4787-a2e7-e66c39f769bf', - // '4f0024f3-0258-4ab3-9783-387db0bd9dd0', - // '4f17d6c5-2137-4b42-82f3-157aabb0a3c9', - // '50427864-d9a0-4d25-9e5f-dd5dbea02fda', - // '5641e6b0-ff16-47fd-ac05-ebd589cece34', - // '5706f097-d6e4-4fb0-96a1-8424be49bd4f', - // '5f6567c9-47b0-4253-a3df-66b0943f0321', - // '6122f4df-7dc4-4393-be7a-716d734201af', - // '6a106548-a576-4891-b8c8-c522d90face0', - // '6cb52409-4917-42b6-b886-13a55dba8f1a', - // '6df27993-96c6-4715-aa48-f425086c3ea4', - // '6e710e88-aebc-462f-b601-210cd082a17c', - // '72ce8dfb-a078-4fb2-8f9e-a479db3ee504', - // '784610ae-1eaf-48a8-b2e8-b7c2d76c3e99', - // '78926c84-fa40-4258-ad07-100053d00ecd', - // '78b19e8b-2d99-4a6a-a89a-5a543b6c7b52', - // '7c0aa0d5-a229-436d-985b-82f46199dabf', - // '7ea71177-3c04-4382-a3ff-421b2f4e6c00', - // '815287cb-2f15-493a-a202-35d857ada391', - // '826b86aa-7a49-4894-b932-bd370070f59e', - // '89716a73-3a26-4728-a98a-b9c33e7e65ff', - // '89f9f07e-4157-4481-a16a-142a2a202458', - // '8d89ad8e-f929-4bff-a83e-ef020276a143', - // '96ee8112-b29c-434f-aefb-1c4a2a3efc4f', - // '97244f25-5c24-46f3-8a46-35bbf424c8fb', - // '9811f14d-92df-4c82-954c-c3c8c54078cd', - // '98835aa8-0eb1-4555-9916-9b749b39049f', - // '99220eb4-26a5-451c-a57f-63552682631c', - // '99a97217-356c-45ff-90c0-f906ae0353db', - // '9a8d33dd-b089-436f-8c8c-720590007e48', - // '9e6d4fd6-94dd-4af7-9305-516bd691932c', - // '9ef6f8da-f11d-4f5b-8950-e780145ae315', - // 'a5b2c2b0-b4c7-471e-8e60-23f3f1cbb890', - // 'a61aa046-837c-4c1b-9e8c-11e33159660c', - // 'a6f9b3b7-cbfa-4311-bb81-71ea3e2d7cb0', - // 'a98fd442-44cd-4c44-a45e-3462b154c69c', - // 'ac7fa15f-e7e4-45bf-a9a4-f917bf0fc64f', - // 'ad477620-bf34-4003-ab30-a9a3a30c25d3', - // 'adb69cbf-850e-4aae-89b5-6b99c48d3690', - // 'af96d942-1869-4cd8-be9f-32687a963399', - // ], - // }, - // }, - // ], - // }, - { - label: 'perm-location-eq-and-temp-location-neq', - queries: [ - { - $and: [ - { - item_permanent_location_id: { - $eq: 'c3dd9997-463b-47e3-958c-2c6fc2775f90', - }, - }, - { - item_temporary_location_id: { - $ne: 'c3dd9997-463b-47e3-958c-2c6fc2775f90', - }, - }, - ], - }, - { - _version: '1', - $and: [ - { - 'permanent_location.id': { - $eq: 'c3dd9997-463b-47e3-958c-2c6fc2775f90', - }, - }, - { - 'temporary_location.id': { - $ne: 'c3dd9997-463b-47e3-958c-2c6fc2775f90', - }, - }, - ], - }, - ], - }, - { - label: 'status-eq-checked-out', - queries: [ - { item_status: { $eq: 'Checked out' } }, - { _version: '1', 'items.status_name': { $eq: 'Checked out' } }, - ], - }, - ], - fields: [ - { - label: '', - fields: [ - ['id', 'item_status', 'instance_title', 'item_barcode', 'item_hrid'], - [ - 'items.id', - 'items.status_name', - 'instances.title', - 'items.barcode', - 'items.hrid', - ], - ], - }, - ], - }, - - loans: { - entityType: [ - '4e09d89a-44ed-418e-a9cc-820dfb27bf3a', - 'd6729885-f2fb-4dc7-b7d0-a865a7f461e4', - ], - queries: [ - { - label: 'inactive-users-with-open-loans', - queries: [ - { - $and: [ - { user_active: { $eq: 'false' } }, - { loan_status: { $eq: 'Open' } }, - ], - }, - { - $and: [ - { 'users.active': { $eq: 'false' } }, - { 'loans.status_name': { $eq: 'Open' } }, - ], - }, - ], - }, - { - label: 'loan-open-and-item-available', - queries: [ - { - $and: [ - { loan_status: { $eq: 'Open' } }, - { item_status: { $eq: 'Available' } }, - ], - }, - { - $and: [ - { 'loans.status_name': { $eq: 'Open' } }, - { 'items.status_name': { $eq: 'Available' } }, - ], - }, - ], - }, - { - label: 'loan-checkout-date-window', - queries: [ - { - $and: [ - { loan_checkout_date: { $gt: '2020-01-01' } }, - { loan_checkout_date: { $lt: '2021-01-01' } }, - ], - }, - { - $and: [ - { 'loans.checkout_date': { $gt: '2020-01-01' } }, - { 'loans.checkout_date': { $lt: '2021-01-01' } }, - ], - }, - ], - }, - { - label: 'loan-policy-in', - queries: [ - { - loan_policy_id: { - $in: [ - '301ccbe5-fc1a-4a6e-adcb-ed55fc8dc9cf', - '26a6fc3d-c437-40ec-8cbe-ea9e19322319', - 'b959df2b-c9ce-4b78-8e7f-38bde929c681', - ], - }, - }, - { - 'lpolicy.id': { - $in: [ - '301ccbe5-fc1a-4a6e-adcb-ed55fc8dc9cf', - '26a6fc3d-c437-40ec-8cbe-ea9e19322319', - 'b959df2b-c9ce-4b78-8e7f-38bde929c681', - ], - }, - }, - ], - }, - { - label: 'loan-open-and-user-expired', - queries: [ - { - $and: [ - { loan_status: { $eq: 'Open' } }, - { user_expiration_date: { $lt: '2023-12-31' } }, - ], - }, - { - $and: [ - { 'loans.status_name': { $eq: 'Open' } }, - { 'users.expiration_date': { $lt: '2023-12-31' } }, - ], - }, - ], - }, - { - label: 'loan-open', - queries: [ - { loan_status: { $eq: 'Open' } }, - { 'loans.status_name': { $eq: 'Open' } }, - ], - }, - { - label: 'loan-open-and-group-not-in-and-material-type-eq', - queries: [ - { - $and: [ - { loan_status: { $eq: 'Open' } }, - { - user_patron_group_id: { - $nin: [ - 'd01b7bba-48fb-4264-833b-b88d23505404', - 'd010bfa2-4983-4741-9ef8-1295484297cc', - ], - }, - }, - { - item_material_type_id: { - $eq: '025ba2c5-5e96-4667-a677-8186463aee69', - }, - }, - ], - }, - { - $and: [ - { 'loans.status_name': { $eq: 'Open' } }, - { - 'groups.id': { - $nin: [ - 'd01b7bba-48fb-4264-833b-b88d23505404', - 'd010bfa2-4983-4741-9ef8-1295484297cc', - ], - }, - }, - { - 'mtypes.id': { - $eq: '025ba2c5-5e96-4667-a677-8186463aee69', - }, - }, - ], - }, - ], - }, - ], - fields: [ - { - label: '', - fields: [ - [ - 'item_id', - 'item_status', - 'loan_checkout_date', - 'id', - 'loan_status', - 'user_active', - ], - [ - 'items.id', - 'items.status_name', - 'loans.checkout_date', - 'loans.id', - 'loans.status_name', - 'users.active', - ], - ], - }, - ], - }, - - users: { - entityType: [ - '0069cf6f-2833-46db-8a51-8934769b8289', - 'ddc93926-d15a-4a45-9d9c-93eadc3d9bbf', - ], - queries: [ - { - label: 'is-active', - queries: [ - { user_active: { $eq: 'true' } }, - { 'users.active': { $eq: 'true' } }, - ], - }, - { - label: 'patron-group-id-nin', - queries: [ - { - user_patron_group_id: { - $nin: [ - '6ad290aa-5851-4356-bb8d-1015e40c05c2', - 'ba484dd9-a2c3-4d80-b067-91cd2066134b', - ], - }, - }, - { - 'groups.id': { - $nin: [ - '6ad290aa-5851-4356-bb8d-1015e40c05c2', - 'ba484dd9-a2c3-4d80-b067-91cd2066134b', - ], - }, - }, - ], - }, - { - label: 'patron-group-in', - queries: [ - { user_patron_group: { $in: ['Undergraduate', 'Graduate'] } }, - { 'groups.group': { $in: ['Undergraduate', 'Graduate'] } }, - ], - }, - { - label: 'preferred-contact-type-nin', - queries: [ - { user_preferred_contact_type: { $nin: ['Email', 'Text Message'] } }, - { - 'users.preferred_contact_type': { $nin: ['Email', 'Text Message'] }, - }, - ], - }, - { - label: 'barcode-regex', - queries: [ - { user_barcode: { $regex: '^0' } }, - { 'users.barcode': { $regex: '^0' } }, - ], - }, - ], - - fields: [ - { - label: '', - fields: [ - ['id', 'user_active', 'user_patron_group', 'user_barcode'], - ['users.id', 'users.active', 'groups.group', 'users.barcode'], - ], - }, - ], - }, -} diff --git a/fqm-speed-comparison/raw-results/post-poc-descriptions.json b/fqm-speed-comparison/raw-results/post-poc-descriptions.json deleted file mode 100644 index ebeb73024..000000000 --- a/fqm-speed-comparison/raw-results/post-poc-descriptions.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "items|call-number-eq-and-regex|": "0 records", - "items|id-not-in-and-status-not-in|": "57286 records", - "items|inst-updated-after-2019-07-20|": "845936 records", - "items|item-copy-number-neq|": "484915 records", - "items|large-and|": "0 records", - "items|location-and-status|": "2 records", - "items|mat-type-and-date-range|": "202773 records", - "items|material-type-not-in|": "2593 records", - "items|perm-location-eq-and-temp-location-neq|": "2 records", - "items|perm-location-eq|": "4 records", - "items|status-eq-checked-out|": "3645 records", - "items|status-in-array|": "49702 records", - "items|status-not-available|": "92686 records", - "items|title-regex|": "38722 records", - "loans|inactive-users-with-open-loans|": "209 records", - "loans|loan-checkout-date-window|": "54068 records", - "loans|loan-open-and-group-not-in-and-material-type-eq|": "53255 records", - "loans|loan-open-and-item-available|": "0 records", - "loans|loan-open-and-user-expired|": "208 records", - "loans|loan-open|": "53270 records", - "loans|loan-policy-in|": "57272 records", - "users|barcode-regex|": "90042 records", - "users|is-active|": "90333 records", - "users|patron-group-id-nin|": "90677 records", - "users|patron-group-in|": "12 records", - "users|preferred-contact-type-nin|": "90020 records", - "get-all-entity-types": "7 entities", - "get-entity-type-holdings": "", - "get-entity-type-instances": "", - "get-entity-type-items": "", - "get-entity-type-loans": "", - "get-entity-type-organizations": "", - "get-entity-type-purchase order lines": "", - "get-entity-type-users": "" -} diff --git a/fqm-speed-comparison/raw-results/post-poc.json b/fqm-speed-comparison/raw-results/post-poc.json deleted file mode 100644 index 85d2cbd7e..000000000 --- a/fqm-speed-comparison/raw-results/post-poc.json +++ /dev/null @@ -1 +0,0 @@ -{"items|status-in-array||all":[36469,26371,35140,31939,31619,31870,27629,30898,36397,32700,35427,46049,39443,34153,35641,30898,26553,26552,35918,29906,25938,26131,32115,27411,25631,32394,32099,33427,26128,29686,29557,35382,30985,26787,33073],"items|status-in-array||query":[10242,10120,10122,10118,10126],"items|status-in-array||import-results":[18210,24329,19801,15697,21201],"items|status-not-available||all":[119390,74328,79402,88594,71868,72518,85985,69408,96023,96348,120173,81914,84907],"items|status-not-available||query":[60786,50851,81075,40576,40671],"items|status-not-available||import-results":[34210,43825,37826,39844,43123],"items|inst-updated-after-2019-07-20||all":[1423835,2789513,1390810,1334839,1362210,809877,1887758,1431875,1426177],"items|inst-updated-after-2019-07-20||query":[879764,324630,890140,910843,910068],"items|inst-updated-after-2019-07-20||import-results":[481571,481227,992809,516905,510417],"items|location-and-status||all":[12247,11789,11964,11280,11438,11472,11424,11660,12385,11987,11470,11514,11567,11571,11267,11562,12606,11254,11646,11437,11633,11418,11482,11252,11276,11718,11683,11385,11197,11052,11108],"items|location-and-status||query":[10202,10105,10095,10095,10097],"items|location-and-status||import-results":[329,445,271,258,274],"items|material-type-not-in||all":[62623,63167,63431,62689,63328,62538,62499,66722,72975,62575],"items|material-type-not-in||query":[60624,60621,60737,70724,60743],"items|material-type-not-in||import-results":[951,1012,4056,967,986],"items|item-copy-number-neq||all":[803665,497009,381124,494783,298935,300407,328720,591464,348587,614128,602412],"items|item-copy-number-neq||query":[91567,91305,91264,112846,101894],"items|item-copy-number-neq||import-results":[236082,497556,254477,498598,497542],"items|large-and||all":[12902,11483,11198,11156,11113,11181,11182,11112,11179,11083,11179,11517,11132,11122,11720,11106,12116,11171,11196,11278,11098,11162,11357,11298,11254,11096,11200,12247,11290,11389,11146,11158,11147,11378,11186,11365,11244,11319,11249,11084,11765,11557,11330,12105,11102,11224,11120,11166,11150,11246,11182,11191,11514,11280,11867,11309,11036,11161,11027],"items|large-and||query":[10137,10095,10096,10095,10094],"items|large-and||import-results":[131,130,99,238,120],"items|call-number-eq-and-regex||all":[21493,21569,21360,22372,21279,21243,21442,21376,21266,21363,21511,21770,22055,21329,21351,21706,21319,22268,21412,21256,21550,21208,21429,21447,21732,21527,22170,21686,21162,21807,21042,20999,21289],"items|call-number-eq-and-regex||query":[20205,20208,20211,20178,20220],"items|call-number-eq-and-regex||import-results":[135,131,140,130,129],"items|mat-type-and-date-range||all":[309340,192945,212896,312427,162036,214012,372302,303723,422288,249944,105224],"items|mat-type-and-date-range||query":[252873,40741,263473,50682,40658],"items|mat-type-and-date-range||import-results":[118467,261004.00000000003,156910,197140,62636],"items|perm-location-eq||all":[12365,11454,11564,11517,11394,11635,11400,11549,11728,11643,11401,11460,11403,11493,11394,11333,12438,11409,11444,11216,11441,11382,11580,11548,11584,11511,14323,15639,14721,15162,13671,12314,11182,10980,11305,11251,11230,11180,11150,11077,11107,11047,11057,11067,10982,11197,11001,11217,11614,11198,11285,11464,11921,11576,11272,10989,11119,11245],"items|id-not-in-and-status-not-in||all":[112970,68716,70201,73913,152387,97848,71997,68663,54961],"items|id-not-in-and-status-not-in||query":[111816,80937,40541,40497,40628],"items|id-not-in-and-status-not-in||import-results":[38346,15955,30082,27245,13183],"items|title-regex||all":[726419,128301,109267,767828,614939,121178,750880,103111,103956,102353,107024],"items|title-regex||query":[736189,91120,90922,91283,90804],"items|title-regex||import-results":[13812,11986,10348,14987,11127],"items|perm-location-eq-and-temp-location-neq||all":[11714,11658,11430,11362,11436,11408,11411,11607,11597,11719,11554,11604,11422,11632,11437,11567,12437,11433,11418,11616,11662,11436,11562,11460,11695,11423,11422,11098,10972,10884,10940],"items|perm-location-eq-and-temp-location-neq||query":[10073,10080,10072,10076,10070],"items|perm-location-eq-and-temp-location-neq||import-results":[214,238,198,220,206],"items|status-eq-checked-out||all":[22751,12661,12662,14599,12482,13864,12613,12701,12439,12391,12374,12405,12638,12322,12497,12432,12319,12371,12417,12408,13474,12466,12537,11950,11983,12222,12146,11986],"items|status-eq-checked-out||query":[10079,10131,10242,10085,10093],"items|status-eq-checked-out||import-results":[1154,1140,1057,1068,1148],"loans|inactive-users-with-open-loans||all":[12480,11640,11695,11808,11584,11580,11809,11474,11623,11448,11459,11471,11439,11610,11768,11593,12384,11489,11587,11501,11505,11596,11648,11478,11614,11686,11041,10932,10999,11028,11347],"loans|inactive-users-with-open-loans||query":[10067,10078,10039,10076,10079],"loans|inactive-users-with-open-loans||import-results":[240,238,238,232,385],"loans|loan-open-and-item-available||all":[41795,11359,11646,11810,11493,11335,11552,11289,11334,11404,11267,11316,11364,11480,11153,11126,11147,11431,11200,11885,11661,11573,11519,11203,51200,41542,11030,11058,10911],"loans|loan-open-and-item-available||query":[50435,40287,10275,10089,10086],"loans|loan-open-and-item-available||import-results":[126,99,123,107,124],"loans|loan-checkout-date-window||all":[37021,37392,33277,37684,38642,37138,37198,37676,32697,28342,27184,28510,35119,37133],"loans|loan-checkout-date-window||query":[10132,10122,10084,10110,10103],"loans|loan-checkout-date-window||import-results":[17374,16204,17186,23997,25671],"loans|loan-policy-in||all":[34467,33328,42526,41264,41557,43001,38075,41390,33196,37640,36479,26523,26789],"loans|loan-policy-in||query":[10217,20303,10090,10104,10110],"loans|loan-policy-in||import-results":[22051,16023,25565,15589,15457],"loans|loan-open-and-user-expired||all":[11449,11609,11672,11596,11520,12484,11494,11593,11268,11613,11732,11495,11571,11622,11460,11457,11738,11480,11684,11444,11748,12310,11627,11651,11820,11577,11592,11003,11168,10868,10939],"loans|loan-open-and-user-expired||query":[10073,10036,10183,10072,10088],"loans|loan-open-and-user-expired||import-results":[276,226,245,226,237],"loans|loan-open||all":[35160,36875,37342,36601,35019,36539,36291,32129,35751,40801,41143,35859,24192,31158],"loans|loan-open||query":[10392,20177,10111,10112,10070],"loans|loan-open||import-results":[29607,20011,24711,13218,19899],"loans|loan-open-and-group-not-in-and-material-type-eq||all":[37364,36851,33241,35621,33051,30817,30548,36650,43600,26823,32518,34219,28912,29084],"loans|loan-open-and-group-not-in-and-material-type-eq||query":[10253,10111,10112,10104,10089],"loans|loan-open-and-group-not-in-and-material-type-eq||import-results":[15362,21542,23215,17796,18129],"users|is-active||all":[65478,55384,61705,50106,55855,59969,38655,38676,56756,43626,28986,68076,68454,73338,76951,72853],"users|is-active||query":[20170,20329,20193,10077,10094,20310,20154,20170,20261,20162],"users|is-active||import-results":[17508,17515,35634,32713,18048,46884,47455,52212,55240,51836],"users|patron-group-id-nin||all":[58202,62093,54160,52270,76252,38786,56800,35337,37164,31952,70684,70405,72011,71725,64910],"users|patron-group-id-nin||query":[20210,20313,10086,10083,10069,20142,20266,20143,20144,20313],"users|patron-group-id-nin||import-results":[17388,35572,24509,26136,20939,49999,48835,50942,50752,43366],"users|patron-group-in||all":[11648,11498,11195,11242,11281,11403,10912,10909,11109,10885,10935,10959,10853,10822,10773,10856,10811,10822,10819,10756,10754,10782],"users|patron-group-in||query":[10279,10113,10110,10075,10109,10106,10062,10114,10113,10108,10129,10112,10131,10114,10116,10131,10110,10311,10129,10125,10033,10265,10120,10076,10123,10046,10115,10021,10064,10057,10058,10075,10054,10054,10025,10048,10048,10066,10027,10064],"users|patron-group-in||import-results":[515,265,253,245,262,236,241,237,235,301,255,246,235,248,246,261,242,445,492,301,233,424,324,282,318,231,248,233,225,147,192,123,153,236,186,146,274,112,154,123],"users|preferred-contact-type-nin||all":[81374,59494,47018,37589,43047,40740,44997,42836,74688,74746,73970,63268,66414],"users|preferred-contact-type-nin||query":[20250,20560,20289,10087,20238,10094,20252,20342,20129,20241,20326,20187,20451],"users|preferred-contact-type-nin||import-results":[60257,37142,25695,26906,21247,29954,23744,21285,53953,53133,52702,42130,44724],"users|barcode-regex||all":[50468,70931,69034,48786,42503,60431,38630,49316,93098,86259,80050,73181,57360],"users|barcode-regex||query":[20331,20281,20469,20215,20197,20210,20337,20242,20250,20153,20326,20215,20194],"users|barcode-regex||import-results":[29422,49565,46979,27960,21517,39111,17065,28146,72313,65205,58540,52051,35948],"items|perm-location-eq||query":[10415,10096,10098,10103,10128,10093,10088,10097,10124,10077,10083,10065,10081,10082,10082,10091,10094,10216,10118,10091,10087,10132,10116,10097,10094,10086,10101],"items|perm-location-eq||import-results":[456,274,248,267,319,320,388,246,230,244,274,233,251,211,234,240,257,329,394,217,313,508,411,274,268,288,247],"get-all-entity-types":[827,753,836,646,645,551,652,551],"get-entity-type-holdings":[401,557,230,252,266,246,228,231,249,221,219,240,235,225,225,228,238,227,218,222],"get-entity-type-instances":[209,210,208,204,220,216,211,206,204,208,208,195,198,206,206,231,214,212,220,197,210,219,215,213],"get-entity-type-items":[266,256,262,296,271,251,279,297,297,257,265,272,253,260,259,280,255,266,263],"get-entity-type-loans":[264,283,323,272,254,248,241,259,259,238,268,265,279,252,248,280,250,253,277],"get-entity-type-organizations":[180,176,191,180,178,195,171,175,174,182,193,180,179,169,163,181,178,181,168,174,179,179,180,171,176,175,175,176,176],"get-entity-type-purchase order lines":[250,244,269,264,254,260,261,242,247,242,250,303,291,260,270,281,275,330,262],"get-entity-type-users":[201,189,195,205,214,182,211,213,200,192,191,187,191,184,186,180,191,194,184,192,195,221,193,186,187,201]} \ No newline at end of file diff --git a/fqm-speed-comparison/raw-results/pre-poc-descriptions.json b/fqm-speed-comparison/raw-results/pre-poc-descriptions.json deleted file mode 100644 index cbaac53e7..000000000 --- a/fqm-speed-comparison/raw-results/pre-poc-descriptions.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "items|call-number-eq-and-regex|": "0 records", - "items|id-not-in-and-status-not-in|": "57286 records", - "items|inst-updated-after-2019-07-20|": "845936 records", - "items|item-copy-number-neq|": "484915 records", - "items|large-and|": "0 records", - "items|location-and-status|": "2 records", - "items|mat-type-and-date-range|": "202773 records", - "items|material-type-not-in|": "2593 records", - "items|perm-location-eq-and-temp-location-neq|": "2 records", - "items|perm-location-eq|": "4 records", - "items|status-eq-checked-out|": "3645 records", - "items|status-in-array|": "49702 records", - "items|status-not-available|": "92686 records", - "items|title-regex|": "38722 records", - "loans|inactive-users-with-open-loans|": "209 records", - "loans|loan-checkout-date-window|": "19709 records", - "loans|loan-open-and-group-not-in-and-material-type-eq|": "53255 records", - "loans|loan-open-and-item-available|": "0 records", - "loans|loan-open-and-user-expired|": "208 records", - "loans|loan-open|": "53270 records", - "loans|loan-policy-in|": "31644 records", - "users|barcode-regex|": "90042 records", - "users|is-active|": "90333 records", - "users|patron-group-id-nin|": "90677 records", - "users|patron-group-in|": "0 records", - "users|preferred-contact-type-nin|": "90020 records", - "get-all-entity-types": "8 entities", - "get-entity-type-holdings": "", - "get-entity-type-instances": "", - "get-entity-type-items": "", - "get-entity-type-loans": "", - "get-entity-type-organizations — contact info": "", - "get-entity-type-organizations — vendor info": "", - "get-entity-type-purchase order lines": "", - "get-entity-type-users": "" -} diff --git a/fqm-speed-comparison/raw-results/pre-poc.json b/fqm-speed-comparison/raw-results/pre-poc.json deleted file mode 100644 index 028f4a9cc..000000000 --- a/fqm-speed-comparison/raw-results/pre-poc.json +++ /dev/null @@ -1 +0,0 @@ -{"items|status-in-array||all":[76133,28974,25169,24497,27941,26064,27147,26308,27785,26899,26123,26258,23628,24118,24385,63485,29987,31721,26608,19679,24494,19698,19731,27504,25307,26017,62621,33216,21509,19151,19581,21501,21799,21796,18951,19551,21429,22818],"items|status-not-available||all":[99860,80634,99074,90585,64614,98217,71614,75214,71985,69062,103768,83564,65244,73823,59959],"items|inst-updated-after-2019-07-20||all":[1247194,1312529,1583981,1152206,868793,1286725,1186737,636742,1220833,640556],"items|location-and-status||all":[12418,11530,10899,11004,10984,11089,11014,10824,10905,10906,10998,10855,10891,10941,10940,10990,10973,11655,11369,10960,10822,10835,11190,10970,10830,10915,10888,12577,11766,11451,10809,10490,10487,10592,10820,10762,10489,10587,10533,10546,10489,10541,10642,10792,10972,10533,10637,10633,10735,10723,10692,10809,10501,10496,10541],"items|material-type-not-in||all":[21885,21697,21666,22039,22283,21556,22032,21641,21655,21631,21667,21775,21830,12255,21679,21169,21220,21205,21720,21373,21192,21297,21297,21310,21283,21095,21297,21537,21446,11149],"items|item-copy-number-neq||all":[304046,281452,314735,511640,906798,717786,388624,377192,835247,312638],"items|large-and||all":[52231,21206,10861,10803,10813,10782,10841,10791,10785,10783,10877,11055,11477,10927,11001,10797,11082,10865,11052,10795,10796,10892,10798,51203,20980,10800,10646,10519,10550,10441,10508,11027,10448,10678,10559,11364,11386,10596,10462,10545,10549,10529,10497,10494,10502,10507,10458],"items|call-number-eq-and-regex||all":[10969,10910,10966,10829,10930,10901,11495,10793,10966,10848,10943,10845,11244,11144,10766,10916,10778,10766,10786,10834,10791,10857,10846,11612,11048,10970,10787,10859,10487,10665,10428,10645,10664,10460,10930,10562,10688,10546,10539,10464,10463,10505,10503,10541,10611,10446,10546,10590,10547,10650,10656,10599,10921,10559,10502,10498,10565],"items|mat-type-and-date-range||all":[234777,301822,227257,164311,93512,281292,208042,93930,108447,119327],"items|perm-location-eq||all":[11686,11053,10976,10965,10750,10927,10971,11065,10992,10969,11100,10875,10908,11214,10910,10799,10965,11667,10960,10888,10870,10861,11207,10902,11051,10980,10979,11149,10733,10593,10491,10509,10593,10731,11061,10668,10556,10944,10602,10605,10638,10542,10549,10456,10481,10547,10646,10544,10722,10713,10654,11041,10545,10579,10797,10615,10644],"items|id-not-in-and-status-not-in||all":[86467,47880,63783,44999,50733,45189,104028,54146,54158,55767,63823],"items|title-regex||all":[784773,269304,113715,117613,113660,750733,129959,119454,120365,119627],"items|perm-location-eq-and-temp-location-neq||all":[11098,10975,10852,10971,11247,10873,11424,10795,11094,10800,11219,10967,10855,11237,11000,10839,10888,11098,10879,10905,10887,11133,11387,11452,11013,11036,10926,10880,10977,10585,10649,10719,10685,10609,10470,10629,10713,10539,10482,10585,10593,10842,10602,10832,10720,10946,10565,10501,10757,10651,10534,10604,10753,10472,10504,10718,10474],"items|status-eq-checked-out||all":[21904,11937,11900,11818,11797,11985,11791,11860,12288,11786,12416,11855,11834,11915,11870,11974,11859,12080,11982,11996,12217,12130,11999,12210,12146,21392,11440,11594,11371,11742,11377,11361,11525,11403,11403,11438,11512,11398,12208,11469,11358,11450,11395,11579,11350,11699,11132,11311,11345,11330,11383],"loans|inactive-users-with-open-loans||all":[11489,11091,11223,11236,10902,10827,10805,10991,11077,10821,11184,10877,10978,11077,11148,11369,10824,11677,10795,10887,11001,10822,10853,11200,11021,11078,10838,11030,10663,10651,10697,10606,10664,10548,10700,10591,10625,10853,10534,10990,10684,10770,10651,10578,10662,10733,10866,10751,10593,10583,10557,10673,10661,10534,10651,10650,10993],"loans|loan-open-and-item-available||all":[41189,11143,11002,11363,10924,10897,11136,10846,10850,10883,10886,11016,10823,10896,10872,11230,10864,10855,11101,11017,11347,10787,10771,10952,10780,40764,10497,10448,10449,10484,10462,10636,10580,10584,10591,10447,10603,10726,10479,10762,10466,10613,10657,10808,10562,10493,10555,10499,10482,10495,10486],"loans|loan-checkout-date-window||all":[36603,16081,15688,16091,15773,16258,16227,16243,16416,15992,16936,15805,16304,17149,15529,16047,16346,15089,45413,14894,15104,14835,14848,14486,14570,14726,13698,13703,13735,13733,13965,16162,16013,15099,14636,14393,14360],"loans|loan-policy-in||all":[29402,20803,23369,21143,22970,23457,19026,22108,21132,21715,22778,22579,20657,21194,38141,17112,17644,18596,16380,16658,16606,18722,18248,16285,19460,15832,19495,17136,21022,17753],"loans|loan-open-and-user-expired||all":[11178,11044,10871,11180,10840,11252,10864,11049,10878,11599,10867,11046,10874,11026,11165,10864,10931,11203,11099,10906,11195,10784,11247,11027,11008,10892,11399,10901,10859,10534,10588,10590,10873,10687,10663,10660,10690,10603,10755,10552,10715,10776,10705,10581,10800,11093,10727,10692,10743,10830,10733,10730,10650,10684,10859,11338],"loans|loan-open||all":[33320,25292,22775,22970,31515,36016,32737,33027,40847,45002,131896,22691,22143,26966,23897,28118,21957,50983],"loans|loan-open-and-group-not-in-and-material-type-eq||all":[32320,30975,46135,33367,41634,42209,23310,30435,31661,40143,22342,22130,26527,20364,23022,20103,25025,25191,20629,19715,24542,27779],"users|is-active||all":[56427,35602,61773,58050,44363,53619,53384,31047,43274,55908,30468,43633,52670],"users|patron-group-id-nin||all":[44983,49224,45737,31283,50359,43179,45165,80373,41778,41014,47138,38466,39022,27991],"users|patron-group-in||all":[11081,10943,10793,10870,11371,11003,10928,10862,10814,10792,10837,11140,11051,11506,10913,10877,11004,11001,11003,10887,10897,10884,10890,11039,10841,10899,10869,10845,10526,10668,10510,10632,10457,10922,10745,10866,10474,10507,10616,11058,10478,10675,10505,10484,10556,10659,10477,10457,10714,10670,10557,10686,11193,10607,10635,10607,10864],"users|preferred-contact-type-nin||all":[34646,51045,52391,43229,58730,49319,32575,42417,61938,43595,30938,40230,41863,39575],"users|barcode-regex||all":[57807,54515,49902,63227,61405,44607,57717,42109,64458,40246,41633,38387,41641],"items|large-and||import-results":[175,270,98,108,102,97,99,103,106,99,103,108,94,107,95,98,165,98,264,95,98,103,95,54,56,70,71,52,49,54,48,48,49,50,139,115,604,49,51,46,45,50,46,46,49,65,46],"items|large-and||query":[50811,20247,10057,10012,10040,10101,10140,10111,10106,10098,10101,10101,10206,10087,10214,10100,10098,10075,10099,10033,10100,10100,10101,10013,50434,20127,10060,10043,10048,10057,10051,10054,10049,10049,10053,10052,10021,10051,10053,10075,10050,10049,10051,10051,10050,10156,10053],"items|call-number-eq-and-regex||import-results":[108,135,117,104,96,117,99,105,94,98,277,100,277,101,93,102,96,96,94,97,105,98,99,112,127,95,100,265,49,45,47,145,116,47,46,54,47,46,48,47,58,48,53,50,46,50,41,45,140,47,108,49,49,46,47,47,57],"items|call-number-eq-and-regex||query":[10136,10130,10098,10128,10137,10117,10131,10121,10193,10070,10117,10169,10138,10106,10099,10102,10103,10101,10095,10042,10108,10075,10060,10234,10102,10203,10095,10022,10040,10065,10046,10051,10052,10046,10159,10051,10058,10048,10020,10014,10042,10052,10048,10053,10051,10052,10051,10053,10019,10046,10060,10051,10172,10050,10050,10046,10051],"items|mat-type-and-date-range||import-results":[228930,61652,173692,111712,51348,66810,179915,175955,52016,77367],"items|mat-type-and-date-range||query":[70753,172219,51559,50698,40749,40409,100775,30527,40464,40546],"items|perm-location-eq||import-results":[235,208,208,200,200,290,242,212,220,229,198,213,204,394,195,204,196,202,194,193,203,201,252,201,209,199,200,199,119,102,107,97,105,106,108,103,133,110,100,111,121,212,105,124,102,106,95,102,107,107,102,157,113,102,218,101,85],"items|perm-location-eq||query":[10211,10101,10113,10102,10038,10071,10098,10171,10098,10072,10337,10017,10064,10036,10101,10022,10103,10199,10095,10098,10050,10054,10118,10106,10160,10096,10095,10269,10055,10051,10048,10052,10062,10051,10047,10049,10071,10029,10175,10052,10050,10047,10050,10062,10049,10051,10014,10040,10048,10056,10046,10071,10173,10048,10073,10047,10051],"items|id-not-in-and-status-not-in||import-results":[25334,15758,22286,13589,19436,13020,12717,14640,22763,12815,12893],"items|id-not-in-and-status-not-in||query":[60430,30549,40551,30643,30453,30289,40386,40351,40310,90619,40494],"items|title-regex||import-results":[24523,15298,11230,15694,11312,8376,8481,15638,8233,8233],"items|title-regex||query":[759507,252581,101036,101088,101179,110850,110651,734286,120752,110721],"items|perm-location-eq-and-temp-location-neq||import-results":[200,200,232,213,189,206,222,198,189,499,227,198,194,212,208,220,205,201,206,210,198,200,188,200,196,224,527,194,102,99,103,124,114,92,114,110,98,102,150,103,110,98,100,105,113,102,107,101,121,108,327,116,103,99,106,99,123],"items|perm-location-eq-and-temp-location-neq||query":[10085,10235,10131,10052,10071,10096,10096,10102,10111,10134,10097,10098,10021,10055,10024,10098,10095,10063,10288,10112,10078,10102,10109,10093,10100,10099,10009,10115,10048,10049,10015,10058,10069,10066,10052,10062,10048,10044,10051,10070,10025,10046,10019,10047,10048,10048,10046,10048,10043,10048,10079,10048,10134,10049,10053,10022,10103],"items|status-eq-checked-out||import-results":[972,1069,1088,1080,976,1078,1059,1143,1303,1059,1074,1076,994,1142,1060,1188,1079,1139,1195,1122,1295,1234,1225,1490,1143,906,964,833,828,978,847,925,931,822,869,825,995,859,1670,883,893,851,794,957,745,750,738,808,791,779,837],"items|status-eq-checked-out||query":[20237,10185,10115,10054,10113,10070,10037,10046,10322,10058,10092,10097,10038,10098,10098,10082,10101,10199,10102,10073,10104,10103,10110,10030,10102,10055,10050,10051,10043,10175,10053,10040,10051,10057,20080,10053,10059,10050,10101,10051,10051,10051,10049,10052,10032,10026,10052,10049,10166,10054,10092],"loans|inactive-users-with-open-loans||import-results":[274,253,257,379,232,236,245,234,238,256,258,239,235,267,263,552,233,272,230,238,265,240,234,300,232,236,229,257,116,130,136,128,130,137,133,132,94,305,130,136,132,156,132,142,129,134,275,111,139,130,143,145,132,132,249,98,127],"loans|inactive-users-with-open-loans||query":[10036,10058,10099,10071,10117,10027,10028,10098,10313,10010,10105,10103,10096,10100,10100,10096,10051,10102,10019,10097,10204,10070,10062,10105,10102,10295,10066,10098,10048,10018,10055,10051,10049,10052,10050,10049,10048,10048,10050,10049,10056,10130,10155,10046,10047,10050,10053,10052,10048,10048,10047,10026,10030,10050,10049,10048,10054],"loans|loan-open-and-item-available||import-results":[101,175,219,98,101,94,98,94,97,99,102,98,103,110,96,103,96,95,174,250,95,97,99,103,95,51,50,48,47,46,50,46,51,44,54,48,47,205,48,45,48,51,47,55,54,45,48,49,46,47,50],"loans|loan-open-and-item-available||query":[40322,10099,10108,10079,10101,10113,10260,10085,10074,10067,10100,10247,10116,10111,10102,10080,10098,10093,10105,10101,10108,10106,10099,10274,10093,40313,10032,10049,10047,10048,10008,10047,10050,10050,10050,10046,10054,10031,10036,10012,10014,10066,10182,10047,10052,10049,10034,10050,10039,10052,10047],"loans|loan-checkout-date-window||import-results":[5729,5094,4971,5134,5041,5486,5201,4977,5683,5041,6056,5067,5631,6187,4606,5228,5613,4292,4661,4338,4184,4118,3978,3988,4021,4118,3001,3128,3032,3092,3355,5554,5412,4282,4096,3411,3867],"loans|loan-checkout-date-window||query":[30269,10205,10047,10105,10071,10119,10107,10098,10121,10058,10099,10052,10047,10290,10120,10102,10117,10111,40254,10070,10064,10062,10188,10064,10059,10060,10059,10077,10058,10060,10051,10063,10064,10069,10059,10240,10060],"loans|loan-policy-in||import-results":[8486,9504,12353,10242,12024,12180,8226,11282,9965,10790,11300,11464,9707,10270,7042,6466,6995,8003,5724,6015,5597,7995,7324,5720,8754,5136,8899,6581,10129,7064],"loans|loan-policy-in||query":[20139,10087,10057,10126,10105,10433,10116,10115,10112,10118,10106,10137,10116,10122,30170,10079,10077,10078,10146,10089,10087,10068,10267,10036,10066,10071,10036,10070,10154,10070],"loans|loan-open-and-user-expired||import-results":[238,239,242,416,245,239,222,242,233,231,237,228,222,237,267,230,229,234,464,224,413,234,237,232,238,231,232,239,137,131,178,139,135,130,110,144,153,148,201,140,146,171,319,146,169,159,165,142,147,136,158,151,152,157,344,408],"loans|loan-open-and-user-expired||query":[10265,10101,10101,10095,10046,10155,10095,10231,10107,10098,10069,10246,10100,10093,10101,10097,10135,10296,10099,10096,10099,10015,10114,10134,10105,10103,10076,10104,10048,10048,10048,10051,10201,10031,10052,10030,10048,10047,10054,10048,10049,10051,10034,10053,10053,10062,10060,10041,10050,10210,10050,10067,10052,10020,10029,10117],"loans|loan-open||import-results":[12141,14121,11689,12072,20705,24852,20942,21870,29680,23784,20553,11610,11436,16201,13179,17413,11325,29378],"loans|loan-open||query":[20359,10127,10298,10086,10028,10114,10067,10126,10161,20364,110695,10210,10085,10068,10125,10071,10086,20207],"loans|loan-open-and-group-not-in-and-material-type-eq||import-results":[21329,19281,35004,22450,30204,20710,11827,18920,20604,18873,11556,11442,15906,9646,12206,9423,14252,14077,9804,8864,13902,17117],"loans|loan-open-and-group-not-in-and-material-type-eq||query":[10133,10135,10208,10114,10255,20261,10138,10243,10057,20344,10076,10088,10078,10075,10076,10081,10070,10235,10076,10051,10069,10063],"users|is-active||import-results":[35459,24475,40602,36162,22929,32234,32851,20198,21750,35049,19615,22634,31651],"users|is-active||query":[20371,10132,20180,20396,20349,20213,20149,10076,20372,20179,10078,20207,20307],"users|patron-group-id-nin||import-results":[24064,37620,34529,20032,29062,32183,33327,59418,20853,20103,26082,17161,28032,17028],"users|patron-group-id-nin||query":[20261,10094,10265,10123,20358,10131,10238,20136,20204,20223,20349,20205,10113,10160],"users|patron-group-in||import-results":[103,117,108,99,101,373,100,106,103,102,100,97,182,222,103,117,120,105,107,96,99,108,97,97,112,98,107,117,50,50,49,53,48,88,71,50,49,52,54,176,52,59,52,48,50,48,54,50,55,51,49,47,52,50,48,52,215],"users|patron-group-in||query":[10017,10273,10099,10102,10077,10140,10105,10107,10072,10029,10095,10055,10218,10102,10194,10103,10018,10118,10205,10098,10101,10104,10099,10103,10110,10040,10104,10041,10056,10050,10051,10186,10019,10062,10073,10042,10057,10052,10050,10029,10056,10078,10051,10018,10050,10050,10013,10053,10161,10049,10052,10051,10053,10053,10049,10049,10058],"users|preferred-contact-type-nin||import-results":[37462,21217,23847,39180,30726,21593,37477,21513,40602,22204,19563,19143,20873,18155],"users|preferred-contact-type-nin||query":[10071,10243,10143,10084,20438,20342,20317,20323,20244,20326,10106,20257,20249,20254],"users|barcode-regex||import-results":[36811,43388,28045,41537,40017,22925,46975,20704,43285,19312,20344,16927,20520],"users|barcode-regex||query":[20274,10104,20415,20484,20251,20450,10232,20263,20221,20204,20397,20226,20231],"items|status-in-array||query":[50704,10089,20200,10075,10092,10091,10120,10107,10095,10072,10061,50515,10097,10083,10079,10042,10078,10080,10223,10077,10077,10096,10091],"items|status-in-array||import-results":[11897,19061,10925,15948,9047,13680,8551,8929,16801,14523,15309,11242,22391,10712,8361,8879,10663,10941,10484,8257,8699,10687,12049],"items|status-not-available||query":[70562,40370,40343,40429,40294,60375,40379,40294,40309,40406],"items|status-not-available||import-results":[27170,30190,34042,30670,27632,42933,42066,24008,32654.000000000004,18431],"items|inst-updated-after-2019-07-20||query":[755059,776084,182326,825626,192185],"items|inst-updated-after-2019-07-20||import-results":[531062,406457,450457,389045,444281],"items|location-and-status||query":[10219,10266,10050,10151,10050,10050,10053,10077,10049,10051,10050,10047,10047,10047,10046,10050,10078,10175,10047,10046,10048,10086,10067,10049,10059,10049,10054,10051],"items|location-and-status||import-results":[699,371,96,169,100,103,104,313,108,101,100,115,101,105,101,107,162,108,115,88,94,157,106,101,262,103,103,103],"items|material-type-not-in||query":[20079,20106,20118,20222,20202,20083,20112,20100,20111,20102,20113,20211,20108,20103,10026],"items|material-type-not-in||import-results":[670,665,599,639,786,594,796,632,630,629,636,632,630,790,617],"items|item-copy-number-neq||query":[110739,142327,142027,120949,121457],"items|item-copy-number-neq||import-results":[606388,243744,232659,711762,188760],"get-all-entity-types":[160,165,158,163,159,202,167,180,180,171,174,523,175,172,185,172,174,175,198,175,181,165,171,166,168,175,173,167,168,160,184,168,185,168,161,172,171,180,176,180,161,195,164,180,164,167,165,164,171,172,165,161,169,167,181,165,163,191,167,161,160,163,168,170,166,162,164,168,166,171,171,162,164,164,181,162,161,173,158,162,162,166,167,166,166,163,156,162],"get-entity-type-holdings":[228,180,173,162,194,432,317,160,164,172,167,170,159,174,173,164,164,167,168,163,159,164,169,169,162,162,176,168,177,171,187,178,157,175,166],"get-entity-type-instances":[168,189,166,186,182,168,165,165,168,176,166,164,174,164,168,165,173,165,176,166,161,159,171,175,160,161,187,173,162,161,159,159,160,161,161,168],"get-entity-type-items":[184,179,162,177,179,172,159,162,165,161,160,187,163,163,162,157,165,168,163,160,162,161,161,165,159,164,179,168,173,174,160,160,499,490],"get-entity-type-loans":[175,177,178,171,173,186,163,164,160,160,167,167,184,164,174,157,163,174,168,160,167,174,163,157,166,161,156,161,165,164,173,161,169,164,168,161,160],"get-entity-type-organizations — contact info":[175,177,186,181,184,163,161,174,159,159,164,165,163,160,158,175,164,158,166,164,159,161,166,161,158,164,163,166,161,167,164,162,165,224,173,163,163],"get-entity-type-organizations — vendor info":[179,170,159,171,186,182,164,165,161,160,163,160,162,176,161,159,157,161,160,156,166,164,164,156,159,162,173,167,163,162,158,164,172,161,169,160,163],"get-entity-type-purchase order lines":[184,208,231,168,431,165,187,158,166,167,164,169,166,164,165,162,161,166,165,163,161,166,167,177,164,165,158,155,171,162,158,157,155,168,166,167],"get-entity-type-users":[204,178,194,177,166,173,159,166,161,167,170,162,168,169,167,168,171,177,166,169,178,168,165,164,164,165,161,163,167,164,177,174,167,167,178,177]} \ No newline at end of file diff --git a/fqm-speed-comparison/results.html b/fqm-speed-comparison/results.html deleted file mode 100644 index 21da91b8a..000000000 --- a/fqm-speed-comparison/results.html +++ /dev/null @@ -1,11875 +0,0 @@ - - - - - - - - -

Results

-

All datapoints are in seconds unless otherwise specified

- - -
- - - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Test caseVersion# samplesminmedianmaxmeanstddevMOE∆ (median)
get-all-entity-types
pre-poc880.1560.1670.5230.1740.038±0.008-
post-poc80.5510.6490.8360.6830.105±0.073+288.62%
get-entity-type-holdings
pre-poc350.1570.1690.4320.1830.051±0.017-
post-poc200.2180.2310.5570.2580.079±0.034+36.39%
get-entity-type-instances
pre-poc360.1590.1660.1890.1680.008±0.003-
post-poc240.1950.2090.2310.2100.008±0.003+26.20%
get-entity-type-items
pre-poc340.1570.1640.4990.1860.078±0.026-
post-poc190.2510.2650.2970.2690.014±0.006+62.08%
get-entity-type-loans
pre-poc370.1560.1650.1860.1670.007±0.002-
post-poc190.2380.2590.3230.2640.019±0.009+56.97%
get-entity-type-organizations
pre-poc--------
post-poc290.1630.1780.1950.1780.007±0.002-
get-entity-type-organizations — contact info
pre-poc370.1580.1640.2240.1670.012±0.004-
post-poc--------
get-entity-type-organizations — vendor info
pre-poc370.1560.1630.1860.1650.007±0.002-
post-poc--------
get-entity-type-purchase order lines
pre-poc360.1550.1660.4310.1760.045±0.015-
post-poc190.2420.2610.3300.2660.022±0.010+57.70%
get-entity-type-users
pre-poc360.1590.1680.2040.1700.009±0.003-
post-poc260.1800.1920.2210.1950.010±0.004+14.63%
items|call-number-eq-and-regex||all
0 records
pre-poc5710.42810.76611.61210.7580.246±0.064-
post-poc3320.99921.42922.37221.5090.326±0.111+99.04%
items|call-number-eq-and-regex||import-results
0 records
pre-poc570.0410.0950.2770.0900.053±0.014-
post-poc50.1290.1310.1400.1330.004±0.004+37.89%
items|call-number-eq-and-regex||query
0 records
pre-poc5710.01410.06010.23410.0850.049±0.013-
post-poc520.17820.20820.22020.2040.014±0.012+100.87%
items|id-not-in-and-status-not-in||all
57286 records
pre-poc1144.99954.158104.02860.99817.634±10.421-
post-poc954.96171.997152.38785.74028.730±18.770+32.94%
items|id-not-in-and-status-not-in||import-results
57286 records
pre-poc1112.71714.64025.33416.8414.508±2.664-
post-poc513.18327.24538.34624.9629.278±8.133+86.10%
items|id-not-in-and-status-not-in||query
57286 records
pre-poc1130.28940.35190.61943.18917.139±10.128-
post-poc540.49740.628111.81662.88429.038±25.453+0.69%
items|inst-updated-after-2019-07-20||all
845936 records
pre-poc10636.7421203.7851583.9811113.630289.497±179.432-
post-poc9809.8771423.8352789.5131539.655510.925±333.804+18.28%
items|inst-updated-after-2019-07-20||import-results
845936 records
pre-poc5389.045444.281531.062444.26049.093±43.032-
post-poc5481.227510.417992.809596.586198.647±174.122+14.89%
items|inst-updated-after-2019-07-20||query
845936 records
pre-poc5182.326755.059825.626546.256294.034±257.732-
post-poc5324.630890.140910.843783.089229.537±201.198+17.89%
items|item-copy-number-neq||all
484915 records
pre-poc10281.452382.908906.798495.016225.448±139.734-
post-poc11298.935494.783803.665478.294155.389±91.829+29.22%
items|item-copy-number-neq||import-results
484915 records
pre-poc5188.760243.744711.762396.663217.613±190.746-
post-poc5236.082497.542498.598396.851123.895±108.599+104.12%
items|item-copy-number-neq||query
484915 records
pre-poc5110.739121.457142.327127.50012.580±11.027-
post-poc591.26491.567112.84697.7758.566±7.509-24.61%
items|large-and||all
0 records
pre-poc4710.44110.79652.23112.9488.439±2.413-
post-poc5911.02711.19612.90211.3240.333±0.085+3.71%
items|large-and||import-results
0 records
pre-poc470.0450.0950.6040.1010.089±0.025-
post-poc50.0990.1300.2380.1440.049±0.043+36.84%
items|large-and||query
0 records
pre-poc4710.01210.06050.81112.2328.347±2.386-
post-poc510.09410.09510.13710.1030.017±0.015+0.35%
items|location-and-status||all
2 records
pre-poc5510.48710.83512.57710.9130.421±0.111-
post-poc3111.05211.48212.60611.5720.353±0.124+5.97%
items|location-and-status||import-results
2 records
pre-poc280.0880.1040.6990.1530.125±0.046-
post-poc50.2580.2740.4450.3150.069±0.061+162.20%
items|location-and-status||query
2 records
pre-poc2810.04610.05010.26610.0750.055±0.021-
post-poc510.09510.09710.20210.1190.042±0.037+0.47%
items|mat-type-and-date-range||all
202773 records
pre-poc1093.512186.177301.822183.27274.128±45.945-
post-poc11105.224249.944422.288259.74089.710±53.015+34.25%
items|mat-type-and-date-range||import-results
202773 records
pre-poc1051.34894.540228.930117.94062.355±38.648-
post-poc562.636156.910261.004159.23167.517±59.181+65.97%
items|mat-type-and-date-range||query
202773 records
pre-poc1030.52745.724172.21963.87040.942±25.376-
post-poc540.65850.682263.473129.685105.026±92.060+10.84%
items|material-type-not-in||all
2593 records
pre-poc3011.14921.54722.28320.8962.478±0.887-
post-poc1062.49962.92872.97564.2553.144±1.948+192.06%
items|material-type-not-in||import-results
2593 records
pre-poc150.5940.6320.7960.6630.067±0.034-
post-poc50.9510.9864.0561.5941.231±1.079+56.01%
items|material-type-not-in||query
2593 records
pre-poc1510.02620.10820.22219.4532.520±1.275-
post-poc560.62160.73770.72462.6904.017±3.521+202.05%
items|perm-location-eq-and-temp-location-neq||all
2 records
pre-poc5710.47010.83911.45210.8320.250±0.065-
post-poc3110.88411.43712.43711.4840.275±0.097+5.52%
items|perm-location-eq-and-temp-location-neq||import-results
2 records
pre-poc570.0920.1880.5270.1700.085±0.022-
post-poc50.1980.2140.2380.2150.014±0.012+13.83%
items|perm-location-eq-and-temp-location-neq||query
2 records
pre-poc5710.00910.06310.28810.0760.048±0.012-
post-poc510.07010.07310.08010.0740.003±0.003+0.10%
items|perm-location-eq||all
4 records
pre-poc5710.45610.86111.68610.8320.261±0.068-
post-poc5810.98011.40215.63911.6870.995±0.256+4.98%
items|perm-location-eq||import-results
4 records
pre-poc570.0850.1940.3940.1660.062±0.016-
post-poc270.2110.2680.5080.2940.074±0.028+38.14%
items|perm-location-eq||query
4 records
pre-poc5710.01410.06210.33710.0840.061±0.016-
post-poc2710.06510.09410.41510.1120.065±0.025+0.32%
items|status-eq-checked-out||all
3645 records
pre-poc5111.13211.79121.90412.1081.953±0.536-
post-poc2811.95012.43622.75112.9321.967±0.729+5.47%
items|status-eq-checked-out||import-results
3645 records
pre-poc510.7380.9781.6701.0070.190±0.052-
post-poc51.0571.1401.1541.1130.042±0.037+16.56%
items|status-eq-checked-out||query
3645 records
pre-poc5110.02610.05820.23710.4771.957±0.537-
post-poc510.07910.09310.24210.1260.061±0.053+0.35%
items|status-in-array||all
49702 records
pre-poc3818.95125.23876.13327.88412.214±3.883-
post-poc3525.63131.87046.04931.6664.415±1.463+26.28%
items|status-in-array||import-results
49702 records
pre-poc238.25710.92522.39112.0893.640±1.488-
post-poc515.69719.80124.32919.8482.892±2.535+81.24%
items|status-in-array||query
49702 records
pre-poc2310.04210.09150.70414.05411.467±4.687-
post-poc510.11810.12210.24210.1460.048±0.042+0.31%
items|status-not-available||all
92686 records
pre-poc1559.95975.214103.76880.48114.019±7.095-
post-poc1369.40884.907120.17387.75815.960±8.676+12.89%
items|status-not-available||import-results
92686 records
pre-poc1018.43130.43042.93330.9807.145±4.428-
post-poc534.21039.84443.82539.7663.532±3.096+30.94%
items|status-not-available||query
92686 records
pre-poc1040.29440.37470.56245.37610.301±6.385-
post-poc540.57650.85181.07554.79215.125±13.257+25.95%
items|title-regex||all
38722 records
pre-poc10113.660119.996784.773263.920255.948±158.638-
post-poc11102.353121.178767.828330.478292.994±173.148+0.99%
items|title-regex||import-results
38722 records
pre-poc108.23311.27124.52312.7024.946±3.066-
post-poc510.34811.98614.98712.4521.713±1.502+6.34%
items|title-regex||query
38722 records
pre-poc10101.036110.785759.507250.265252.098±156.252-
post-poc590.80491.120736.189220.064258.063±226.202-17.75%
loans|inactive-users-with-open-loans||all
209 records
pre-poc5710.53410.82211.67710.8570.250±0.065-
post-poc3110.93211.58412.48011.5590.318±0.112+7.04%
loans|inactive-users-with-open-loans||import-results
209 records
pre-poc570.0940.2320.5520.2030.081±0.021-
post-poc50.2320.2380.3850.2670.059±0.052+2.59%
loans|inactive-users-with-open-loans||query
209 records
pre-poc5710.01010.05210.31310.0750.056±0.015-
post-poc510.03910.07610.07910.0680.015±0.013+0.24%
loans|loan-checkout-date-window||all
19709 records
54068 records
pre-poc3713.69815.68845.41316.7285.968±1.923-
post-poc1427.18437.07738.64234.6443.831±2.007+136.34%
loans|loan-checkout-date-window||import-results
19709 records
54068 records
pre-poc373.0014.6616.1874.6130.884±0.285-
post-poc516.20417.37425.67120.0863.933±3.447+272.75%
loans|loan-checkout-date-window||query
19709 records
54068 records
pre-poc3710.04710.07040.25411.4555.808±1.872-
post-poc510.08410.11010.13210.1100.016±0.014+0.40%
loans|loan-open-and-group-not-in-and-material-type-eq||all
53255 records
pre-poc2219.71525.85946.13528.6167.744±3.236-
post-poc1426.82333.14643.60033.5214.187±2.193+28.18%
loans|loan-open-and-group-not-in-and-material-type-eq||import-results
53255 records
pre-poc228.86415.07935.00416.7006.574±2.747-
post-poc515.36218.12923.21519.2092.809±2.462+20.23%
loans|loan-open-and-group-not-in-and-material-type-eq||query
53255 records
pre-poc2210.05110.08420.34411.0422.929±1.224-
post-poc510.08910.11110.25310.1340.060±0.053+0.26%
loans|loan-open-and-item-available||all
0 records
pre-poc5110.44710.78041.18911.9425.871±1.611-
post-poc2910.91111.36451.20014.83010.300±3.749+5.42%
loans|loan-open-and-item-available||import-results
0 records
pre-poc510.0440.0940.2500.0850.047±0.013-
post-poc50.0990.1230.1260.1160.011±0.009+30.85%
loans|loan-open-and-item-available||query
0 records
pre-poc5110.00810.07440.32211.2685.869±1.611-
post-poc510.08610.27550.43524.23417.546±15.380+2.00%
loans|loan-open-and-user-expired||all
208 records
pre-poc5610.53410.86411.59910.8910.232±0.061-
post-poc3110.86811.59212.48411.5580.317±0.112+6.70%
loans|loan-open-and-user-expired||import-results
208 records
pre-poc560.1100.2260.4640.2140.077±0.020-
post-poc50.2260.2370.2760.2420.018±0.016+4.87%
loans|loan-open-and-user-expired||query
208 records
pre-poc5610.01510.07310.29610.0910.062±0.016-
post-poc510.03610.07310.18310.0900.049±0.043+0.00%
loans|loan-open||all
53270 records
pre-poc1821.95729.816131.89636.23124.593±11.361-
post-poc1424.19236.07541.14335.3474.022±2.107+20.99%
loans|loan-open||import-results
53270 records
pre-poc1811.32516.80729.68017.9426.071±2.804-
post-poc513.21820.01129.60721.4895.466±4.791+19.06%
loans|loan-open||query
53270 records
pre-poc1810.02810.125110.69517.40422.939±10.597-
post-poc510.07010.11220.17712.1724.004±3.510-0.13%
loans|loan-policy-in||all
31644 records
57272 records
pre-poc3015.83220.07638.14120.5814.358±1.559-
post-poc1326.52337.64043.00136.6335.358±2.913+87.49%
loans|loan-policy-in||import-results
31644 records
57272 records
pre-poc305.1368.62012.3538.7082.163±0.774-
post-poc515.45716.02325.56518.9374.134±3.623+85.88%
loans|loan-policy-in||query
31644 records
57272 records
pre-poc3010.03610.10530.17011.1153.970±1.421-
post-poc510.09010.11020.30312.1654.069±3.567+0.04%
users|barcode-regex||all
90042 records
pre-poc1338.38749.90264.45850.5899.247±5.027-
post-poc1338.63060.43193.09863.08116.500±8.969+21.10%
users|barcode-regex||import-results
90042 records
pre-poc1316.92728.04546.97530.83010.825±5.884-
post-poc1317.06539.11172.31341.83216.518±8.979+39.46%
users|barcode-regex||query
90042 records
pre-poc1310.10420.25120.48418.7503.661±1.990-
post-poc1320.15320.24220.46920.2630.081±0.044-0.04%
users|is-active||all
90333 records
pre-poc1330.46852.67061.77347.70910.033±5.454-
post-poc1628.98658.36276.95157.17913.601±6.665+10.81%
users|is-active||import-results
90333 records
pre-poc1319.61531.65140.60228.8936.863±3.731-
post-poc1017.50841.25955.24037.50514.587±9.041+30.36%
users|is-active||query
90333 records
pre-poc1310.07620.20720.39617.9244.289±2.331-
post-poc1010.07720.17020.32918.1924.054±2.512-0.18%
users|patron-group-id-nin||all
90677 records
pre-poc1427.99144.08180.37344.69411.610±6.082-
post-poc1531.95258.20276.25256.85014.426±7.301+32.03%
users|patron-group-id-nin||import-results
90677 records
pre-poc1417.02827.05759.41828.53510.688±5.599-
post-poc1017.38839.46950.94236.84412.851±7.965+45.87%
users|patron-group-id-nin||query
90677 records
pre-poc1410.09415.20020.35815.2045.044±2.642-
post-poc1010.06920.14320.31317.1774.647±2.880+32.52%
users|patron-group-in||all
0 records
12 records
pre-poc5710.45710.84111.50610.8010.230±0.060-
post-poc2210.75410.89711.64811.0010.256±0.107+0.52%
users|patron-group-in||import-results
0 records
12 records
pre-poc570.0470.0970.3730.0920.055±0.014-
post-poc400.1120.2430.5150.2530.089±0.028+151.03%
users|patron-group-in||query
0 records
12 records
pre-poc5710.01310.05710.27310.0810.053±0.014-
post-poc4010.02110.10810.31110.1010.062±0.019+0.51%
users|preferred-contact-type-nin||all
90020 records
pre-poc1430.93842.82361.93844.4648.922±4.673-
post-poc1337.58959.49481.37457.70614.981±8.144+38.93%
users|preferred-contact-type-nin||import-results
90020 records
pre-poc1418.15521.89840.60226.6838.122±4.255-
post-poc1321.24737.14260.25737.91313.475±7.325+69.61%
users|preferred-contact-type-nin||query
90020 records
pre-poc1410.07120.25220.43816.6714.876±2.554-
post-poc1310.08720.25020.56018.7273.684±2.003-0.01%
pre-poc - - 3040.6684827.7349076.2745181.2042105.801--
post-poc - 3784.053
+24.45%
6063.289
+25.59%
10675.090
+17.62%
6537.642
+26.18%
2364.687
+12.29%
--
-
- - - -
-

items • call-number-eq-and-regex • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_effective_call_number_typeid": {
-            "$eq": "c73c17f4-9660-421b-bdfc-e1c6093dec13"
-          }
-        },
-        {
-          "item_effective_call_number": {
-            "$regex": "^D"
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "effective_call_number.id": {
-            "$eq": "c73c17f4-9660-421b-bdfc-e1c6093dec13"
-          }
-        },
-        {
-          "items.effective_call_number": {
-            "$regex": "^D"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc0 records5710.42810.54710.76610.91011.6121.18410.72910.7580.246±0.06410.69410.821
post-poc0 records3320.99921.28921.42921.68622.3721.37321.48221.5090.326±0.11121.39821.620
- - -
- -
- - -
-
-
-

items • call-number-eq-and-regex • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_effective_call_number_typeid": {
-            "$eq": "c73c17f4-9660-421b-bdfc-e1c6093dec13"
-          }
-        },
-        {
-          "item_effective_call_number": {
-            "$regex": "^D"
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "effective_call_number.id": {
-            "$eq": "c73c17f4-9660-421b-bdfc-e1c6093dec13"
-          }
-        },
-        {
-          "items.effective_call_number": {
-            "$regex": "^D"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc0 records570.0410.0480.0950.1050.2770.2360.0800.0900.053±0.0140.0760.104
post-poc0 records50.1290.1300.1310.1350.1400.0110.1330.1330.004±0.0040.1290.137
- - -
- -
- - -
-
-
-

items • call-number-eq-and-regex • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_effective_call_number_typeid": {
-            "$eq": "c73c17f4-9660-421b-bdfc-e1c6093dec13"
-          }
-        },
-        {
-          "item_effective_call_number": {
-            "$regex": "^D"
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "effective_call_number.id": {
-            "$eq": "c73c17f4-9660-421b-bdfc-e1c6093dec13"
-          }
-        },
-        {
-          "items.effective_call_number": {
-            "$regex": "^D"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc0 records5710.01410.05010.06010.11710.2340.22010.08210.0850.049±0.01310.07210.097
post-poc0 records520.17820.20520.20820.21120.2200.04220.20820.2040.014±0.01220.19220.217
- - -
- -
- - -
-
-
-

items • id-not-in-and-status-not-in • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "instance_id": {
-            "$nin": [
-              "970a8b97-d58c-46e4-9766-f777a99abc2c",
-              "7ef91348-858a-4860-925f-77077410249d",
-              "9796d69d-0acf-429d-a23f-eaa5aac84c7c"
-            ]
-          }
-        },
-        {
-          "item_status": {
-            "$nin": [
-              "Available",
-              "In transit",
-              "Paged",
-              "Restricted"
-            ]
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "instances.id": {
-            "$nin": [
-              "970a8b97-d58c-46e4-9766-f777a99abc2c",
-              "7ef91348-858a-4860-925f-77077410249d",
-              "9796d69d-0acf-429d-a23f-eaa5aac84c7c"
-            ]
-          }
-        },
-        {
-          "items.status_name": {
-            "$nin": [
-              "Available",
-              "In transit",
-              "Paged",
-              "Restricted"
-            ]
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc57286 records1144.99949.30654.15863.803104.02859.02953.38660.99817.634±10.42150.57771.418
post-poc57286 records954.96168.71671.99797.848152.38797.42677.40985.74028.730±18.77066.969104.510
- - -
- -
- - -
-
-
-

items • id-not-in-and-status-not-in • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "instance_id": {
-            "$nin": [
-              "970a8b97-d58c-46e4-9766-f777a99abc2c",
-              "7ef91348-858a-4860-925f-77077410249d",
-              "9796d69d-0acf-429d-a23f-eaa5aac84c7c"
-            ]
-          }
-        },
-        {
-          "item_status": {
-            "$nin": [
-              "Available",
-              "In transit",
-              "Paged",
-              "Restricted"
-            ]
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "instances.id": {
-            "$nin": [
-              "970a8b97-d58c-46e4-9766-f777a99abc2c",
-              "7ef91348-858a-4860-925f-77077410249d",
-              "9796d69d-0acf-429d-a23f-eaa5aac84c7c"
-            ]
-          }
-        },
-        {
-          "items.status_name": {
-            "$nin": [
-              "Available",
-              "In transit",
-              "Paged",
-              "Restricted"
-            ]
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc57286 records1112.71712.95714.64020.86125.33412.61716.84116.8414.508±2.66414.17719.505
post-poc57286 records513.18315.95527.24530.08238.34625.16324.96224.9629.278±8.13316.82933.095
- - -
- -
- - -
-
-
-

items • id-not-in-and-status-not-in • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "instance_id": {
-            "$nin": [
-              "970a8b97-d58c-46e4-9766-f777a99abc2c",
-              "7ef91348-858a-4860-925f-77077410249d",
-              "9796d69d-0acf-429d-a23f-eaa5aac84c7c"
-            ]
-          }
-        },
-        {
-          "item_status": {
-            "$nin": [
-              "Available",
-              "In transit",
-              "Paged",
-              "Restricted"
-            ]
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "instances.id": {
-            "$nin": [
-              "970a8b97-d58c-46e4-9766-f777a99abc2c",
-              "7ef91348-858a-4860-925f-77077410249d",
-              "9796d69d-0acf-429d-a23f-eaa5aac84c7c"
-            ]
-          }
-        },
-        {
-          "items.status_name": {
-            "$nin": [
-              "Available",
-              "In transit",
-              "Paged",
-              "Restricted"
-            ]
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc57286 records1130.28930.59640.35140.52390.61960.33036.00343.18917.139±10.12833.06053.317
post-poc57286 records540.49740.54140.62880.937111.81671.31962.88462.88429.038±25.45337.43188.337
- - -
- -
- - -
-
-
-

items • inst-updated-after-2019-07-20 • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "instance_updated_date": {
-        "$gt": "2019-07-20"
-      }
-    },
-    {
-      "_version": "1",
-      "instances.updated_at": {
-        "$gt": "2019-07-20"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc845936 records10636.7421010.4991203.7851266.9591583.981947.2391113.6301113.630289.497±179.432934.1981293.062
post-poc845936 records9809.8771362.2101423.8351431.8752789.5131979.6361394.9581539.655510.925±333.8041205.8511873.459
- - -
- -
- - -
-
-
-

items • inst-updated-after-2019-07-20 • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "instance_updated_date": {
-        "$gt": "2019-07-20"
-      }
-    },
-    {
-      "_version": "1",
-      "instances.updated_at": {
-        "$gt": "2019-07-20"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc845936 records5389.045406.457444.281450.457531.062142.017422.560444.26049.093±43.032401.228487.293
post-poc845936 records5481.227481.571510.417516.905992.809511.582497.530596.586198.647±174.122422.464770.707
- - -
- -
- - -
-
-
-

items • inst-updated-after-2019-07-20 • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "instance_updated_date": {
-        "$gt": "2019-07-20"
-      }
-    },
-    {
-      "_version": "1",
-      "instances.updated_at": {
-        "$gt": "2019-07-20"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc845936 records5182.326192.185755.059776.084825.626643.300546.256546.256294.034±257.732288.524803.988
post-poc845936 records5324.630879.764890.140910.068910.843586.213897.704783.089229.537±201.198581.891984.287
- - -
- -
- - -
-
-
-

items • item-copy-number-neq • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_copy_number": {
-        "$ne": "c.1"
-      }
-    },
-    {
-      "_version": "1",
-      "items.copy_number": {
-        "$ne": "c.1"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc484915 records10281.452313.687382.908614.713906.798625.346495.016495.016225.448±139.734355.282634.750
post-poc484915 records11298.935338.654494.783596.938803.665504.730478.294478.294155.389±91.829386.465570.123
- - -
- -
- - -
-
-
-

items • item-copy-number-neq • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_copy_number": {
-        "$ne": "c.1"
-      }
-    },
-    {
-      "_version": "1",
-      "items.copy_number": {
-        "$ne": "c.1"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc484915 records5188.760232.659243.744606.388711.762523.002396.663396.663217.613±190.746205.916587.409
post-poc484915 records5236.082254.477497.542497.556498.598262.516396.851396.851123.895±108.599288.252505.450
- - -
- -
- - -
-
-
-

items • item-copy-number-neq • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_copy_number": {
-        "$ne": "c.1"
-      }
-    },
-    {
-      "_version": "1",
-      "items.copy_number": {
-        "$ne": "c.1"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc484915 records5110.739120.949121.457142.027142.32731.588127.500127.50012.580±11.027116.473138.526
post-poc484915 records591.26491.30591.567101.894112.84621.58297.77597.7758.566±7.50990.267105.284
- - -
- -
- - -
-
-
-

items • large-and • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_effective_call_number_typeid": {
-            "$eq": "c73c17f4-9660-421b-bdfc-e1c6093dec13"
-          }
-        },
-        {
-          "item_effective_location_id": {
-            "$nin": [
-              "f4619e23-d081-4447-a589-e278037e7f5e",
-              "b1dbe1fa-d76e-4db0-96b4-62c4a0674b29"
-            ]
-          }
-        },
-        {
-          "item_status": {
-            "$eq": "Available"
-          }
-        },
-        {
-          "item_material_type_id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        },
-        {
-          "item_updated_date": {
-            "$gt": "2019-07-01"
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "effective_call_number.id": {
-            "$eq": "c73c17f4-9660-421b-bdfc-e1c6093dec13"
-          }
-        },
-        {
-          "effective_location.id": {
-            "$nin": [
-              "f4619e23-d081-4447-a589-e278037e7f5e",
-              "b1dbe1fa-d76e-4db0-96b4-62c4a0674b29"
-            ]
-          }
-        },
-        {
-          "items.status_name": {
-            "$eq": "Available"
-          }
-        },
-        {
-          "mtypes.id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        },
-        {
-          "items.updated_date": {
-            "$gt": "2019-07-01"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc0 records4710.44110.54710.79610.96452.23141.79010.76612.9488.439±2.41310.53515.361
post-poc0 records5911.02711.14911.19611.34312.9021.87511.21911.3240.333±0.08511.23911.409
- - -
- -
- - -
-
-
-

items • large-and • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_effective_call_number_typeid": {
-            "$eq": "c73c17f4-9660-421b-bdfc-e1c6093dec13"
-          }
-        },
-        {
-          "item_effective_location_id": {
-            "$nin": [
-              "f4619e23-d081-4447-a589-e278037e7f5e",
-              "b1dbe1fa-d76e-4db0-96b4-62c4a0674b29"
-            ]
-          }
-        },
-        {
-          "item_status": {
-            "$eq": "Available"
-          }
-        },
-        {
-          "item_material_type_id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        },
-        {
-          "item_updated_date": {
-            "$gt": "2019-07-01"
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "effective_call_number.id": {
-            "$eq": "c73c17f4-9660-421b-bdfc-e1c6093dec13"
-          }
-        },
-        {
-          "effective_location.id": {
-            "$nin": [
-              "f4619e23-d081-4447-a589-e278037e7f5e",
-              "b1dbe1fa-d76e-4db0-96b4-62c4a0674b29"
-            ]
-          }
-        },
-        {
-          "items.status_name": {
-            "$eq": "Available"
-          }
-        },
-        {
-          "mtypes.id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        },
-        {
-          "items.updated_date": {
-            "$gt": "2019-07-01"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc0 records470.0450.0500.0950.1030.6040.5590.0820.1010.089±0.0250.0750.126
post-poc0 records50.0990.1200.1300.1310.2380.1390.1270.1440.049±0.0430.1010.186
- - -
- -
- - -
-
-
-

items • large-and • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_effective_call_number_typeid": {
-            "$eq": "c73c17f4-9660-421b-bdfc-e1c6093dec13"
-          }
-        },
-        {
-          "item_effective_location_id": {
-            "$nin": [
-              "f4619e23-d081-4447-a589-e278037e7f5e",
-              "b1dbe1fa-d76e-4db0-96b4-62c4a0674b29"
-            ]
-          }
-        },
-        {
-          "item_status": {
-            "$eq": "Available"
-          }
-        },
-        {
-          "item_material_type_id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        },
-        {
-          "item_updated_date": {
-            "$gt": "2019-07-01"
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "effective_call_number.id": {
-            "$eq": "c73c17f4-9660-421b-bdfc-e1c6093dec13"
-          }
-        },
-        {
-          "effective_location.id": {
-            "$nin": [
-              "f4619e23-d081-4447-a589-e278037e7f5e",
-              "b1dbe1fa-d76e-4db0-96b4-62c4a0674b29"
-            ]
-          }
-        },
-        {
-          "items.status_name": {
-            "$eq": "Available"
-          }
-        },
-        {
-          "mtypes.id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        },
-        {
-          "items.updated_date": {
-            "$gt": "2019-07-01"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc0 records4710.01210.05010.06010.10150.81140.79910.06912.2328.347±2.3869.84514.618
post-poc0 records510.09410.09510.09510.09610.1370.04310.09510.1030.017±0.01510.08910.118
- - -
- -
- - -
-
-
-

items • location-and-status • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_permanent_location_id": {
-            "$eq": "f4619e23-d081-4447-a589-e278037e7f5e"
-          }
-        },
-        {
-          "item_status": {
-            "$in": [
-              "Available",
-              "Awaiting delivery",
-              "Awaiting pickup"
-            ]
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "permanent_location.id": {
-            "$eq": "f4619e23-d081-4447-a589-e278037e7f5e"
-          }
-        },
-        {
-          "items.status_name": {
-            "$in": [
-              "Available",
-              "Awaiting delivery",
-              "Awaiting pickup"
-            ]
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc2 records5510.48710.63510.83510.97912.5772.09010.80610.9130.421±0.11110.80211.025
post-poc2 records3111.05211.33211.48211.67112.6061.55411.48211.5720.353±0.12411.44811.697
- - -
- -
- - -
-
-
-

items • location-and-status • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_permanent_location_id": {
-            "$eq": "f4619e23-d081-4447-a589-e278037e7f5e"
-          }
-        },
-        {
-          "item_status": {
-            "$in": [
-              "Available",
-              "Awaiting delivery",
-              "Awaiting pickup"
-            ]
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "permanent_location.id": {
-            "$eq": "f4619e23-d081-4447-a589-e278037e7f5e"
-          }
-        },
-        {
-          "items.status_name": {
-            "$in": [
-              "Available",
-              "Awaiting delivery",
-              "Awaiting pickup"
-            ]
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc2 records280.0880.1010.1040.1360.6990.6110.1100.1530.125±0.0460.1070.200
post-poc2 records50.2580.2710.2740.3290.4450.1870.2830.3150.069±0.0610.2550.376
- - -
- -
- - -
-
-
-

items • location-and-status • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_permanent_location_id": {
-            "$eq": "f4619e23-d081-4447-a589-e278037e7f5e"
-          }
-        },
-        {
-          "item_status": {
-            "$in": [
-              "Available",
-              "Awaiting delivery",
-              "Awaiting pickup"
-            ]
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "permanent_location.id": {
-            "$eq": "f4619e23-d081-4447-a589-e278037e7f5e"
-          }
-        },
-        {
-          "items.status_name": {
-            "$in": [
-              "Available",
-              "Awaiting delivery",
-              "Awaiting pickup"
-            ]
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc2 records2810.04610.04910.05010.07210.2660.22010.05410.0750.055±0.02110.05510.096
post-poc2 records510.09510.09510.09710.10510.2020.10710.09810.1190.042±0.03710.08210.155
- - -
- -
- - -
-
-
-

items • mat-type-and-date-range • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_material_type_id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        },
-        {
-          "item_created_date": {
-            "$gte": "2018-01-01"
-          }
-        },
-        {
-          "item_created_date": {
-            "$lte": "2021-01-01"
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "mtypes.id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        },
-        {
-          "items.created_date": {
-            "$gte": "2018-01-01"
-          }
-        },
-        {
-          "items.created_date": {
-            "$lte": "2021-01-01"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc202773 records1093.512113.887186.177231.017301.822208.310183.272183.27274.128±45.945137.327229.217
post-poc202773 records11105.224202.921249.944310.884422.288317.064259.740259.74089.710±53.015206.724312.755
- - -
- -
- - -
-
-
-

items • mat-type-and-date-range • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_material_type_id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        },
-        {
-          "item_created_date": {
-            "$gte": "2018-01-01"
-          }
-        },
-        {
-          "item_created_date": {
-            "$lte": "2021-01-01"
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "mtypes.id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        },
-        {
-          "items.created_date": {
-            "$gte": "2018-01-01"
-          }
-        },
-        {
-          "items.created_date": {
-            "$lte": "2021-01-01"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc202773 records1051.34864.23194.540174.824228.930177.582117.940117.94062.355±38.64879.292156.588
post-poc202773 records562.636118.467156.910197.140261.004198.368159.231159.23167.517±59.181100.050218.412
- - -
- -
- - -
-
-
-

items • mat-type-and-date-range • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_material_type_id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        },
-        {
-          "item_created_date": {
-            "$gte": "2018-01-01"
-          }
-        },
-        {
-          "item_created_date": {
-            "$lte": "2021-01-01"
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "mtypes.id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        },
-        {
-          "items.created_date": {
-            "$gte": "2018-01-01"
-          }
-        },
-        {
-          "items.created_date": {
-            "$lte": "2021-01-01"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc202773 records1030.52740.50545.72461.156172.219141.69245.71363.87040.942±25.37638.49489.246
post-poc202773 records540.65840.74150.682252.873263.473222.815129.685129.685105.026±92.06037.626221.745
- - -
- -
- - -
-
-
-

items • material-type-not-in • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_material_type_id": {
-        "$nin": [
-          "025ba2c5-5e96-4667-a677-8186463aee69",
-          "1aa8050a-619b-40c6-9b9b-81a2aa9c0912"
-        ]
-      }
-    },
-    {
-      "_version": "1",
-      "mtypes.id": {
-        "$nin": [
-          "025ba2c5-5e96-4667-a677-8186463aee69",
-          "1aa8050a-619b-40c6-9b9b-81a2aa9c0912"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc2593 records3011.14921.29021.54721.68822.28311.13421.55320.8962.478±0.88720.00921.783
post-poc2593 records1062.49962.59962.92863.38072.97510.47662.85664.2553.144±1.94862.30666.203
- - -
- -
- - -
-
-
-

items • material-type-not-in • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_material_type_id": {
-        "$nin": [
-          "025ba2c5-5e96-4667-a677-8186463aee69",
-          "1aa8050a-619b-40c6-9b9b-81a2aa9c0912"
-        ]
-      }
-    },
-    {
-      "_version": "1",
-      "mtypes.id": {
-        "$nin": [
-          "025ba2c5-5e96-4667-a677-8186463aee69",
-          "1aa8050a-619b-40c6-9b9b-81a2aa9c0912"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc2593 records150.5940.6290.6320.6670.7960.2020.6310.6630.067±0.0340.6290.697
post-poc2593 records50.9510.9670.9861.0124.0563.1050.9791.5941.231±1.0790.5152.673
- - -
- -
- - -
-
-
-

items • material-type-not-in • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_material_type_id": {
-        "$nin": [
-          "025ba2c5-5e96-4667-a677-8186463aee69",
-          "1aa8050a-619b-40c6-9b9b-81a2aa9c0912"
-        ]
-      }
-    },
-    {
-      "_version": "1",
-      "mtypes.id": {
-        "$nin": [
-          "025ba2c5-5e96-4667-a677-8186463aee69",
-          "1aa8050a-619b-40c6-9b9b-81a2aa9c0912"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc2593 records1510.02620.10120.10820.11520.22210.19620.10619.4532.520±1.27518.17820.728
post-poc2593 records560.62160.62460.73760.74370.72410.10360.68162.6904.017±3.52159.16866.211
- - -
- -
- - -
-
-
-

items • perm-location-eq-and-temp-location-neq • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_permanent_location_id": {
-            "$eq": "c3dd9997-463b-47e3-958c-2c6fc2775f90"
-          }
-        },
-        {
-          "item_temporary_location_id": {
-            "$ne": "c3dd9997-463b-47e3-958c-2c6fc2775f90"
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "permanent_location.id": {
-            "$eq": "c3dd9997-463b-47e3-958c-2c6fc2775f90"
-          }
-        },
-        {
-          "temporary_location.id": {
-            "$ne": "c3dd9997-463b-47e3-958c-2c6fc2775f90"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc2 records5710.47010.60910.83910.97511.4520.98210.83210.8320.250±0.06510.76710.897
post-poc2 records3110.88411.42011.43711.61112.4371.55311.52611.4840.275±0.09711.38811.581
- - -
- -
- - -
-
-
-

items • perm-location-eq-and-temp-location-neq • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_permanent_location_id": {
-            "$eq": "c3dd9997-463b-47e3-958c-2c6fc2775f90"
-          }
-        },
-        {
-          "item_temporary_location_id": {
-            "$ne": "c3dd9997-463b-47e3-958c-2c6fc2775f90"
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "permanent_location.id": {
-            "$eq": "c3dd9997-463b-47e3-958c-2c6fc2775f90"
-          }
-        },
-        {
-          "temporary_location.id": {
-            "$ne": "c3dd9997-463b-47e3-958c-2c6fc2775f90"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc2 records570.0920.1050.1880.2050.5270.4350.1580.1700.085±0.0220.1480.192
post-poc2 records50.1980.2060.2140.2200.2380.0400.2150.2150.014±0.0120.2030.227
- - -
- -
- - -
-
-
-

items • perm-location-eq-and-temp-location-neq • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "item_permanent_location_id": {
-            "$eq": "c3dd9997-463b-47e3-958c-2c6fc2775f90"
-          }
-        },
-        {
-          "item_temporary_location_id": {
-            "$ne": "c3dd9997-463b-47e3-958c-2c6fc2775f90"
-          }
-        }
-      ]
-    },
-    {
-      "_version": "1",
-      "$and": [
-        {
-          "permanent_location.id": {
-            "$eq": "c3dd9997-463b-47e3-958c-2c6fc2775f90"
-          }
-        },
-        {
-          "temporary_location.id": {
-            "$ne": "c3dd9997-463b-47e3-958c-2c6fc2775f90"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc2 records5710.00910.04810.06310.09810.2880.27910.06910.0760.048±0.01210.06310.088
post-poc2 records510.07010.07210.07310.07610.0800.01010.07410.0740.003±0.00310.07110.077
- - -
- -
- - -
-
-
-

items • perm-location-eq • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_permanent_location_id": {
-        "$eq": "f4619e23-d081-4447-a589-e278037e7f5e"
-      }
-    },
-    {
-      "_version": "1",
-      "permanent_location.id": {
-        "$eq": "f4619e23-d081-4447-a589-e278037e7f5e"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc4 records5710.45610.60510.86110.97611.6861.23010.80210.8320.261±0.06810.76510.900
post-poc4 records5810.98011.20711.40211.57815.6394.65911.34411.6870.995±0.25611.43111.943
- - -
- -
- - -
-
-
-

items • perm-location-eq • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_permanent_location_id": {
-        "$eq": "f4619e23-d081-4447-a589-e278037e7f5e"
-      }
-    },
-    {
-      "_version": "1",
-      "permanent_location.id": {
-        "$eq": "f4619e23-d081-4447-a589-e278037e7f5e"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc4 records570.0850.1060.1940.2040.3940.3090.1620.1660.062±0.0160.1500.182
post-poc4 records270.2110.2450.2680.3200.5080.2970.2790.2940.074±0.0280.2660.322
- - -
- -
- - -
-
-
-

items • perm-location-eq • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_permanent_location_id": {
-        "$eq": "f4619e23-d081-4447-a589-e278037e7f5e"
-      }
-    },
-    {
-      "_version": "1",
-      "permanent_location.id": {
-        "$eq": "f4619e23-d081-4447-a589-e278037e7f5e"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc4 records5710.01410.04910.06210.10110.3370.32310.07210.0840.061±0.01610.06910.100
post-poc4 records2710.06510.08710.09410.11010.4150.35010.09610.1120.065±0.02510.08810.137
- - -
- -
- - -
-
-
-

items • status-eq-checked-out • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_status": {
-        "$eq": "Checked out"
-      }
-    },
-    {
-      "_version": "1",
-      "items.status_name": {
-        "$eq": "Checked out"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc3645 records5111.13211.40311.79111.98321.90410.77211.71912.1081.953±0.53611.57212.644
post-poc3645 records2811.95012.34612.43612.64922.75110.80112.39312.9321.967±0.72912.20413.661
- - -
- -
- - -
-
-
-

items • status-eq-checked-out • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_status": {
-        "$eq": "Checked out"
-      }
-    },
-    {
-      "_version": "1",
-      "items.status_name": {
-        "$eq": "Checked out"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc3645 records510.7380.8490.9781.1051.6700.9320.9841.0070.190±0.0520.9551.059
post-poc3645 records51.0571.0681.1401.1481.1540.0971.1131.1130.042±0.0371.0771.150
- - -
- -
- - -
-
-
-

items • status-eq-checked-out • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_status": {
-        "$eq": "Checked out"
-      }
-    },
-    {
-      "_version": "1",
-      "items.status_name": {
-        "$eq": "Checked out"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc3645 records5110.02610.05110.05810.10220.23710.21110.07110.4771.957±0.5379.94011.014
post-poc3645 records510.07910.08510.09310.13110.2420.16310.09710.1260.061±0.05310.07310.179
- - -
- -
- - -
-
-
-

items • status-in-array • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_status": {
-        "$in": [
-          "Aged to lost",
-          "Claimed returned",
-          "Declared lost",
-          "Long missing",
-          "Missing"
-        ]
-      }
-    },
-    {
-      "_version": "1",
-      "items.status_name": {
-        "$in": [
-          "Aged to lost",
-          "Claimed returned",
-          "Declared lost",
-          "Long missing",
-          "Missing"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc49702 records3818.95121.65225.23827.32576.13357.18224.49627.88412.214±3.88324.00031.767
post-poc49702 records3525.63127.52031.87034.64746.04920.41831.24331.6664.415±1.46330.20333.129
- - -
- -
- - -
-
-
-

items • status-in-array • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_status": {
-        "$in": [
-          "Aged to lost",
-          "Claimed returned",
-          "Declared lost",
-          "Long missing",
-          "Missing"
-        ]
-      }
-    },
-    {
-      "_version": "1",
-      "items.status_name": {
-        "$in": [
-          "Aged to lost",
-          "Claimed returned",
-          "Declared lost",
-          "Long missing",
-          "Missing"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc49702 records238.2578.98810.92514.10122.39114.13411.62012.0893.640±1.48810.60113.576
post-poc49702 records515.69718.21019.80121.20124.3298.63219.84819.8482.892±2.53517.31222.383
- - -
- -
- - -
-
-
-

items • status-in-array • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_status": {
-        "$in": [
-          "Aged to lost",
-          "Claimed returned",
-          "Declared lost",
-          "Long missing",
-          "Missing"
-        ]
-      }
-    },
-    {
-      "_version": "1",
-      "items.status_name": {
-        "$in": [
-          "Aged to lost",
-          "Claimed returned",
-          "Declared lost",
-          "Long missing",
-          "Missing"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc49702 records2310.04210.07810.09110.10250.70440.66210.08414.05411.467±4.6879.36818.741
post-poc49702 records510.11810.12010.12210.12610.2420.12410.12110.1460.048±0.04210.10310.188
- - -
- -
- - -
-
-
-

items • status-not-available • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_status": {
-        "$ne": "Available"
-      }
-    },
-    {
-      "_version": "1",
-      "items.status_name": {
-        "$ne": "Available"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc92686 records1559.95970.33875.21494.401103.76843.80980.48180.48114.019±7.09573.38687.576
post-poc92686 records1369.40874.32884.90796.023120.17350.76587.75887.75815.960±8.67679.08396.434
- - -
- -
- - -
-
-
-

items • status-not-available • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_status": {
-        "$ne": "Available"
-      }
-    },
-    {
-      "_version": "1",
-      "items.status_name": {
-        "$ne": "Available"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc92686 records1018.43127.40130.43033.34842.93324.50231.05430.9807.145±4.42826.55135.408
post-poc92686 records534.21037.82639.84443.12343.8259.61539.76639.7663.532±3.09636.66942.862
- - -
- -
- - -
-
-
-

items • status-not-available • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "item_status": {
-        "$ne": "Available"
-      }
-    },
-    {
-      "_version": "1",
-      "items.status_name": {
-        "$ne": "Available"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc92686 records1040.29440.32640.37440.41870.56230.26840.35345.37610.301±6.38538.99151.761
post-poc92686 records540.57640.67150.85160.78681.07540.49954.79254.79215.125±13.25741.53568.049
- - -
- -
- - -
-
-
-

items • title-regex • • all

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "instance_title": {
-        "$regex": "africa"
-      }
-    },
-    {
-      "_version": "1",
-      "instances.title": {
-        "$regex": "africa"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc38722 records10113.660118.534119.996199.631784.773671.113137.962263.920255.948±158.638105.282422.558
post-poc38722 records11102.353105.490121.178670.679767.828665.475330.478330.478292.994±173.148157.330503.626
- - -
- -
- - -
-
-
-

items • title-regex • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "instance_title": {
-        "$regex": "africa"
-      }
-    },
-    {
-      "_version": "1",
-      "instances.title": {
-        "$regex": "africa"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc38722 records108.2338.42811.27115.46824.52316.29012.70212.7024.946±3.0669.63615.767
post-poc38722 records510.34811.12711.98613.81214.9874.63912.45212.4521.713±1.50210.95013.954
- - -
- -
- - -
-
-
-

items • title-regex • • query

-
- Query -
-      {
-  "entityType": [
-    "0cb79a4c-f7eb-4941-a104-745224ae0292",
-    "d0213d22-32cf-490f-9196-d81c3c66e53f"
-  ],
-  "query": [
-    {
-      "instance_title": {
-        "$regex": "africa"
-      }
-    },
-    {
-      "_version": "1",
-      "instances.title": {
-        "$regex": "africa"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "item_status",
-      "instance_title",
-      "item_barcode",
-      "item_hrid"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "instances.title",
-      "items.barcode",
-      "items.hrid"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc38722 records10101.036105.915110.785186.666759.507658.471126.107250.265252.098±156.25294.013406.517
post-poc38722 records590.80490.92291.12091.283736.189645.38591.032220.064258.063±226.202-6.138446.266
- - -
- -
- - -
-
-
-

loans • inactive-users-with-open-loans • • all

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "user_active": {
-            "$eq": "false"
-          }
-        },
-        {
-          "loan_status": {
-            "$eq": "Open"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "users.active": {
-            "$eq": "false"
-          }
-        },
-        {
-          "loans.status_name": {
-            "$eq": "Open"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc209 records5710.53410.66110.82211.00111.6771.14310.84210.8570.250±0.06510.79210.922
post-poc209 records3110.93211.46511.58411.64412.4801.54811.57811.5590.318±0.11211.44711.670
- - -
- -
- - -
-
-
-

loans • inactive-users-with-open-loans • • import-results

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "user_active": {
-            "$eq": "false"
-          }
-        },
-        {
-          "loan_status": {
-            "$eq": "Open"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "users.active": {
-            "$eq": "false"
-          }
-        },
-        {
-          "loans.status_name": {
-            "$eq": "Open"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc209 records570.0940.1320.2320.2530.5520.4580.1970.2030.081±0.0210.1820.224
post-poc209 records50.2320.2380.2380.2400.3850.1530.2390.2670.059±0.0520.2150.319
- - -
- -
- - -
-
-
-

loans • inactive-users-with-open-loans • • query

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "user_active": {
-            "$eq": "false"
-          }
-        },
-        {
-          "loan_status": {
-            "$eq": "Open"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "users.active": {
-            "$eq": "false"
-          }
-        },
-        {
-          "loans.status_name": {
-            "$eq": "Open"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc209 records5710.01010.04810.05210.09810.3130.30310.06410.0750.056±0.01510.06110.090
post-poc209 records510.03910.06710.07610.07810.0790.04010.07510.0680.015±0.01310.05510.081
- - -
- -
- - -
-
-
-

loans • loan-checkout-date-window • • all

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "loan_checkout_date": {
-            "$gt": "2020-01-01"
-          }
-        },
-        {
-          "loan_checkout_date": {
-            "$lt": "2021-01-01"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "loans.loan_date": {
-            "$gt": "2020-01-01"
-          }
-        },
-        {
-          "loans.loan_date": {
-            "$lt": "2021-01-01"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc19709 records3713.69814.63615.68816.22745.41331.71515.34116.7285.968±1.92314.80618.651
post-poc54068 records1427.18432.98737.07737.29538.64211.45834.64434.6443.831±2.00732.63736.650
- - -
- -
- - -
-
-
-

loans • loan-checkout-date-window • • import-results

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "loan_checkout_date": {
-            "$gt": "2020-01-01"
-          }
-        },
-        {
-          "loan_checkout_date": {
-            "$lt": "2021-01-01"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "loans.loan_date": {
-            "$gt": "2020-01-01"
-          }
-        },
-        {
-          "loans.loan_date": {
-            "$lt": "2021-01-01"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc19709 records373.0014.0214.6615.2286.1873.1864.6134.6130.884±0.2854.3284.898
post-poc54068 records516.20417.18617.37423.99725.6719.46720.08620.0863.933±3.44716.63923.533
- - -
- -
- - -
-
-
-

loans • loan-checkout-date-window • • query

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "loan_checkout_date": {
-            "$gt": "2020-01-01"
-          }
-        },
-        {
-          "loan_checkout_date": {
-            "$lt": "2021-01-01"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "loans.loan_date": {
-            "$gt": "2020-01-01"
-          }
-        },
-        {
-          "loans.loan_date": {
-            "$lt": "2021-01-01"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc19709 records3710.04710.06010.07010.11740.25430.20710.08011.4555.808±1.8729.58313.326
post-poc54068 records510.08410.10310.11010.12210.1320.04810.11010.1100.016±0.01410.09610.125
- - -
- -
- - -
-
-
-

loans • loan-open-and-group-not-in-and-material-type-eq • • all

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "loan_status": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "user_patron_group_id": {
-            "$nin": [
-              "d01b7bba-48fb-4264-833b-b88d23505404",
-              "d010bfa2-4983-4741-9ef8-1295484297cc"
-            ]
-          }
-        },
-        {
-          "item_material_type_id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "loans.status_name": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "groups.id": {
-            "$nin": [
-              "d01b7bba-48fb-4264-833b-b88d23505404",
-              "d010bfa2-4983-4741-9ef8-1295484297cc"
-            ]
-          }
-        },
-        {
-          "mtypes.id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc53255 records2219.71522.68225.85931.99146.13526.42027.78228.6167.744±3.23625.38031.852
post-poc53255 records1426.82330.68233.14636.13643.60016.77733.52133.5214.187±2.19331.32835.714
- - -
- -
- - -
-
-
-

loans • loan-open-and-group-not-in-and-material-type-eq • • import-results

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "loan_status": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "user_patron_group_id": {
-            "$nin": [
-              "d01b7bba-48fb-4264-833b-b88d23505404",
-              "d010bfa2-4983-4741-9ef8-1295484297cc"
-            ]
-          }
-        },
-        {
-          "item_material_type_id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "loans.status_name": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "groups.id": {
-            "$nin": [
-              "d01b7bba-48fb-4264-833b-b88d23505404",
-              "d010bfa2-4983-4741-9ef8-1295484297cc"
-            ]
-          }
-        },
-        {
-          "mtypes.id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc53255 records228.86411.69115.07919.94235.00426.14015.82816.7006.574±2.74713.95319.447
post-poc53255 records515.36217.79618.12921.54223.2157.85319.20919.2092.809±2.46216.74721.671
- - -
- -
- - -
-
-
-

loans • loan-open-and-group-not-in-and-material-type-eq • • query

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "loan_status": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "user_patron_group_id": {
-            "$nin": [
-              "d01b7bba-48fb-4264-833b-b88d23505404",
-              "d010bfa2-4983-4741-9ef8-1295484297cc"
-            ]
-          }
-        },
-        {
-          "item_material_type_id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "loans.status_name": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "groups.id": {
-            "$nin": [
-              "d01b7bba-48fb-4264-833b-b88d23505404",
-              "d010bfa2-4983-4741-9ef8-1295484297cc"
-            ]
-          }
-        },
-        {
-          "mtypes.id": {
-            "$eq": "025ba2c5-5e96-4667-a677-8186463aee69"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc53255 records2210.05110.07510.08410.17320.34410.29310.11611.0422.929±1.2249.81812.266
post-poc53255 records510.08910.10410.11110.11210.2530.16410.10910.1340.060±0.05310.08110.187
- - -
- -
- - -
-
-
-

loans • loan-open-and-item-available • • all

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "loan_status": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "item_status": {
-            "$eq": "Available"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "loans.status_name": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "items.status_name": {
-            "$eq": "Available"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc0 records5110.44710.52710.78010.91041.18930.74210.75711.9425.871±1.61110.33113.554
post-poc0 records2910.91111.20311.36411.57351.20040.28911.36714.83010.300±3.74911.08218.579
- - -
- -
- - -
-
-
-

loans • loan-open-and-item-available • • import-results

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "loan_status": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "item_status": {
-            "$eq": "Available"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "loans.status_name": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "items.status_name": {
-            "$eq": "Available"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc0 records510.0440.0480.0940.0990.2500.2060.0760.0850.047±0.0130.0720.097
post-poc0 records50.0990.1070.1230.1240.1260.0270.1160.1160.011±0.0090.1060.125
- - -
- -
- - -
-
-
-

loans • loan-open-and-item-available • • query

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "loan_status": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "item_status": {
-            "$eq": "Available"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "loans.status_name": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "items.status_name": {
-            "$eq": "Available"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc0 records5110.00810.04710.07410.10440.32230.31410.07011.2685.869±1.6119.65712.878
post-poc0 records510.08610.08910.27540.28750.43540.34924.23424.23417.546±15.3808.85539.614
- - -
- -
- - -
-
-
-

loans • loan-open-and-user-expired • • all

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "loan_status": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "user_expiration_date": {
-            "$lt": "2023-12-31"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "loans.status_name": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "users.expiration_date": {
-            "$lt": "2023-12-31"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc208 records5610.53410.71010.86411.04511.5991.06510.87810.8910.232±0.06110.83010.952
post-poc208 records3110.86811.45911.59211.66212.4841.61611.56511.5580.317±0.11211.44611.669
- - -
- -
- - -
-
-
-

loans • loan-open-and-user-expired • • import-results

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "loan_status": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "user_expiration_date": {
-            "$lt": "2023-12-31"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "loans.status_name": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "users.expiration_date": {
-            "$lt": "2023-12-31"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc208 records560.1100.1490.2260.2380.4640.3540.1980.2140.077±0.0200.1940.234
post-poc208 records50.2260.2260.2370.2450.2760.0500.2340.2420.018±0.0160.2260.258
- - -
- -
- - -
-
-
-

loans • loan-open-and-user-expired • • query

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "$and": [
-        {
-          "loan_status": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "user_expiration_date": {
-            "$lt": "2023-12-31"
-          }
-        }
-      ]
-    },
-    {
-      "$and": [
-        {
-          "loans.status_name": {
-            "$eq": "Open"
-          }
-        },
-        {
-          "users.expiration_date": {
-            "$lt": "2023-12-31"
-          }
-        }
-      ]
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc208 records5610.01510.04910.07310.10410.2960.28110.07310.0910.062±0.01610.07510.107
post-poc208 records510.03610.07210.07310.08810.1830.14710.07810.0900.049±0.04310.04710.134
- - -
- -
- - -
-
-
-

loans • loan-open • • all

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "loan_status": {
-        "$eq": "Open"
-      }
-    },
-    {
-      "loans.status_name": {
-        "$eq": "Open"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc53270 records1821.95723.43329.81634.668131.896109.93930.60336.23124.593±11.36124.86947.592
post-poc53270 records1424.19235.09036.07536.73841.14316.95136.16035.3474.022±2.10733.24037.454
- - -
- -
- - -
-
-
-

loans • loan-open • • import-results

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "loan_status": {
-        "$eq": "Open"
-      }
-    },
-    {
-      "loans.status_name": {
-        "$eq": "Open"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc53270 records1811.32512.10716.80721.40629.68018.35517.94217.9426.071±2.80415.13720.746
post-poc53270 records513.21819.89920.01124.71129.60716.38921.48921.4895.466±4.79116.69826.281
- - -
- -
- - -
-
-
-

loans • loan-open • • query

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "loan_status": {
-        "$eq": "Open"
-      }
-    },
-    {
-      "loans.status_name": {
-        "$eq": "Open"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc53270 records1810.02810.08510.12510.254110.695100.66710.11817.40422.939±10.5976.80728.002
post-poc53270 records510.07010.11110.11210.39220.17710.10710.17112.1724.004±3.5108.66315.682
- - -
- -
- - -
-
-
-

loans • loan-policy-in • • all

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "loan_policy_id": {
-        "$in": [
-          "301ccbe5-fc1a-4a6e-adcb-ed55fc8dc9cf",
-          "26a6fc3d-c437-40ec-8cbe-ea9e19322319",
-          "b959df2b-c9ce-4b78-8e7f-38bde929c681"
-        ]
-      }
-    },
-    {
-      "lpolicy.id": {
-        "$in": [
-          "301ccbe5-fc1a-4a6e-adcb-ed55fc8dc9cf",
-          "26a6fc3d-c437-40ec-8cbe-ea9e19322319",
-          "b959df2b-c9ce-4b78-8e7f-38bde929c681"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc31644 records3015.83217.69820.07621.91238.14122.30919.63920.5814.358±1.55919.02122.140
post-poc57272 records1326.52333.32837.64041.39043.00116.47836.63336.6335.358±2.91333.72139.546
- - -
- -
- - -
-
-
-

loans • loan-policy-in • • import-results

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "loan_policy_id": {
-        "$in": [
-          "301ccbe5-fc1a-4a6e-adcb-ed55fc8dc9cf",
-          "26a6fc3d-c437-40ec-8cbe-ea9e19322319",
-          "b959df2b-c9ce-4b78-8e7f-38bde929c681"
-        ]
-      }
-    },
-    {
-      "lpolicy.id": {
-        "$in": [
-          "301ccbe5-fc1a-4a6e-adcb-ed55fc8dc9cf",
-          "26a6fc3d-c437-40ec-8cbe-ea9e19322319",
-          "b959df2b-c9ce-4b78-8e7f-38bde929c681"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc31644 records305.1367.0188.62010.25612.3537.2178.7088.7082.163±0.7747.9349.482
post-poc57272 records515.45715.58916.02322.05125.56510.10818.93718.9374.134±3.62315.31422.560
- - -
- -
- - -
-
-
-

loans • loan-policy-in • • query

-
- Query -
-      {
-  "entityType": [
-    "4e09d89a-44ed-418e-a9cc-820dfb27bf3a",
-    "d6729885-f2fb-4dc7-b7d0-a865a7f461e4"
-  ],
-  "query": [
-    {
-      "loan_policy_id": {
-        "$in": [
-          "301ccbe5-fc1a-4a6e-adcb-ed55fc8dc9cf",
-          "26a6fc3d-c437-40ec-8cbe-ea9e19322319",
-          "b959df2b-c9ce-4b78-8e7f-38bde929c681"
-        ]
-      }
-    },
-    {
-      "lpolicy.id": {
-        "$in": [
-          "301ccbe5-fc1a-4a6e-adcb-ed55fc8dc9cf",
-          "26a6fc3d-c437-40ec-8cbe-ea9e19322319",
-          "b959df2b-c9ce-4b78-8e7f-38bde929c681"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "item_id",
-      "item_status",
-      "loan_checkout_date",
-      "id",
-      "loan_status",
-      "user_active"
-    ],
-    [
-      "items.id",
-      "items.status_name",
-      "loans.loan_date",
-      "loans.id",
-      "loans.status_name",
-      "users.active"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc31644 records3010.03610.07410.10510.12430.17020.13410.09411.1153.970±1.4219.69412.536
post-poc57272 records510.09010.10410.11010.21720.30310.21310.13012.1654.069±3.5678.59815.732
- - -
- -
- - -
-
-
-

users • barcode-regex • • all

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_barcode": {
-        "$regex": "^0"
-      }
-    },
-    {
-      "users.barcode": {
-        "$regex": "^0"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc90042 records1338.38741.64149.90257.80764.45826.07150.58950.5899.247±5.02745.56255.616
post-poc90042 records1338.63049.31660.43173.18193.09854.46863.08163.08116.500±8.96954.11172.050
- - -
- -
- - -
-
-
-

users • barcode-regex • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_barcode": {
-        "$regex": "^0"
-      }
-    },
-    {
-      "users.barcode": {
-        "$regex": "^0"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc90042 records1316.92720.52028.04541.53746.97530.04830.83030.83010.825±5.88424.94636.714
post-poc90042 records1317.06528.14639.11152.05172.31355.24841.83241.83216.518±8.97932.85350.812
- - -
- -
- - -
-
-
-

users • barcode-regex • • query

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_barcode": {
-        "$regex": "^0"
-      }
-    },
-    {
-      "users.barcode": {
-        "$regex": "^0"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc90042 records1310.10420.22120.25120.39720.48410.38020.31118.7503.661±1.99016.76020.740
post-poc90042 records1320.15320.21020.24220.32620.4690.31620.26320.2630.081±0.04420.21920.307
- - -
- -
- - -
-
-
-

users • is-active • • all

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_active": {
-        "$eq": "true"
-      }
-    },
-    {
-      "users.active": {
-        "$eq": "true"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc90333 records1330.46843.27452.67055.90861.77331.30547.70947.70910.033±5.45442.25553.163
post-poc90333 records1628.98646.86658.36268.26576.95147.96557.17957.17913.601±6.66550.51563.844
- - -
- -
- - -
-
-
-

users • is-active • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_active": {
-        "$eq": "true"
-      }
-    },
-    {
-      "users.active": {
-        "$eq": "true"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc90333 records1319.61522.63431.65135.04940.60220.98728.89328.8936.863±3.73125.16232.624
post-poc90333 records1017.50825.38041.25949.64555.24037.73237.50537.50514.587±9.04128.46446.545
- - -
- -
- - -
-
-
-

users • is-active • • query

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_active": {
-        "$eq": "true"
-      }
-    },
-    {
-      "users.active": {
-        "$eq": "true"
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc90333 records1310.07620.14920.20720.34920.39610.32020.27217.9244.289±2.33115.59220.255
post-poc90333 records1010.07720.15820.17020.22720.32910.25220.21918.1924.054±2.51215.68020.704
- - -
- -
- - -
-
-
-

users • patron-group-id-nin • • all

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_patron_group_id": {
-        "$nin": [
-          "6ad290aa-5851-4356-bb8d-1015e40c05c2",
-          "ba484dd9-a2c3-4d80-b067-91cd2066134b"
-        ]
-      }
-    },
-    {
-      "groups.id": {
-        "$nin": [
-          "6ad290aa-5851-4356-bb8d-1015e40c05c2",
-          "ba484dd9-a2c3-4d80-b067-91cd2066134b"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc90677 records1427.99140.01844.08146.43880.37352.38243.11244.69411.610±6.08238.61250.775
post-poc90677 records1531.95245.52858.20270.54476.25244.30056.85056.85014.426±7.30149.54964.151
- - -
- -
- - -
-
-
-

users • patron-group-id-nin • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_patron_group_id": {
-        "$nin": [
-          "6ad290aa-5851-4356-bb8d-1015e40c05c2",
-          "ba484dd9-a2c3-4d80-b067-91cd2066134b"
-        ]
-      }
-    },
-    {
-      "groups.id": {
-        "$nin": [
-          "6ad290aa-5851-4356-bb8d-1015e40c05c2",
-          "ba484dd9-a2c3-4d80-b067-91cd2066134b"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc90677 records1417.02820.47827.05732.75559.41842.39026.16028.53510.688±5.59922.93734.134
post-poc90677 records1017.38825.32239.46949.41750.94233.55436.84436.84412.851±7.96528.87944.809
- - -
- -
- - -
-
-
-

users • patron-group-id-nin • • query

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_patron_group_id": {
-        "$nin": [
-          "6ad290aa-5851-4356-bb8d-1015e40c05c2",
-          "ba484dd9-a2c3-4d80-b067-91cd2066134b"
-        ]
-      }
-    },
-    {
-      "groups.id": {
-        "$nin": [
-          "6ad290aa-5851-4356-bb8d-1015e40c05c2",
-          "ba484dd9-a2c3-4d80-b067-91cd2066134b"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc90677 records1410.09410.14615.20020.21420.35810.26415.20415.2045.044±2.64212.56217.847
post-poc90677 records1010.06915.11420.14320.23820.31310.24417.17717.1774.647±2.88014.29720.057
- - -
- -
- - -
-
-
-

users • patron-group-in • • all

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_patron_group": {
-        "$in": [
-          "Undergraduate",
-          "Graduate"
-        ]
-      }
-    },
-    {
-      "groups.group": {
-        "$in": [
-          "Undergraduate",
-          "Graduate"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc0 records5710.45710.61610.84110.92211.5061.04910.78810.8010.230±0.06010.74110.861
post-poc12 records2210.75410.82010.89711.15211.6480.89411.00111.0010.256±0.10710.89411.108
- - -
- -
- - -
-
-
-

users • patron-group-in • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_patron_group": {
-        "$in": [
-          "Undergraduate",
-          "Graduate"
-        ]
-      }
-    },
-    {
-      "groups.group": {
-        "$in": [
-          "Undergraduate",
-          "Graduate"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc0 records570.0470.0510.0970.1060.3730.3260.0820.0920.055±0.0140.0770.106
post-poc12 records400.1120.2280.2430.2700.5150.4030.2510.2530.089±0.0280.2260.281
- - -
- -
- - -
-
-
-

users • patron-group-in • • query

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_patron_group": {
-        "$in": [
-          "Undergraduate",
-          "Graduate"
-        ]
-      }
-    },
-    {
-      "groups.group": {
-        "$in": [
-          "Undergraduate",
-          "Graduate"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc0 records5710.01310.05010.05710.10310.2730.26010.06810.0810.053±0.01410.06710.094
post-poc12 records4010.02110.05810.10810.11810.3110.29010.08610.1010.062±0.01910.08210.120
- - -
- -
- - -
-
-
-

users • preferred-contact-type-nin • • all

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_preferred_contact_type": {
-        "$nin": [
-          "Email",
-          "Text Message"
-        ]
-      }
-    },
-    {
-      "users.preferred_contact_type": {
-        "$nin": [
-          "Email",
-          "Text Message"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc90020 records1430.93839.90342.82350.18261.93831.00044.46444.4648.922±4.67339.79049.137
post-poc90020 records1337.58943.04759.49473.97081.37443.78557.70657.70614.981±8.14449.56265.850
- - -
- -
- - -
-
-
-

users • preferred-contact-type-nin • • import-results

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_preferred_contact_type": {
-        "$nin": [
-          "Email",
-          "Text Message"
-        ]
-      }
-    },
-    {
-      "users.preferred_contact_type": {
-        "$nin": [
-          "Email",
-          "Text Message"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc90020 records1418.15521.04521.89834.09440.60222.44726.68326.6838.122±4.25522.42830.937
post-poc90020 records1321.24725.69537.14252.70260.25739.01037.91337.91313.475±7.32530.58845.238
- - -
- -
- - -
-
-
-

users • preferred-contact-type-nin • • query

-
- Query -
-      {
-  "entityType": [
-    "0069cf6f-2833-46db-8a51-8934769b8289",
-    "ddc93926-d15a-4a45-9d9c-93eadc3d9bbf"
-  ],
-  "query": [
-    {
-      "user_preferred_contact_type": {
-        "$nin": [
-          "Email",
-          "Text Message"
-        ]
-      }
-    },
-    {
-      "users.preferred_contact_type": {
-        "$nin": [
-          "Email",
-          "Text Message"
-        ]
-      }
-    }
-  ],
-  "fields": [
-    [
-      "id",
-      "user_active",
-      "user_patron_group",
-      "user_barcode"
-    ],
-    [
-      "users.id",
-      "users.active",
-      "groups.group",
-      "users.barcode"
-    ]
-  ]
-}
-      
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VersionResult# samplesminQ1medianQ3maxrangeIQR meanmeanstddevMOE95% CI min mean95% CI max mean
pre-poc90020 records1410.07110.19320.25220.32020.43810.36716.67116.6714.876±2.55414.11719.226
post-poc90020 records1310.08720.18720.25020.32620.56010.47320.27118.7273.684±2.00316.72420.729
- - -
- -
- - -
-
- - \ No newline at end of file diff --git a/fqm-speed-comparison/tsconfig.json b/fqm-speed-comparison/tsconfig.json deleted file mode 100644 index 99ee12355..000000000 --- a/fqm-speed-comparison/tsconfig.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "compilerOptions": { - "allowJs": true, - "noImplicitAny": true, - "esModuleInterop": true, - "jsx": "react", - "lib": ["esnext", "dom"], - "module": "ESNext", - "moduleResolution": "node", - "strict": true, - "resolveJsonModule": true, - "target": "ESNext" - }, - "ts-node": { - "esm": true - } -}