diff --git a/CHANGELOG.md b/CHANGELOG.md index dad4aff8236..c78c576a4b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -### X.X.X (comming soon) +### 8.7.5 (6 January 2020) Other: - Added a new example for electron with the remote API. Thanks [@SebastienWae](https://github.com/SebastienWae) diff --git a/dist/es/plugins/replication-graphql/index.js b/dist/es/plugins/replication-graphql/index.js index cb230601e86..62fa8bff3c3 100644 --- a/dist/es/plugins/replication-graphql/index.js +++ b/dist/es/plugins/replication-graphql/index.js @@ -549,13 +549,20 @@ function () { * so other instances get informed about it */ originalDoc = flatClone(toPouch); - originalDoc._deleted = deletedValue; + + if (deletedValue) { + originalDoc._deleted = deletedValue; + } else { + delete originalDoc._deleted; + } + delete originalDoc[this.deletedFlag]; + delete originalDoc._revisions; originalDoc._rev = newRevision; cE = changeEventfromPouchChange(originalDoc, this.collection); this.collection.$emit(cE); - case 17: + case 18: case "end": return _context6.stop(); } diff --git a/dist/es/rx-query.js b/dist/es/rx-query.js index 5695f01aa2d..1c4052a51c0 100644 --- a/dist/es/rx-query.js +++ b/dist/es/rx-query.js @@ -2,7 +2,7 @@ import _createClass from "@babel/runtime/helpers/createClass"; import deepEqual from 'deep-equal'; import { merge, BehaviorSubject } from 'rxjs'; import { mergeMap, filter, map, first, tap } from 'rxjs/operators'; -import { massageSelector, rowFilter } from 'pouchdb-selector-core'; +import { massageSelector, filterInMemoryFields } from 'pouchdb-selector-core'; import { createMQuery } from './mquery/mquery'; import { sortObject, stringifyFilter, clone, pluginMissing } from './util'; import { create as createQueryChangeDetector } from './query-change-detector'; @@ -215,11 +215,23 @@ function () { _proto.doesDocumentDataMatch = function doesDocumentDataMatch(docData) { // if doc is deleted, it cannot match if (docData._deleted) return false; - var selector = this.mquery._conditions; - docData = this.collection.schema.swapPrimaryToId(docData); - var inMemoryFields = Object.keys(selector); - var matches = rowFilter(docData, this.massageSelector, inMemoryFields); - return matches; + docData = this.collection.schema.swapPrimaryToId(docData); // return matchesSelector(docData, selector); + + /** + * the following is equal to the implementation of pouchdb + * we do not use matchesSelector() directly so we can cache the + * result of massageSelector + * @link https://github.com/pouchdb/pouchdb/blob/master/packages/node_modules/pouchdb-selector-core/src/matches-selector.js + */ + + var selector = this.massageSelector; + var row = { + doc: docData + }; + var rowsMatched = filterInMemoryFields([row], { + selector: selector + }, Object.keys(selector)); + return rowsMatched && rowsMatched.length === 1; } /** * deletes all found documents diff --git a/dist/lib/plugins/replication-graphql/index.js b/dist/lib/plugins/replication-graphql/index.js index 22194ad258d..f8a4c67cec2 100644 --- a/dist/lib/plugins/replication-graphql/index.js +++ b/dist/lib/plugins/replication-graphql/index.js @@ -571,13 +571,20 @@ function () { * so other instances get informed about it */ originalDoc = (0, _util.flatClone)(toPouch); - originalDoc._deleted = deletedValue; + + if (deletedValue) { + originalDoc._deleted = deletedValue; + } else { + delete originalDoc._deleted; + } + delete originalDoc[this.deletedFlag]; + delete originalDoc._revisions; originalDoc._rev = newRevision; cE = (0, _rxChangeEvent.changeEventfromPouchChange)(originalDoc, this.collection); this.collection.$emit(cE); - case 17: + case 18: case "end": return _context6.stop(); } diff --git a/dist/lib/rx-query.js b/dist/lib/rx-query.js index a27c2de6c9f..16752f243cd 100644 --- a/dist/lib/rx-query.js +++ b/dist/lib/rx-query.js @@ -237,11 +237,23 @@ function () { _proto.doesDocumentDataMatch = function doesDocumentDataMatch(docData) { // if doc is deleted, it cannot match if (docData._deleted) return false; - var selector = this.mquery._conditions; - docData = this.collection.schema.swapPrimaryToId(docData); - var inMemoryFields = Object.keys(selector); - var matches = (0, _pouchdbSelectorCore.rowFilter)(docData, this.massageSelector, inMemoryFields); - return matches; + docData = this.collection.schema.swapPrimaryToId(docData); // return matchesSelector(docData, selector); + + /** + * the following is equal to the implementation of pouchdb + * we do not use matchesSelector() directly so we can cache the + * result of massageSelector + * @link https://github.com/pouchdb/pouchdb/blob/master/packages/node_modules/pouchdb-selector-core/src/matches-selector.js + */ + + var selector = this.massageSelector; + var row = { + doc: docData + }; + var rowsMatched = (0, _pouchdbSelectorCore.filterInMemoryFields)([row], { + selector: selector + }, Object.keys(selector)); + return rowsMatched && rowsMatched.length === 1; } /** * deletes all found documents diff --git a/dist/rxdb.browserify.js b/dist/rxdb.browserify.js index 02aa563028d..c8e7b0a7633 100644 --- a/dist/rxdb.browserify.js +++ b/dist/rxdb.browserify.js @@ -7977,11 +7977,23 @@ function () { _proto.doesDocumentDataMatch = function doesDocumentDataMatch(docData) { // if doc is deleted, it cannot match if (docData._deleted) return false; - var selector = this.mquery._conditions; - docData = this.collection.schema.swapPrimaryToId(docData); - var inMemoryFields = Object.keys(selector); - var matches = (0, _pouchdbSelectorCore.rowFilter)(docData, this.massageSelector, inMemoryFields); - return matches; + docData = this.collection.schema.swapPrimaryToId(docData); // return matchesSelector(docData, selector); + + /** + * the following is equal to the implementation of pouchdb + * we do not use matchesSelector() directly so we can cache the + * result of massageSelector + * @link https://github.com/pouchdb/pouchdb/blob/master/packages/node_modules/pouchdb-selector-core/src/matches-selector.js + */ + + var selector = this.massageSelector; + var row = { + doc: docData + }; + var rowsMatched = (0, _pouchdbSelectorCore.filterInMemoryFields)([row], { + selector: selector + }, Object.keys(selector)); + return rowsMatched && rowsMatched.length === 1; } /** * deletes all found documents @@ -46073,7 +46085,10 @@ var CatchSubscriber = (function (_super) { this._unsubscribeAndRecycle(); var innerSubscriber = new InnerSubscriber_1.InnerSubscriber(this, undefined, undefined); this.add(innerSubscriber); - subscribeToResult_1.subscribeToResult(this, result, undefined, undefined, innerSubscriber); + var innerSubscription = subscribeToResult_1.subscribeToResult(this, result, undefined, undefined, innerSubscriber); + if (innerSubscription !== innerSubscriber) { + this.add(innerSubscription); + } } }; return CatchSubscriber; @@ -47126,10 +47141,13 @@ var ExhaustMapSubscriber = (function (_super) { this._innerSub(result, value, index); }; ExhaustMapSubscriber.prototype._innerSub = function (result, value, index) { - var innerSubscriber = new InnerSubscriber_1.InnerSubscriber(this, undefined, undefined); + var innerSubscriber = new InnerSubscriber_1.InnerSubscriber(this, value, index); var destination = this.destination; destination.add(innerSubscriber); - subscribeToResult_1.subscribeToResult(this, result, value, index, innerSubscriber); + var innerSubscription = subscribeToResult_1.subscribeToResult(this, result, undefined, undefined, innerSubscriber); + if (innerSubscription !== innerSubscriber) { + destination.add(innerSubscription); + } }; ExhaustMapSubscriber.prototype._complete = function () { this.hasCompleted = true; @@ -48040,10 +48058,13 @@ var MergeMapSubscriber = (function (_super) { this._innerSub(result, value, index); }; MergeMapSubscriber.prototype._innerSub = function (ish, value, index) { - var innerSubscriber = new InnerSubscriber_1.InnerSubscriber(this, undefined, undefined); + var innerSubscriber = new InnerSubscriber_1.InnerSubscriber(this, value, index); var destination = this.destination; destination.add(innerSubscriber); - subscribeToResult_1.subscribeToResult(this, ish, value, index, innerSubscriber); + var innerSubscription = subscribeToResult_1.subscribeToResult(this, ish, undefined, undefined, innerSubscriber); + if (innerSubscription !== innerSubscriber) { + destination.add(innerSubscription); + } }; MergeMapSubscriber.prototype._complete = function () { this.hasCompleted = true; @@ -48156,10 +48177,13 @@ var MergeScanSubscriber = (function (_super) { } }; MergeScanSubscriber.prototype._innerSub = function (ish, value, index) { - var innerSubscriber = new InnerSubscriber_1.InnerSubscriber(this, undefined, undefined); + var innerSubscriber = new InnerSubscriber_1.InnerSubscriber(this, value, index); var destination = this.destination; destination.add(innerSubscriber); - subscribeToResult_1.subscribeToResult(this, ish, value, index, innerSubscriber); + var innerSubscription = subscribeToResult_1.subscribeToResult(this, ish, undefined, undefined, innerSubscriber); + if (innerSubscription !== innerSubscriber) { + destination.add(innerSubscription); + } }; MergeScanSubscriber.prototype._complete = function () { this.hasCompleted = true; @@ -48409,7 +48433,10 @@ var OnErrorResumeNextSubscriber = (function (_super) { var innerSubscriber = new InnerSubscriber_1.InnerSubscriber(this, undefined, undefined); var destination = this.destination; destination.add(innerSubscriber); - subscribeToResult_1.subscribeToResult(this, next, undefined, undefined, innerSubscriber); + var innerSubscription = subscribeToResult_1.subscribeToResult(this, next, undefined, undefined, innerSubscriber); + if (innerSubscription !== innerSubscriber) { + destination.add(innerSubscription); + } } else { this.destination.complete(); @@ -49367,6 +49394,7 @@ function shareReplayOperator(_a) { }, complete: function () { isComplete = true; + subscription = undefined; subject.complete(); }, }); @@ -49618,7 +49646,11 @@ var SkipUntilSubscriber = (function (_super) { var innerSubscriber = new InnerSubscriber_1.InnerSubscriber(_this, undefined, undefined); _this.add(innerSubscriber); _this.innerSubscription = innerSubscriber; - subscribeToResult_1.subscribeToResult(_this, notifier, undefined, undefined, innerSubscriber); + var innerSubscription = subscribeToResult_1.subscribeToResult(_this, notifier, undefined, undefined, innerSubscriber); + if (innerSubscription !== innerSubscriber) { + _this.add(innerSubscription); + _this.innerSubscription = innerSubscription; + } return _this; } SkipUntilSubscriber.prototype._next = function (value) { @@ -49812,10 +49844,13 @@ var SwitchMapSubscriber = (function (_super) { if (innerSubscription) { innerSubscription.unsubscribe(); } - var innerSubscriber = new InnerSubscriber_1.InnerSubscriber(this, undefined, undefined); + var innerSubscriber = new InnerSubscriber_1.InnerSubscriber(this, value, index); var destination = this.destination; destination.add(innerSubscriber); - this.innerSubscription = subscribeToResult_1.subscribeToResult(this, result, value, index, innerSubscriber); + this.innerSubscription = subscribeToResult_1.subscribeToResult(this, result, undefined, undefined, innerSubscriber); + if (this.innerSubscription !== innerSubscriber) { + destination.add(this.innerSubscription); + } }; SwitchMapSubscriber.prototype._complete = function () { var innerSubscription = this.innerSubscription; @@ -52154,24 +52189,31 @@ exports.EmptyError = EmptyErrorImpl; "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var nextHandle = 1; -var tasksByHandle = {}; -function runIfPresent(handle) { - var cb = tasksByHandle[handle]; - if (cb) { - cb(); +var RESOLVED = (function () { return Promise.resolve(); })(); +var activeHandles = {}; +function findAndClearHandle(handle) { + if (handle in activeHandles) { + delete activeHandles[handle]; + return true; } + return false; } exports.Immediate = { setImmediate: function (cb) { var handle = nextHandle++; - tasksByHandle[handle] = cb; - Promise.resolve().then(function () { return runIfPresent(handle); }); + activeHandles[handle] = true; + RESOLVED.then(function () { return findAndClearHandle(handle) && cb(); }); return handle; }, clearImmediate: function (handle) { - delete tasksByHandle[handle]; + findAndClearHandle(handle); }, }; +exports.TestTools = { + pending: function () { + return Object.keys(activeHandles).length; + } +}; },{}],673:[function(require,module,exports){ "use strict"; @@ -52492,15 +52534,15 @@ Object.defineProperty(exports, "__esModule", { value: true }); var InnerSubscriber_1 = require("../InnerSubscriber"); var subscribeTo_1 = require("./subscribeTo"); var Observable_1 = require("../Observable"); -function subscribeToResult(outerSubscriber, result, outerValue, outerIndex, destination) { - if (destination === void 0) { destination = new InnerSubscriber_1.InnerSubscriber(outerSubscriber, outerValue, outerIndex); } - if (destination.closed) { +function subscribeToResult(outerSubscriber, result, outerValue, outerIndex, innerSubscriber) { + if (innerSubscriber === void 0) { innerSubscriber = new InnerSubscriber_1.InnerSubscriber(outerSubscriber, outerValue, outerIndex); } + if (innerSubscriber.closed) { return undefined; } if (result instanceof Observable_1.Observable) { - return result.subscribe(destination); + return result.subscribe(innerSubscriber); } - return subscribeTo_1.subscribeTo(result)(destination); + return subscribeTo_1.subscribeTo(result)(innerSubscriber); } exports.subscribeToResult = subscribeToResult; diff --git a/dist/rxdb.browserify.min.js b/dist/rxdb.browserify.min.js index a974df802d6..e989b5c8328 100644 --- a/dist/rxdb.browserify.min.js +++ b/dist/rxdb.browserify.min.js @@ -1 +1 @@ -!function i(s,u,a){function c(t,e){if(!u[t]){if(!s[t]){var r="function"==typeof require&&require;if(!e&&r)return r(t,!0);if(l)return l(t,!0);var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}var o=u[t]={exports:{}};s[t][0].call(o.exports,function(e){return c(s[t][1][e]||e)},o,o.exports,i,s,u,a)}return u[t].exports}for(var l="function"==typeof require&&require,e=0;ethis.limit;)this.buffer.shift()},t.getArrayIndexByPointer=function(e){var t=this.buffer[0],r=this.eventCounterMap.get(t);return e 2",QU1:"RxQuery._execOverDatabase(): op not known",QU2:"limit() must get a number",QU3:"skip() must get a number",QU4:"RxQuery.regex(): You cannot use .regex() on the primary field",QU5:"RxQuery.sort(): does not work because key is not defined in the schema",QU6:"RxQuery.limit(): cannot be called on .findOne()",QU7:"query must be an object",QU8:"query cannot be an array",MQ1:"path must be a string or object",MQ2:"Invalid argument",MQ3:"Invalid sort() argument. Must be a string, object, or array",MQ4:"Invalid argument. Expected instanceof mquery or plain object",MQ5:"method must be used after where() when called with these arguments",MQ6:"Can't mix sort syntaxes. Use either array or object | .sort([['field', 1], ['test', -1]]) | .sort({ field: 1, test: -1 })",MQ7:"Invalid sort value",MQ8:"Can't mix sort syntaxes. Use either array or object",DB1:"RxDocument.prepare(): another instance on this adapter has a different password",DB2:"RxDatabase.collection(): collection-names cannot start with underscore _",DB3:"RxDatabase.collection(): collection already exists. use myDatabase.[collectionName] to get it",DB4:"RxDatabase.collection(): schema is missing",DB5:"RxDatabase.collection(): collection-name not allowed",DB6:"RxDatabase.collection(): another instance created this collection with a different schema. Read this https://pubkey.github.io/rxdb/questions-answers.html#cant-change-the-schema",DB7:"RxDatabase.collection(): schema encrypted but no password given",DB8:"RxDatabase.create(): A RxDatabase with the same name and adapter already exists.\nMake sure to use this combination only once or set ignoreDuplicate to true if you do this intentional",DB9:"RxDatabase.create(): Adapter not added. Use RxDB.plugin(require('pouchdb-adapter-[adaptername]');",DB10:"RxDatabase.create(): To use leveldown-adapters, you have to add the leveldb-plugin. Use RxDB.plugin(require('pouchdb-adapter-leveldb'));",COL1:"RxDocument.insert() You cannot insert an existing document",COL2:"RxCollection.insert() do not provide ._id when it is not the primary key",COL3:"RxCollection.upsert() does not work without primary",COL4:"RxCollection.atomicUpsert() does not work without primary",COL5:"RxCollection.find() if you want to search by _id, use .findOne(_id)",COL6:"RxCollection.findOne() needs a queryObject or string",COL7:"hook must be a function",COL8:"hooks-when not known",COL9:"RxCollection.addHook() hook-name not known",COL10:"RxCollection .postCreate-hooks cannot be async",COL11:"migrationStrategies must be an object",COL12:"A migrationStrategy is missing or too much",COL13:"migrationStrategy must be a function",COL14:"given static method-name is not a string",COL15:"static method-names cannot start with underscore _",COL16:"given static method is not a function",COL17:"RxCollection.ORM: statics-name not allowed",COL18:"collection-method not allowed because fieldname is in the schema",COL19:"Pouchdb document update conflict",DOC1:"RxDocument.get$ cannot get observable of in-array fields because order cannot be guessed",DOC2:"cannot observe primary path",DOC3:"final fields cannot be observed",DOC4:"RxDocument.get$ cannot observe a non-existed field",DOC5:"RxDocument.populate() cannot populate a non-existed field",DOC6:"RxDocument.populate() cannot populate because path has no ref",DOC7:"RxDocument.populate() ref-collection not in database",DOC8:"RxDocument.set(): primary-key cannot be modified",DOC9:"final fields cannot be modified",DOC10:"RxDocument.set(): cannot set childpath when rootPath not selected",DOC11:"RxDocument.save(): cant save deleted document",DOC12:"RxDocument.save(): error",DOC13:"RxDocument.remove(): Document is already deleted",DOC14:"RxDocument.destroy() does not exist",DOC15:"query cannot be an array",DOC16:"Since version 8.0.0 RxDocument.set() can only be called on temporary RxDocuments",DOC17:"Since version 8.0.0 RxDocument.save() can only be called on non-temporary documents",DM1:"migrate() Migration has already run",DM2:"migration of document failed final document does not match final schema",DM3:"migration already running",AT1:"to use attachments, please define this in your schema",EN1:"password is no string",EN2:"validatePassword: min-length of password not complied",JD1:"You must create the collections before you can import their data",JD2:"RxCollection.importDump(): the imported json relies on a different schema",JD3:"RxCollection.importDump(): json.passwordHash does not match the own",LD1:"RxDocument.allAttachments$ cant use attachments on local documents",LD2:"RxDocument.get(): objPath must be a string",LD3:"RxDocument.get$ cannot get observable of in-array fields because order cannot be guessed",LD4:"cannot observe primary path",LD5:"RxDocument.set() id cannot be modified",LD6:"LocalDocument: Function is not useable on local documents",LD7:"Local document already exists",RC1:"Replication: already added",RC2:"RxCollection.sync() query must be from the same RxCollection",RC3:"RxCollection.sync() Do not use a collection's pouchdb as remote, use the collection instead",SC1:"fieldnames do not match the regex",SC2:"SchemaCheck: name 'item' reserved for array-fields",SC3:"SchemaCheck: fieldname has a ref-array but items-type is not string",SC4:"SchemaCheck: fieldname has a ref but is not type string or array",SC5:"SchemaCheck: fieldname cannot be primary and ref at same time",SC6:"SchemaCheck: primary can only be defined at top-level",SC7:"SchemaCheck: default-values can only be defined at top-level",SC8:"SchemaCheck: first level-fields cannot start with underscore _",SC10:"SchemaCheck: schema defines ._rev, this will be done automatically",SC11:"SchemaCheck: schema needs a number >=0 as version",SC12:"SchemaCheck: primary can only be defined once",SC13:"SchemaCheck: primary is always index, do not declare it as index",SC14:"SchemaCheck: primary is always unique, do not declare it as index",SC15:"SchemaCheck: primary cannot be encrypted",SC16:"SchemaCheck: primary must have type: string",SC17:"SchemaCheck: top-level fieldname is not allowed",SC18:"SchemaCheck: compoundIndexes must be an array",SC19:"SchemaCheck: compoundIndexes must contain arrays",SC20:"SchemaCheck: compoundIndexes.array must contains strings",SC21:"SchemaCheck: given index is not defined in schema",SC22:"SchemaCheck: given indexKey is not type:string",SC23:"SchemaCheck: fieldname is not allowed",SC24:"SchemaCheck: required fields must be set via array. See https://spacetelescope.github.io/understanding-json-schema/reference/object.html#required",VD1:"Sub-schema not found, does the schemaPath exists in your schema?",VD2:"object does not match schema",IM1:"InMemory: Memory-Adapter must be added. Use RxDB.plugin(require('pouchdb-adapter-memory'));",IM2:"inMemoryCollection.sync(): Do not replicate with the in-memory instance. Replicate with the parent instead",S1:"You cannot create collections after calling RxDatabase.server()",QL1:"TODO"},o={},i={tunnelErrorMessage:function(e){if(!n[e])throw console.error("RxDB: Error-Code not known: "+e),new Error("Error-Cdoe "+e+" not known, contact the maintainer");return n[e]}},s={rxdb:r.rxdb=!0,prototypes:r.prototypes=o,overwritable:r.overwritable=i};r.default=s},{}],17:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.replicateExistingDocuments=x,r.setIndexes=O,r.streamChangedDocuments=j,r.applyChangedDocumentToPouch=S,r.spawnInMemory=k,r.default=r.overwritable=r.prototypes=r.rxdb=r.InMemoryRxCollection=void 0;var i=n(e("@babel/runtime/helpers/assertThisInitialized")),s=n(e("@babel/runtime/helpers/inheritsLoose")),u=e("rxjs"),a=e("rxjs/operators"),o=e("../rx-collection"),c=e("../util"),l=n(e("../core")),f=n(e("../crypter")),p=e("../change-event-buffer"),h=e("../rx-schema"),d=e("../pouch-db"),b=e("../rx-error"),y=n(e("../plugins/watch-for-changes"));l.default.plugin(y.default);var v=new WeakMap,_=new WeakMap,m={new_edits:!0},g={new_edits:!1},w=function(o){function e(e){var n,t=1=o.limit,c=o.limit&&t.length>=o.limit;v&&(console.log("QueryChangeDetector.handleSingleChange()"),_(this,"start",e.data.v,"handleSingleChange()"),console.log("changeEvent.data:"),console.dir(e.data),console.log("wasDocInResults: "+s),console.log("doesMatchNow: "+u),console.log("isFilled: "+a),console.log("options:"+JSON.stringify(o)));var l=null,f=null,p=null;if("REMOVE"===e.data.op){if(!s&&!u)return _(this,"R1",i),!1;if(o.skip&&u&&(null===f&&(f=g(r,i,n[0])),f)&&!a)return _(this,"R2",i),n.shift(),n;if(u&&s&&!a)return _(this,"R3",i),n=(0,y.removeOneFromArrayIfMatches)(n,function(e){return e[r.primaryKey]===i[r.primaryKey]});if(1===o.limit&&!u&&s)return _(this,"R3.05",i),!0;if(u&&s&&!o.limit&&!o.skip)return _(this,"R3.1",i),n=(0,y.removeOneFromArrayIfMatches)(n,function(e){return e[r.primaryKey]===i[r.primaryKey]});if(u&&o.limit&&(null===l&&(l=g(r,n[n.length-1],i)),l))return _(this,"R4",i),!1}else{if(!o.skip&&!s&&!u)return _(this,"U1",i),!1;if(!o.skip&&!o.limit&&s&&u){if(function(){if(null===p){var e=(0,y.removeOneFromArrayIfMatches)(t,function(e){return e[r.primaryKey]===i[r.primaryKey]});p=w(r,e,i)}return w}())return _(this,"U2 - resort",i),n=(0,y.removeOneFromArrayIfMatches)(n,function(e){return e[r.primaryKey]===i[r.primaryKey]}),n=(0,b.pushAtSortPosition)(n,i,m(this));_(this,"U2 - no-resort",i);var h=n.find(function(e){return e[r.primaryKey]===i[r.primaryKey]}),d=n.indexOf(h);return n[d]=i,n}if(!o.skip&&!c&&!s&&u)return _(this,"U3",i),n=(0,b.pushAtSortPosition)(n,i,m(this))}return _(this,"NO_MATCH",i),!0},e}();function _(e,t,r,n){var o=2=e.collection._changeEventBuffer.counter}(t))return!1;var r=!1,e=!1;-1===t._latestChangeEvent&&(e=!0);if(!e){var n=t.collection._changeEventBuffer.getFrom(t._latestChangeEvent+1);if(null===n)e=!0;else{t._latestChangeEvent=t.collection._changeEventBuffer.counter;var o=t.collection._changeEventBuffer.reduceByLastOfDoc(n),i=t._queryChangeDetector.runChangeDetection(o);!Array.isArray(i)&&i&&(e=!0),Array.isArray(i)&&!(0,u.default)(i,t._resultsData)&&(r=!0,t._setResultData(i))}}if(e){var s=t.collection._changeEventBuffer.counter;return t._execOverDatabase().then(function(e){return t._latestChangeEvent=s,(0,u.default)(e,t._resultsData)||(r=!0,t._setResultData(e)),r})}return r}(e)}).then(function(e){return new Promise(function(e){return setTimeout(e,0)}).then(function(){return e})}),e._ensureEqualQueue}},{"./hooks":7,"./mquery/mquery":9,"./query-change-detector":29,"./rx-document-prototype-merge":34,"./rx-error":36,"./util":52,"@babel/runtime/helpers/createClass":57,"@babel/runtime/helpers/interopRequireDefault":60,"deep-equal":403,"pouchdb-selector-core":492,rxjs:502,"rxjs/operators":700}],38:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.getEncryptedPaths=p,r.hasCrypt=h,r.getIndexes=d,r.getPrimary=b,r.getPreviousVersions=function(e){var t=e.version?e.version:0,r=0;return new Array(t).fill(0).map(function(){return r++})},r.getFinalFields=y,r.normalize=v,r.createRxSchema=function(e){1>>0],t))<0)s=n+1;else{if(!(0>16&255,s[u++]=t>>8&255,s[u++]=255&t;2===i&&(t=c[e.charCodeAt(r)]<<2|c[e.charCodeAt(r+1)]>>4,s[u++]=255&t);1===i&&(t=c[e.charCodeAt(r)]<<10|c[e.charCodeAt(r+1)]<<4|c[e.charCodeAt(r+2)]>>2,s[u++]=t>>8&255,s[u++]=255&t);return s},r.fromByteArray=function(e){for(var t,r=e.length,n=r%3,o=[],i=0,s=r-n;i>2]+u[t<<4&63]+"==")):2==n&&(t=(e[r-2]<<8)+e[r-1],o.push(u[t>>10]+u[t>>4&63]+u[t<<2&63]+"="));return o.join("")};for(var u=[],c=[],l="undefined"!=typeof Uint8Array?Uint8Array:Array,n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0,i=n.length;o>18&63]+u[o>>12&63]+u[o>>6&63]+u[63&o]);return i.join("")}c["-".charCodeAt(0)]=62,c["_".charCodeAt(0)]=63},{}],69:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.clearNodeFolder=function(e){e=(0,u.fillOptionsWithDefaults)(e);var t=(0,s.chooseMethod)(e);return"node"===t.type?t.clearNodeFolder().then(function(){return!0}):Promise.resolve(!1)},r.enforceOptions=function(e){o=e},r.BroadcastChannel=void 0;function n(e,t){var r,n;this.name=e,o&&(t=o),this.options=(0,u.fillOptionsWithDefaults)(t),this.method=(0,s.chooseMethod)(this.options),this._iL=!1,this._onML=null,this._addEL={message:[],internal:[]},this._befC=[],this._prepP=null,n=(r=this).method.create(r.name,r.options),(0,i.isPromise)(n)?(r._prepP=n).then(function(e){r._state=e}):r._state=n}var o,i=e("./util.js"),s=e("./method-chooser.js"),u=e("./options.js");function a(e,t,r){var n={time:e.method.microSeconds(),type:t,data:r};return(e._prepP?e._prepP:Promise.resolve()).then(function(){return e.method.postMessage(e._state,n)})}function c(e){return 0=e.time&&e.fn(t.data)})},r=e.method.microSeconds();e._prepP?e._prepP.then(function(){e._iL=!0,e.method.onMessage(e._state,t,r)}):(e._iL=!0,e.method.onMessage(e._state,t,r))}}(e)}function f(e,t,r){e._addEL[t]=e._addEL[t].filter(function(e){return e!==r}),function(e){if(e._iL&&!c(e)){e._iL=!1;var t=e.method.microSeconds();e.method.onMessage(e._state,null,t)}}(e)}(r.BroadcastChannel=n)._pubkey=!0,n.prototype={postMessage:function(e){if(this.closed)throw new Error("BroadcastChannel.postMessage(): Cannot post message after channel has closed");return a(this,"message",e)},postInternal:function(e){return a(this,"internal",e)},set onmessage(e){var t={time:this.method.microSeconds(),fn:e};f(this,"message",this._onML),e&&"function"==typeof e?(this._onML=t,l(this,"message",t)):this._onML=null},addEventListener:function(e,t){var r=this.method.microSeconds();l(this,e,{time:r,fn:t})},removeEventListener:function(e,t){var r=this._addEL[e].find(function(e){return e.fn===t});f(this,e,r)},close:function(){var e=this;if(!this.closed){this.closed=!0;var t=this._prepP?this._prepP:Promise.resolve();return this._onML=null,this._addEL.message=[],t.then(function(){return Promise.all(e._befC.map(function(e){return e()}))}).then(function(){return e.method.close(e._state)})}},get type(){return this.method.type}}},{"./method-chooser.js":73,"./options.js":79,"./util.js":80}],70:[function(e,t,r){"use strict";var n=e("./index.js");t.exports={BroadcastChannel:n.BroadcastChannel,createLeaderElection:n.createLeaderElection,clearNodeFolder:n.clearNodeFolder,enforceOptions:n.enforceOptions}},{"./index.js":71}],71:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"BroadcastChannel",{enumerable:!0,get:function(){return n.BroadcastChannel}}),Object.defineProperty(r,"clearNodeFolder",{enumerable:!0,get:function(){return n.clearNodeFolder}}),Object.defineProperty(r,"enforceOptions",{enumerable:!0,get:function(){return n.enforceOptions}}),Object.defineProperty(r,"createLeaderElection",{enumerable:!0,get:function(){return o.createLeaderElection}});var n=e("./broadcast-channel"),o=e("./leader-election")},{"./broadcast-channel":69,"./leader-election":72}],72:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.createLeaderElection=function(e,t){if(e._leaderElector)throw new Error("BroadcastChannel already has a leader-elector");t=function(e,t){e=e||{};(e=JSON.parse(JSON.stringify(e))).fallbackInterval||(e.fallbackInterval=3e3);e.responseTime||(e.responseTime=t.method.averageResponseTime(t.options));return e}(t,e);var r=new o(e,t);return e._befC.push(function(){return r.die()}),e._leaderElector=r};var i=e("./util.js"),s=n(e("unload")),o=function(e,t){this._channel=e,this._options=t,this.isLeader=!1,this.isDead=!1,this.token=(0,i.randomToken)(),this._isApl=!1,this._reApply=!1,this._unl=[],this._lstns=[],this._invs=[]};function u(e,t){var r={context:"leader",action:t,token:e.token};return e._channel.postInternal(r)}o.prototype={applyOnce:function(){var t=this;if(this.isLeader)return Promise.resolve(!1);if(this.isDead)return Promise.resolve(!1);if(this._isApl)return this._reApply=!0,Promise.resolve(!1);function r(e){"leader"===e.context&&e.token!=t.token&&(o.push(e),"apply"===e.action&&e.token>t.token&&(n=!0),"tell"===e.action&&(n=!0))}var n=!(this._isApl=!0),o=[];return this._channel.addEventListener("internal",r),u(this,"apply").then(function(){return(0,i.sleep)(t._options.responseTime)}).then(function(){return n?Promise.reject(new Error):u(t,"apply")}).then(function(){return(0,i.sleep)(t._options.responseTime)}).then(function(){return n?Promise.reject(new Error):u(t)}).then(function(){return function(t){t.isLeader=!0;var e=s.default.add(function(){return t.die()});t._unl.push(e);function r(e){"leader"===e.context&&"apply"===e.action&&u(t,"tell")}return t._channel.addEventListener("internal",r),t._lstns.push(r),u(t,"tell")}(t)}).then(function(){return!0}).catch(function(){return!1}).then(function(e){return t._channel.removeEventListener("internal",r),t._isApl=!1,!e&&t._reApply?(t._reApply=!1,t.applyOnce()):e})},awaitLeadership:function(){var i;return this._aLP||(this._aLP=(i=this).isLeader?Promise.resolve():new Promise(function(e){function t(){r||(r=!0,clearInterval(n),i._channel.removeEventListener("internal",o),e(!0))}var r=!1;i.applyOnce().then(function(){i.isLeader&&t()});var n=setInterval(function(){i.applyOnce().then(function(){i.isLeader&&t()})},i._options.fallbackInterval);i._invs.push(n);var o=function(e){"leader"===e.context&&"death"===e.action&&i.applyOnce().then(function(){i.isLeader&&t()})};i._channel.addEventListener("internal",o),i._lstns.push(o)})),this._aLP},die:function(){var t=this;if(!this.isDead)return this.isDead=!0,this._lstns.forEach(function(e){return t._channel.removeEventListener("internal",e)}),this._invs.forEach(function(e){return clearInterval(e)}),this._unl.forEach(function(e){e.remove()}),u(this,"death")}}},{"./util.js":80,"@babel/runtime/helpers/interopRequireDefault":60,unload:704}],73:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.chooseMethod=function(t){var e=[].concat(t.methods,c).filter(Boolean);if(t.type){if("simulate"===t.type)return u.default;var r=e.find(function(e){return e.type===t.type});if(r)return r;throw new Error("method-type "+t.type+" not found")}t.webWorkerSupport||a.isNode||(e=e.filter(function(e){return"idb"!==e.type}));var n=e.find(function(e){return e.canBeUsed()});{if(n)return n;throw new Error("No useable methode found:"+JSON.stringify(c.map(function(e){return e.type})))}};var o=n(e("./methods/native.js")),i=n(e("./methods/indexed-db.js")),s=n(e("./methods/localstorage.js")),u=n(e("./methods/simulate.js")),a=e("./util"),c=[o.default,i.default,s.default];if(a.isNode){var l=e("../../src/methods/node.js");"function"==typeof l.canBeUsed&&c.push(l)}},{"./methods/indexed-db.js":74,"./methods/localstorage.js":75,"./methods/native.js":76,"./methods/simulate.js":77,"./util":80,"@babel/runtime/helpers/interopRequireDefault":60}],74:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.getIdb=l,r.createDatabase=f,r.writeMessage=p,r.getAllMessages=function(e){var t=e.transaction(c).objectStore(c),n=[];return new Promise(function(r){t.openCursor().onsuccess=function(e){var t=e.target.result;t?(n.push(t.value),t.continue()):r(n)}})},r.getMessagesHigherThen=h,r.removeMessageById=d,r.getOldMessages=b,r.cleanOldMessages=y,r.create=v,r.close=m,r.postMessage=g,r.onMessage=w,r.canBeUsed=x,r.averageResponseTime=O,r.default=r.type=r.microSeconds=void 0;var o=e("../util.js"),i=n(e("../oblivious-set")),s=e("../options"),u=o.microSeconds;r.microSeconds=u;var a="pubkey.broadcast-channel-0-",c="messages";function l(){return"undefined"!=typeof indexedDB?indexedDB:void 0!==window.mozIndexedDB?window.mozIndexedDB:void 0!==window.webkitIndexedDB?window.webkitIndexedDB:void 0!==window.msIndexedDB&&window.msIndexedDB}function f(e){var t=l(),r=a+e,n=t.open(r,1);return n.onupgradeneeded=function(e){e.target.result.createObjectStore(c,{keyPath:"id",autoIncrement:!0})},new Promise(function(e,t){n.onerror=function(e){return t(e)},n.onsuccess=function(){e(n.result)}})}function p(e,t,r){var n={uuid:t,time:(new Date).getTime(),data:r},o=e.transaction([c],"readwrite");return new Promise(function(e,t){o.oncomplete=function(){return e()},o.onerror=function(e){return t(e)},o.objectStore(c).add(n)})}function h(e,t){var n=e.transaction(c).objectStore(c),o=[],i=IDBKeyRange.bound(t+1,1/0);return new Promise(function(r){n.openCursor(i).onsuccess=function(e){var t=e.target.result;t?(o.push(t.value),t.continue()):r(o)}})}function d(e,t){var r=e.transaction([c],"readwrite").objectStore(c).delete(t);return new Promise(function(e){r.onsuccess=function(){return e()}})}function b(e,t){var o=(new Date).getTime()-t,r=e.transaction(c).objectStore(c),i=[];return new Promise(function(n){r.openCursor().onsuccess=function(e){var t=e.target.result;if(t){var r=t.value;if(!(r.timen.lastCursorId&&(n.lastCursorId=e.id),e}).filter(function(e){return r=n,!((t=e).uuid===r.uuid||r.eMIs.has(t.id)||t.data.time>>1;case"base64":return M(e).length;default:if(o)return n?-1:R(e).length;t=(""+t).toLowerCase(),o=!0}}function h(e,t,r){var n=e[t];e[t]=e[r],e[r]=n}function d(e,t,r,n,o){if(0===e.length)return-1;if("string"==typeof r?(n=r,r=0):2147483647=e.length){if(o)return-1;r=e.length-1}else if(r<0){if(!o)return-1;r=0}if("string"==typeof t&&(t=f.from(t,n)),f.isBuffer(t))return 0===t.length?-1:b(e,t,r,n,o);if("number"==typeof t)return t&=255,"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(e,t,r):Uint8Array.prototype.lastIndexOf.call(e,t,r):b(e,[t],r,n,o);throw new TypeError("val must be string, number or Buffer")}function b(e,t,r,n,o){var i,s=1,u=e.length,a=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(e.length<2||t.length<2)return-1;u/=s=2,a/=2,r/=2}function c(e,t){return 1===s?e[t]:e.readUInt16BE(t*s)}if(o){var l=-1;for(i=r;i>8,o=r%256,i.push(o),i.push(n);return i}(t,e.length-r),e,r,n)}function m(e,t,r){return 0===t&&r===e.length?n.fromByteArray(e):n.fromByteArray(e.slice(t,r))}function g(e,t,r){r=Math.min(e.length,r);for(var n=[],o=t;o>>10&1023|55296),l=56320|1023&l),n.push(l),o+=f}return function(e){var t=e.length;if(t<=w)return String.fromCharCode.apply(String,e);var r="",n=0;for(;nthis.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(t>>>=0))return"";for(e=e||"utf8";;)switch(e){case"hex":return j(this,t,r);case"utf8":case"utf-8":return g(this,t,r);case"ascii":return x(this,t,r);case"latin1":case"binary":return O(this,t,r);case"base64":return m(this,t,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return S(this,t,r);default:if(n)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),n=!0}}.apply(this,arguments)},f.prototype.equals=function(e){if(!f.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e||0===f.compare(this,e)},f.prototype.inspect=function(){var e="",t=L.INSPECT_MAX_BYTES;return e=this.toString("hex",0,t).replace(/(.{2})/g,"$1 ").trim(),this.length>t&&(e+=" ... "),""},e&&(f.prototype[e]=f.prototype.inspect),f.prototype.compare=function(e,t,r,n,o){if(D(e,Uint8Array)&&(e=f.from(e,e.offset,e.byteLength)),!f.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===r&&(r=e?e.length:0),void 0===n&&(n=0),void 0===o&&(o=this.length),t<0||r>e.length||n<0||o>this.length)throw new RangeError("out of range index");if(o<=n&&r<=t)return 0;if(o<=n)return-1;if(r<=t)return 1;if(this===e)return 0;for(var i=(o>>>=0)-(n>>>=0),s=(r>>>=0)-(t>>>=0),u=Math.min(i,s),a=this.slice(n,o),c=e.slice(t,r),l=0;l>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0)}var o=this.length-t;if((void 0===r||othis.length)throw new RangeError("Attempt to write outside buffer bounds");n=n||"utf8";for(var i,s,u,a,c,l,f=!1;;)switch(n){case"hex":return y(this,e,t,r);case"utf8":case"utf-8":return c=t,l=r,I(R(e,(a=this).length-c),a,c,l);case"ascii":return v(this,e,t,r);case"latin1":case"binary":return v(this,e,t,r);case"base64":return i=this,s=t,u=r,I(M(e),i,s,u);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return _(this,e,t,r);default:if(f)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),f=!0}},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var w=4096;function x(e,t,r){var n="";r=Math.min(e.length,r);for(var o=t;oe.length)throw new RangeError("Index out of range")}function P(e,t,r,n){if(r+n>e.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function A(e,t,r,n,o){return t=+t,r>>>=0,o||P(e,0,r,4),i.write(e,t,r,n,23,4),r+4}function C(e,t,r,n,o){return t=+t,r>>>=0,o||P(e,0,r,8),i.write(e,t,r,n,52,8),r+8}f.prototype.slice=function(e,t){var r=this.length;(e=~~e)<0?(e+=r)<0&&(e=0):r>>=0,t>>>=0,r||E(e,t,this.length);for(var n=this[e],o=1,i=0;++i>>=0,t>>>=0,r||E(e,t,this.length);for(var n=this[e+--t],o=1;0>>=0,t||E(e,1,this.length),this[e]},f.prototype.readUInt16LE=function(e,t){return e>>>=0,t||E(e,2,this.length),this[e]|this[e+1]<<8},f.prototype.readUInt16BE=function(e,t){return e>>>=0,t||E(e,2,this.length),this[e]<<8|this[e+1]},f.prototype.readUInt32LE=function(e,t){return e>>>=0,t||E(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},f.prototype.readUInt32BE=function(e,t){return e>>>=0,t||E(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},f.prototype.readIntLE=function(e,t,r){e>>>=0,t>>>=0,r||E(e,t,this.length);for(var n=this[e],o=1,i=0;++i>>=0,t>>>=0,r||E(e,t,this.length);for(var n=t,o=1,i=this[e+--n];0>>=0,t||E(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},f.prototype.readInt16LE=function(e,t){e>>>=0,t||E(e,2,this.length);var r=this[e]|this[e+1]<<8;return 32768&r?4294901760|r:r},f.prototype.readInt16BE=function(e,t){e>>>=0,t||E(e,2,this.length);var r=this[e+1]|this[e]<<8;return 32768&r?4294901760|r:r},f.prototype.readInt32LE=function(e,t){return e>>>=0,t||E(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},f.prototype.readInt32BE=function(e,t){return e>>>=0,t||E(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},f.prototype.readFloatLE=function(e,t){return e>>>=0,t||E(e,4,this.length),i.read(this,e,!0,23,4)},f.prototype.readFloatBE=function(e,t){return e>>>=0,t||E(e,4,this.length),i.read(this,e,!1,23,4)},f.prototype.readDoubleLE=function(e,t){return e>>>=0,t||E(e,8,this.length),i.read(this,e,!0,52,8)},f.prototype.readDoubleBE=function(e,t){return e>>>=0,t||E(e,8,this.length),i.read(this,e,!1,52,8)},f.prototype.writeUIntLE=function(e,t,r,n){e=+e,t>>>=0,r>>>=0,n||k(this,e,t,r,Math.pow(2,8*r)-1,0);var o=1,i=0;for(this[t]=255&e;++i>>=0,r>>>=0,n||k(this,e,t,r,Math.pow(2,8*r)-1,0);var o=r-1,i=1;for(this[t+o]=255&e;0<=--o&&(i*=256);)this[t+o]=e/i&255;return t+r},f.prototype.writeUInt8=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,1,255,0),this[t]=255&e,t+1},f.prototype.writeUInt16LE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},f.prototype.writeUInt16BE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},f.prototype.writeUInt32LE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},f.prototype.writeUInt32BE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},f.prototype.writeIntLE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var o=Math.pow(2,8*r-1);k(this,e,t,r,o-1,-o)}var i=0,s=1,u=0;for(this[t]=255&e;++i>0)-u&255;return t+r},f.prototype.writeIntBE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var o=Math.pow(2,8*r-1);k(this,e,t,r,o-1,-o)}var i=r-1,s=1,u=0;for(this[t+i]=255&e;0<=--i&&(s*=256);)e<0&&0===u&&0!==this[t+i+1]&&(u=1),this[t+i]=(e/s>>0)-u&255;return t+r},f.prototype.writeInt8=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},f.prototype.writeInt16LE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},f.prototype.writeInt16BE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},f.prototype.writeInt32LE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},f.prototype.writeInt32BE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},f.prototype.writeFloatLE=function(e,t,r){return A(this,e,t,!0,r)},f.prototype.writeFloatBE=function(e,t,r){return A(this,e,t,!1,r)},f.prototype.writeDoubleLE=function(e,t,r){return C(this,e,t,!0,r)},f.prototype.writeDoubleBE=function(e,t,r){return C(this,e,t,!1,r)},f.prototype.copy=function(e,t,r,n){if(!f.isBuffer(e))throw new TypeError("argument should be a Buffer");if(r=r||0,n||0===n||(n=this.length),t>=e.length&&(t=e.length),t=t||0,0=this.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),e.length-t>>=0,r=void 0===r?this.length:r>>>0,"number"==typeof(e=e||0))for(i=t;i>6|192,63&r|128)}else if(r<65536){if((t-=3)<0)break;i.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;i.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return i}function M(e){return n.toByteArray(function(e){if((e=(e=e.split("=")[0]).trim().replace(t,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function I(e,t,r,n){for(var o=0;o=t.length||o>=e.length);++o)t[o+r]=e[o];return o}function D(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}function T(e){return e!=e}var N=function(){for(var e="0123456789abcdef",t=new Array(256),r=0;r<16;++r)for(var n=16*r,o=0;o<16;++o)t[n+o]=e[r]+e[o];return t}()}).call(this,B("buffer").Buffer)},{"base64-js":68,buffer:85,ieee754:418}],86:[function(e,t,r){(function(S){var e=function(){"use strict";function m(e,t){return null!=t&&e instanceof t}var g,w,x;try{g=Map}catch(e){g=function(){}}try{w=Set}catch(e){w=function(){}}try{x=Promise}catch(e){x=function(){}}function O(e,h,t,d,b){"object"==typeof h&&(t=h.depth,d=h.prototype,b=h.includeNonEnumerable,h=h.circular);var y=[],v=[],_=void 0!==S;return void 0===h&&(h=!0),void 0===t&&(t=1/0),function o(e,i){if(null===e)return null;if(0===i)return e;var s,t;if("object"!=typeof e)return e;if(m(e,g))s=new g;else if(m(e,w))s=new w;else if(m(e,x))s=new x(function(t,r){e.then(function(e){t(o(e,i-1))},function(e){r(o(e,i-1))})});else if(O.__isArray(e))s=[];else if(O.__isRegExp(e))s=new RegExp(e.source,j(e)),e.lastIndex&&(s.lastIndex=e.lastIndex);else if(O.__isDate(e))s=new Date(e.getTime());else{if(_&&S.isBuffer(e))return s=S.allocUnsafe?S.allocUnsafe(e.length):new S(e.length),e.copy(s),s;m(e,Error)?s=Object.create(e):void 0===d?(t=Object.getPrototypeOf(e),s=Object.create(t)):(s=Object.create(d),t=d)}if(h){var r=y.indexOf(e);if(-1!=r)return v[r];y.push(e),v.push(s)}for(var n in m(e,g)&&e.forEach(function(e,t){var r=o(t,i-1),n=o(e,i-1);s.set(r,n)}),m(e,w)&&e.forEach(function(e){var t=o(e,i-1);s.add(t)}),e){var u;t&&(u=Object.getOwnPropertyDescriptor(t,n)),u&&null==u.set||(s[n]=o(e[n],i-1))}if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(n=0;ns;)i.call(e,n=o[s++])&&t.push(n);return t}},{"./_object-gops":188,"./_object-keys":191,"./_object-pie":192}],146:[function(e,t,r){var b=e("./_global"),y=e("./_core"),v=e("./_hide"),_=e("./_redefine"),m=e("./_ctx"),g="prototype",w=function(e,t,r){var n,o,i,s,u=e&w.F,a=e&w.G,c=e&w.S,l=e&w.P,f=e&w.B,p=a?b:c?b[t]||(b[t]={}):(b[t]||{})[g],h=a?y:y[t]||(y[t]={}),d=h[g]||(h[g]={});for(n in a&&(r=t),r)i=((o=!u&&p&&void 0!==p[n])?p:r)[n],s=f&&o?m(i,b):l&&"function"==typeof i?m(Function.call,i):i,p&&_(p,n,i,e&w.U),h[n]!=i&&v(h,n,s),l&&d[n]!=i&&(d[n]=i)};b.core=y,w.F=1,w.G=2,w.S=4,w.P=8,w.B=16,w.W=32,w.U=64,w.R=128,t.exports=w},{"./_core":136,"./_ctx":138,"./_global":154,"./_hide":156,"./_redefine":202}],147:[function(e,t,r){var n=e("./_wks")("match");t.exports=function(t){var r=/./;try{"/./"[t](r)}catch(e){try{return r[n]=!1,!"/./"[t](r)}catch(e){}}return!0}},{"./_wks":236}],148:[function(e,t,r){arguments[4][107][0].apply(r,arguments)},{dup:107}],149:[function(e,t,r){"use strict";e("./es6.regexp.exec");var l=e("./_redefine"),f=e("./_hide"),p=e("./_fails"),h=e("./_defined"),d=e("./_wks"),b=e("./_regexp-exec"),y=d("species"),v=!p(function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$")}),_=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var r="ab".split(e);return 2===r.length&&"a"===r[0]&&"b"===r[1]}();t.exports=function(r,e,t){var n=d(r),i=!p(function(){var e={};return e[n]=function(){return 7},7!=""[r](e)}),o=i?!p(function(){var e=!1,t=/a/;return t.exec=function(){return e=!0,null},"split"===r&&(t.constructor={},t.constructor[y]=function(){return t}),t[n](""),!e}):void 0;if(!i||!o||"replace"===r&&!v||"split"===r&&!_){var s=/./[n],u=t(h,n,""[r],function(e,t,r,n,o){return t.exec===b?i&&!o?{done:!0,value:s.call(t,r,n)}:{done:!0,value:e.call(r,t,n)}:{done:!1}}),a=u[0],c=u[1];l(String.prototype,r,a),f(RegExp.prototype,n,2==e?function(e,t){return c.call(e,this,t)}:function(e){return c.call(e,this)})}}},{"./_defined":141,"./_fails":148,"./_hide":156,"./_redefine":202,"./_regexp-exec":204,"./_wks":236,"./es6.regexp.exec":332}],150:[function(e,t,r){"use strict";var n=e("./_an-object");t.exports=function(){var e=n(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},{"./_an-object":122}],151:[function(e,t,r){"use strict";var d=e("./_is-array"),b=e("./_is-object"),y=e("./_to-length"),v=e("./_ctx"),_=e("./_wks")("isConcatSpreadable");t.exports=function e(t,r,n,o,i,s,u,a){for(var c,l,f=i,p=0,h=!!u&&v(u,a,3);pdocument.F=Object<\/script>"),e.close(),l=e.F;r--;)delete l[c][u[r]];return l()};e.exports=Object.create||function(e,t){var r;return null!==e?(o[c]=i(e),r=new o,o[c]=null,r[a]=e):r=l(),void 0===t?r:s(r,t)}},{"./_an-object":122,"./_dom-create":143,"./_enum-bug-keys":144,"./_html":157,"./_object-dps":184,"./_shared-key":209}],183:[function(e,t,r){arguments[4][113][0].apply(r,arguments)},{"./_an-object":122,"./_descriptors":142,"./_ie8-dom-define":158,"./_to-primitive":227,dup:113}],184:[function(e,t,r){var s=e("./_object-dp"),u=e("./_an-object"),a=e("./_object-keys");t.exports=e("./_descriptors")?Object.defineProperties:function(e,t){u(e);for(var r,n=a(t),o=n.length,i=0;io;)s(n,r=t[o++])&&(~a(i,r)||i.push(r));return i}},{"./_array-includes":125,"./_has":155,"./_shared-key":209,"./_to-iobject":224}],191:[function(e,t,r){var n=e("./_object-keys-internal"),o=e("./_enum-bug-keys");t.exports=Object.keys||function(e){return n(e,o)}},{"./_enum-bug-keys":144,"./_object-keys-internal":190}],192:[function(e,t,r){r.f={}.propertyIsEnumerable},{}],193:[function(e,t,r){var o=e("./_export"),i=e("./_core"),s=e("./_fails");t.exports=function(e,t){var r=(i.Object||{})[e]||Object[e],n={};n[e]=t(r),o(o.S+o.F*s(function(){r(1)}),"Object",n)}},{"./_core":136,"./_export":146,"./_fails":148}],194:[function(e,t,r){var a=e("./_descriptors"),c=e("./_object-keys"),l=e("./_to-iobject"),f=e("./_object-pie").f;t.exports=function(u){return function(e){for(var t,r=l(e),n=c(r),o=n.length,i=0,s=[];i>>0||(s.test(r)?16:10))}:n},{"./_global":154,"./_string-trim":218,"./_string-ws":219}],198:[function(e,t,r){t.exports=function(e){try{return{e:!1,v:e()}}catch(e){return{e:!0,v:e}}}},{}],199:[function(e,t,r){var n=e("./_an-object"),o=e("./_is-object"),i=e("./_new-promise-capability");t.exports=function(e,t){if(n(e),o(t)&&t.constructor===e)return t;var r=i.f(e);return(0,r.resolve)(t),r.promise}},{"./_an-object":122,"./_is-object":165,"./_new-promise-capability":180}],200:[function(e,t,r){arguments[4][114][0].apply(r,arguments)},{dup:114}],201:[function(e,t,r){var o=e("./_redefine");t.exports=function(e,t,r){for(var n in t)o(e,n,t[n],r);return e}},{"./_redefine":202}],202:[function(e,t,r){var i=e("./_global"),s=e("./_hide"),u=e("./_has"),a=e("./_uid")("src"),n=e("./_function-to-string"),c=(""+n).split("toString");e("./_core").inspectSource=function(e){return n.call(e)},(t.exports=function(e,t,r,n){var o="function"==typeof r;o&&(u(r,"name")||s(r,"name",t)),e[t]!==r&&(o&&(u(r,a)||s(r,a,e[t]?""+e[t]:c.join(String(t)))),e===i?e[t]=r:n?e[t]?e[t]=r:s(e,t,r):(delete e[t],s(e,t,r)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[a]||n.call(this)})},{"./_core":136,"./_function-to-string":153,"./_global":154,"./_has":155,"./_hide":156,"./_uid":231}],203:[function(e,t,r){"use strict";var o=e("./_classof"),i=RegExp.prototype.exec;t.exports=function(e,t){var r=e.exec;if("function"==typeof r){var n=r.call(e,t);if("object"!=typeof n)throw new TypeError("RegExp exec method returned something other than an Object or null");return n}if("RegExp"!==o(e))throw new TypeError("RegExp#exec called on incompatible receiver");return i.call(e,t)}},{"./_classof":131}],204:[function(e,t,r){"use strict";var n,o,i=e("./_flags"),s=RegExp.prototype.exec,u=String.prototype.replace,a=s,c="lastIndex",l=(n=/a/,o=/b*/g,s.call(n,"a"),s.call(o,"a"),0!==n[c]||0!==o[c]),f=void 0!==/()??/.exec("")[1];(l||f)&&(a=function(e){var t,r,n,o;return f&&(r=new RegExp("^"+this.source+"$(?!\\s)",i.call(this))),l&&(t=this[c]),n=s.call(this,e),l&&n&&(this[c]=this.global?n.index+n[0].length:t),f&&n&&1"+o+""}var o=e("./_export"),i=e("./_fails"),s=e("./_defined"),u=/"/g;t.exports=function(t,e){var r={};r[t]=e(n),o(o.P+o.F*i(function(){var e=""[t]('"');return e!==e.toLowerCase()||3a&&(c=c.slice(0,a)),n?c+o:o+c}},{"./_defined":141,"./_string-repeat":217,"./_to-length":225}],217:[function(e,t,r){"use strict";var o=e("./_to-integer"),i=e("./_defined");t.exports=function(e){var t=String(i(this)),r="",n=o(e);if(n<0||n==1/0)throw RangeError("Count can't be negative");for(;0>>=1)&&(t+=t))1&n&&(r+=t);return r}},{"./_defined":141,"./_to-integer":223}],218:[function(e,t,r){function n(e,t,r){var n={},o=u(function(){return!!a[e]()||"​…"!="​…"[e]()}),i=n[e]=o?t(f):a[e];r&&(n[r]=i),s(s.P+s.F*o,"String",n)}var s=e("./_export"),o=e("./_defined"),u=e("./_fails"),a=e("./_string-ws"),i="["+a+"]",c=RegExp("^"+i+i+"*"),l=RegExp(i+i+"*$"),f=n.trim=function(e,t){return e=String(o(e)),1&t&&(e=e.replace(c,"")),2&t&&(e=e.replace(l,"")),e};t.exports=n},{"./_defined":141,"./_export":146,"./_fails":148,"./_string-ws":219}],219:[function(e,t,r){t.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},{}],220:[function(e,t,r){function n(){var e=+this;if(m.hasOwnProperty(e)){var t=m[e];delete m[e],t()}}function o(e){n.call(e.data)}var i,s,u,a=e("./_ctx"),c=e("./_invoke"),l=e("./_html"),f=e("./_dom-create"),p=e("./_global"),h=p.process,d=p.setImmediate,b=p.clearImmediate,y=p.MessageChannel,v=p.Dispatch,_=0,m={},g="onreadystatechange";d&&b||(d=function(e){for(var t=[],r=1;r>1,l=23===t?A(2,-24)-A(2,-77):0,f=0,p=e<0||0===e&&1/e<0?1:0;for((e=P(e))!=e||e===E?(o=e!=e?1:0,n=a):(n=C(R(e)/M),e*(i=A(2,-n))<1&&(n--,i*=2),2<=(e+=1<=n+c?l/i:l*A(2,1-c))*i&&(n++,i/=2),a<=n+c?(o=0,n=a):1<=n+c?(o=(e*i-1)*A(2,t),n+=c):(o=e*A(2,c-1)*A(2,t),n=0));8<=t;s[f++]=255&o,o/=256,t-=8);for(n=n<>1,u=o-7,a=r-1,c=e[a--],l=127&c;for(c>>=7;0>=-u,u+=t;0>8&255]}function V(e){return[255&e,e>>8&255,e>>16&255,e>>24&255]}function z(e){return L(e,52,8)}function W(e){return L(e,23,4)}function J(e,t,r){b(e[g],t,{get:function(){return this[r]}})}function H(e,t,r,n){var o=h(+r);if(o+t>e[N])throw S(w);var i=e[T]._b,s=o+e[B],u=i.slice(s,s+t);return n?u:u.reverse()}function Q(e,t,r,n,o,i){var s=h(+r);if(s+t>e[N])throw S(w);for(var u=e[T]._b,a=s+e[B],c=n(+o),l=0;lX;)(K=Y[X++])in x||u(x,K,k[K]);i||(G.constructor=x)}var Z=new O(new x(2)),ee=O[g].setInt8;Z.setInt8(0,2147483648),Z.setInt8(1,2147483649),!Z.getInt8(0)&&Z.getInt8(1)||a(O[g],{setInt8:function(e,t){ee.call(this,e,t<<24>>24)},setUint8:function(e,t){ee.call(this,e,t<<24>>24)}},!0)}else x=function(e){l(this,x,_);var t=h(e);this._b=y.call(new Array(t),0),this[N]=t},O=function(e,t,r){l(this,O,m),l(e,x,m);var n=e[N],o=f(t);if(o<0||n>24},getUint8:function(e){return H(this,1,e)[0]},getInt16:function(e,t){var r=H(this,2,e,t);return(r[1]<<8|r[0])<<16>>16},getUint16:function(e,t){var r=H(this,2,e,t);return r[1]<<8|r[0]},getInt32:function(e,t){return F(H(this,4,e,t))},getUint32:function(e,t){return F(H(this,4,e,t))>>>0},getFloat32:function(e,t){return q(H(this,4,e,t),23,4)},getFloat64:function(e,t){return q(H(this,8,e,t),52,8)},setInt8:function(e,t){Q(this,1,e,$,t)},setUint8:function(e,t){Q(this,1,e,$,t)},setInt16:function(e,t,r){Q(this,2,e,U,t,r)},setUint16:function(e,t,r){Q(this,2,e,U,t,r)},setInt32:function(e,t,r){Q(this,4,e,V,t,r)},setUint32:function(e,t,r){Q(this,4,e,V,t,r)},setFloat32:function(e,t,r){Q(this,4,e,W,t,r)},setFloat64:function(e,t,r){Q(this,8,e,z,t,r)}});v(x,_),v(O,m),u(O[g],s.VIEW,!0),r[_]=x,r[m]=O},{"./_an-instance":121,"./_array-fill":124,"./_descriptors":142,"./_fails":148,"./_global":154,"./_hide":156,"./_library":173,"./_object-dp":183,"./_object-gopn":187,"./_redefine-all":201,"./_set-to-string-tag":208,"./_to-index":222,"./_to-integer":223,"./_to-length":225,"./_typed":230}],230:[function(e,t,r){for(var n,o=e("./_global"),i=e("./_hide"),s=e("./_uid"),u=s("typed_array"),a=s("view"),c=!(!o.ArrayBuffer||!o.DataView),l=c,f=0,p="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");f<9;)(n=o[p[f++]])?(i(n.prototype,u,!0),i(n.prototype,a,!0)):l=!1;t.exports={ABV:c,CONSTR:l,TYPED:u,VIEW:a}},{"./_global":154,"./_hide":156,"./_uid":231}],231:[function(e,t,r){var n=0,o=Math.random();t.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+o).toString(36))}},{}],232:[function(e,t,r){var n=e("./_global").navigator;t.exports=n&&n.userAgent||""},{"./_global":154}],233:[function(e,t,r){var n=e("./_is-object");t.exports=function(e,t){if(!n(e)||e._t!==t)throw TypeError("Incompatible receiver, "+t+" required!");return e}},{"./_is-object":165}],234:[function(e,t,r){var n=e("./_global"),o=e("./_core"),i=e("./_library"),s=e("./_wks-ext"),u=e("./_object-dp").f;t.exports=function(e){var t=o.Symbol||(o.Symbol=i?{}:n.Symbol||{});"_"==e.charAt(0)||e in t||u(t,e,{value:s.f(e)})}},{"./_core":136,"./_global":154,"./_library":173,"./_object-dp":183,"./_wks-ext":235}],235:[function(e,t,r){r.f=e("./_wks")},{"./_wks":236}],236:[function(e,t,r){var n=e("./_shared")("wks"),o=e("./_uid"),i=e("./_global").Symbol,s="function"==typeof i;(t.exports=function(e){return n[e]||(n[e]=s&&i[e]||(s?i:o)("Symbol."+e))}).store=n},{"./_global":154,"./_shared":210,"./_uid":231}],237:[function(e,t,r){var n=e("./_classof"),o=e("./_wks")("iterator"),i=e("./_iterators");t.exports=e("./_core").getIteratorMethod=function(e){if(null!=e)return e[o]||e["@@iterator"]||i[n(e)]}},{"./_classof":131,"./_core":136,"./_iterators":172,"./_wks":236}],238:[function(e,t,r){var n=e("./_export");n(n.P,"Array",{copyWithin:e("./_array-copy-within")}),e("./_add-to-unscopables")("copyWithin")},{"./_add-to-unscopables":119,"./_array-copy-within":123,"./_export":146}],239:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_array-methods")(4);n(n.P+n.F*!e("./_strict-method")([].every,!0),"Array",{every:function(e,t){return o(this,e,t)}})},{"./_array-methods":126,"./_export":146,"./_strict-method":212}],240:[function(e,t,r){var n=e("./_export");n(n.P,"Array",{fill:e("./_array-fill")}),e("./_add-to-unscopables")("fill")},{"./_add-to-unscopables":119,"./_array-fill":124,"./_export":146}],241:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_array-methods")(2);n(n.P+n.F*!e("./_strict-method")([].filter,!0),"Array",{filter:function(e,t){return o(this,e,t)}})},{"./_array-methods":126,"./_export":146,"./_strict-method":212}],242:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_array-methods")(6),i="findIndex",s=!0;i in[]&&Array(1)[i](function(){s=!1}),n(n.P+n.F*s,"Array",{findIndex:function(e,t){return o(this,e,1=e.length?(this._t=void 0,o(1)):o(0,"keys"==t?r:"values"==t?e[r]:[r,e[r]])},"values"),i.Arguments=i.Array,n("keys"),n("values"),n("entries")},{"./_add-to-unscopables":119,"./_iter-define":169,"./_iter-step":171,"./_iterators":172,"./_to-iobject":224}],249:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_to-iobject"),i=[].join;n(n.P+n.F*(e("./_iobject")!=Object||!e("./_strict-method")(i)),"Array",{join:function(e){return i.call(o(this),void 0===e?",":e)}})},{"./_export":146,"./_iobject":161,"./_strict-method":212,"./_to-iobject":224}],250:[function(e,t,r){"use strict";var n=e("./_export"),i=e("./_to-iobject"),s=e("./_to-integer"),u=e("./_to-length"),a=[].lastIndexOf,c=!!a&&1/[1].lastIndexOf(1,-0)<0;n(n.P+n.F*(c||!e("./_strict-method")(a)),"Array",{lastIndexOf:function(e,t){if(c)return a.apply(this,arguments)||0;var r=i(this),n=u(r.length),o=n-1;for(1>>=0)?31-Math.floor(Math.log(e+.5)*Math.LOG2E):32}})},{"./_export":146}],273:[function(e,t,r){var n=e("./_export"),o=Math.exp;n(n.S,"Math",{cosh:function(e){return(o(e=+e)+o(-e))/2}})},{"./_export":146}],274:[function(e,t,r){var n=e("./_export"),o=e("./_math-expm1");n(n.S+n.F*(o!=Math.expm1),"Math",{expm1:o})},{"./_export":146,"./_math-expm1":174}],275:[function(e,t,r){var n=e("./_export");n(n.S,"Math",{fround:e("./_math-fround")})},{"./_export":146,"./_math-fround":175}],276:[function(e,t,r){var n=e("./_export"),a=Math.abs;n(n.S,"Math",{hypot:function(e,t){for(var r,n,o=0,i=0,s=arguments.length,u=0;i>>16)*i+o*(65535&n>>>16)<<16>>>0)}})},{"./_export":146,"./_fails":148}],278:[function(e,t,r){var n=e("./_export");n(n.S,"Math",{log10:function(e){return Math.log(e)*Math.LOG10E}})},{"./_export":146}],279:[function(e,t,r){var n=e("./_export");n(n.S,"Math",{log1p:e("./_math-log1p")})},{"./_export":146,"./_math-log1p":176}],280:[function(e,t,r){var n=e("./_export");n(n.S,"Math",{log2:function(e){return Math.log(e)/Math.LN2}})},{"./_export":146}],281:[function(e,t,r){var n=e("./_export");n(n.S,"Math",{sign:e("./_math-sign")})},{"./_export":146,"./_math-sign":177}],282:[function(e,t,r){var n=e("./_export"),o=e("./_math-expm1"),i=Math.exp;n(n.S+n.F*e("./_fails")(function(){return-2e-17!=!Math.sinh(-2e-17)}),"Math",{sinh:function(e){return Math.abs(e=+e)<1?(o(e)-o(-e))/2:(i(e-1)-i(-e-1))*(Math.E/2)}})},{"./_export":146,"./_fails":148,"./_math-expm1":174}],283:[function(e,t,r){var n=e("./_export"),o=e("./_math-expm1"),i=Math.exp;n(n.S,"Math",{tanh:function(e){var t=o(e=+e),r=o(-e);return t==1/0?1:r==1/0?-1:(t-r)/(i(e)+i(-e))}})},{"./_export":146,"./_math-expm1":174}],284:[function(e,t,r){var n=e("./_export");n(n.S,"Math",{trunc:function(e){return(0x;x++)i(y,g=w[x])&&!i(b,g)&&p(b,g,f(y,g));(b.prototype=v).constructor=b,e("./_redefine")(o,d,b)}},{"./_cof":132,"./_descriptors":142,"./_fails":148,"./_global":154,"./_has":155,"./_inherit-if-required":159,"./_object-create":182,"./_object-dp":183,"./_object-gopd":185,"./_object-gopn":187,"./_redefine":202,"./_string-trim":218,"./_to-primitive":227}],286:[function(e,t,r){var n=e("./_export");n(n.S,"Number",{EPSILON:Math.pow(2,-52)})},{"./_export":146}],287:[function(e,t,r){var n=e("./_export"),o=e("./_global").isFinite;n(n.S,"Number",{isFinite:function(e){return"number"==typeof e&&o(e)}})},{"./_export":146,"./_global":154}],288:[function(e,t,r){var n=e("./_export");n(n.S,"Number",{isInteger:e("./_is-integer")})},{"./_export":146,"./_is-integer":164}],289:[function(e,t,r){var n=e("./_export");n(n.S,"Number",{isNaN:function(e){return e!=e}})},{"./_export":146}],290:[function(e,t,r){var n=e("./_export"),o=e("./_is-integer"),i=Math.abs;n(n.S,"Number",{isSafeInteger:function(e){return o(e)&&i(e)<=9007199254740991}})},{"./_export":146,"./_is-integer":164}],291:[function(e,t,r){var n=e("./_export");n(n.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},{"./_export":146}],292:[function(e,t,r){var n=e("./_export");n(n.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},{"./_export":146}],293:[function(e,t,r){var n=e("./_export"),o=e("./_parse-float");n(n.S+n.F*(Number.parseFloat!=o),"Number",{parseFloat:o})},{"./_export":146,"./_parse-float":196}],294:[function(e,t,r){var n=e("./_export"),o=e("./_parse-int");n(n.S+n.F*(Number.parseInt!=o),"Number",{parseInt:o})},{"./_export":146,"./_parse-int":197}],295:[function(e,t,r){"use strict";function c(e,t){for(var r=-1,n=t;++r<6;)n+=e*s[r],s[r]=n%1e7,n=i(n/1e7)}function l(e){for(var t=6,r=0;0<=--t;)r+=s[t],s[t]=i(r/e),r=r%e*1e7}function f(){for(var e=6,t="";0<=--e;)if(""!==t||0===e||0!==s[e]){var r=String(s[e]);t=""===t?r:t+d.call("0",7-r.length)+r}return t}var n=e("./_export"),p=e("./_to-integer"),h=e("./_a-number-value"),d=e("./_string-repeat"),o=1..toFixed,i=Math.floor,s=[0,0,0,0,0,0],b="Number.toFixed: incorrect invocation!",y=function(e,t,r){return 0===t?r:t%2==1?y(e,t-1,r*e):y(e*e,t/2,r)};n(n.P+n.F*(!!o&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!e("./_fails")(function(){o.call({})})),"Number",{toFixed:function(e){var t,r,n,o,i=h(this,b),s=p(e),u="",a="0";if(s<0||20e;)t(n[e++]);l._c=[],l._n=!1,r&&!l._h&&N(l)})}}function i(e){var t=this;t._d||(t._d=!0,(t=t._w||t)._v=e,t._s=2,t._a||(t._a=t._c.slice()),o(t,!0))}var s,u,a,c,l=r("./_library"),p=r("./_global"),h=r("./_ctx"),d=r("./_classof"),b=r("./_export"),y=r("./_is-object"),v=r("./_a-function"),_=r("./_an-instance"),m=r("./_for-of"),g=r("./_species-constructor"),w=r("./_task").set,x=r("./_microtask")(),O=r("./_new-promise-capability"),j=r("./_perform"),S=r("./_user-agent"),E=r("./_promise-resolve"),k="Promise",P=p.TypeError,A=p.process,C=A&&A.versions,R=C&&C.v8||"",M=p[k],I="process"==d(A),D=u=O.f,T=!!function(){try{var e=M.resolve(1),t=(e.constructor={})[r("./_wks")("species")]=function(e){e(n,n)};return(I||"function"==typeof PromiseRejectionEvent)&&e.then(n)instanceof t&&0!==R.indexOf("6.6")&&-1===S.indexOf("Chrome/66")}catch(e){}}(),N=function(i){w.call(p,function(){var e,t,r,n=i._v,o=B(i);if(o&&(e=j(function(){I?A.emit("unhandledRejection",n,i):(t=p.onunhandledrejection)?t({promise:i,reason:n}):(r=p.console)&&r.error&&r.error("Unhandled promise rejection",n)}),i._h=I||B(i)?2:1),i._a=void 0,o&&e.e)throw e.v})},B=function(e){return 1!==e._h&&0===(e._a||e._c).length},L=function(t){w.call(p,function(){var e;I?A.emit("rejectionHandled",t):(e=p.onrejectionhandled)&&e({promise:t,reason:t._v})})},q=function(e){var r,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===e)throw P("Promise can't be resolved itself");(r=f(e))?x(function(){var t={_w:n,_d:!1};try{r.call(e,h(q,t,1),h(i,t,1))}catch(e){i.call(t,e)}}):(n._v=e,n._s=1,o(n,!1))}catch(e){i.call({_w:n,_d:!1},e)}}};T||(M=function(e){_(this,M,k,"_h"),v(e),s.call(this);try{e(h(q,this,1),h(i,this,1))}catch(e){i.call(this,e)}},(s=function(){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=r("./_redefine-all")(M.prototype,{then:function(e,t){var r=D(g(this,M));return r.ok="function"!=typeof e||e,r.fail="function"==typeof t&&t,r.domain=I?A.domain:void 0,this._c.push(r),this._a&&this._a.push(r),this._s&&o(this,!1),r.promise},catch:function(e){return this.then(void 0,e)}}),a=function(){var e=new s;this.promise=e,this.resolve=h(q,e,1),this.reject=h(i,e,1)},O.f=D=function(e){return e===M||e===c?new a(e):u(e)}),b(b.G+b.W+b.F*!T,{Promise:M}),r("./_set-to-string-tag")(M,k),r("./_set-species")(k),c=r("./_core")[k],b(b.S+b.F*!T,k,{reject:function(e){var t=D(this);return(0,t.reject)(e),t.promise}}),b(b.S+b.F*(l||!T),k,{resolve:function(e){return E(l&&this===c?M:this,e)}}),b(b.S+b.F*!(T&&r("./_iter-detect")(function(e){M.all(e).catch(n)})),k,{all:function(e){var s=this,t=D(s),u=t.resolve,a=t.reject,r=j(function(){var n=[],o=0,i=1;m(e,!1,function(e){var t=o++,r=!1;n.push(void 0),i++,s.resolve(e).then(function(e){r||(r=!0,n[t]=e,--i||u(n))},a)}),--i||u(n)});return r.e&&a(r.v),t.promise},race:function(e){var t=this,r=D(t),n=r.reject,o=j(function(){m(e,!1,function(e){t.resolve(e).then(r.resolve,n)})});return o.e&&n(o.v),r.promise}})},{"./_a-function":117,"./_an-instance":121,"./_classof":131,"./_core":136,"./_ctx":138,"./_export":146,"./_for-of":152,"./_global":154,"./_is-object":165,"./_iter-detect":170,"./_library":173,"./_microtask":179,"./_new-promise-capability":180,"./_perform":198,"./_promise-resolve":199,"./_redefine-all":201,"./_set-species":207,"./_set-to-string-tag":208,"./_species-constructor":211,"./_task":220,"./_user-agent":232,"./_wks":236}],317:[function(e,t,r){var n=e("./_export"),i=e("./_a-function"),s=e("./_an-object"),u=(e("./_global").Reflect||{}).apply,a=Function.apply;n(n.S+n.F*!e("./_fails")(function(){u(function(){})}),"Reflect",{apply:function(e,t,r){var n=i(e),o=s(r);return u?u(n,t,o):a.call(n,t,o)}})},{"./_a-function":117,"./_an-object":122,"./_export":146,"./_fails":148,"./_global":154}],318:[function(e,t,r){var n=e("./_export"),a=e("./_object-create"),c=e("./_a-function"),l=e("./_an-object"),f=e("./_is-object"),o=e("./_fails"),p=e("./_bind"),h=(e("./_global").Reflect||{}).construct,d=o(function(){function e(){}return!(h(function(){},[],e)instanceof e)}),b=!o(function(){h(function(){})});n(n.S+n.F*(d||b),"Reflect",{construct:function(e,t,r){c(e),l(t);var n=arguments.length<3?e:c(r);if(b&&!d)return h(e,t,n);if(e==n){switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3])}var o=[null];return o.push.apply(o,t),new(p.apply(e,o))}var i=n.prototype,s=a(f(i)?i:Object.prototype),u=Function.apply.call(e,s,t);return f(u)?u:s}})},{"./_a-function":117,"./_an-object":122,"./_bind":130,"./_export":146,"./_fails":148,"./_global":154,"./_is-object":165,"./_object-create":182}],319:[function(e,t,r){var n=e("./_object-dp"),o=e("./_export"),i=e("./_an-object"),s=e("./_to-primitive");o(o.S+o.F*e("./_fails")(function(){Reflect.defineProperty(n.f({},1,{value:1}),1,{value:2})}),"Reflect",{defineProperty:function(e,t,r){i(e),t=s(t,!0),i(r);try{return n.f(e,t,r),!0}catch(e){return!1}}})},{"./_an-object":122,"./_export":146,"./_fails":148,"./_object-dp":183,"./_to-primitive":227}],320:[function(e,t,r){var n=e("./_export"),o=e("./_object-gopd").f,i=e("./_an-object");n(n.S,"Reflect",{deleteProperty:function(e,t){var r=o(i(e),t);return!(r&&!r.configurable)&&delete e[t]}})},{"./_an-object":122,"./_export":146,"./_object-gopd":185}],321:[function(e,t,r){"use strict";function n(e){this._t=i(e),this._i=0;var t,r=this._k=[];for(t in e)r.push(t)}var o=e("./_export"),i=e("./_an-object");e("./_iter-create")(n,"Object",function(){var e,t=this._k;do{if(this._i>=t.length)return{value:void 0,done:!0}}while(!((e=t[this._i++])in this._t));return{value:e,done:!1}}),o(o.S,"Reflect",{enumerate:function(e){return new n(e)}})},{"./_an-object":122,"./_export":146,"./_iter-create":168}],322:[function(e,t,r){var n=e("./_object-gopd"),o=e("./_export"),i=e("./_an-object");o(o.S,"Reflect",{getOwnPropertyDescriptor:function(e,t){return n.f(i(e),t)}})},{"./_an-object":122,"./_export":146,"./_object-gopd":185}],323:[function(e,t,r){var n=e("./_export"),o=e("./_object-gpo"),i=e("./_an-object");n(n.S,"Reflect",{getPrototypeOf:function(e){return o(i(e))}})},{"./_an-object":122,"./_export":146,"./_object-gpo":189}],324:[function(e,t,r){var s=e("./_object-gopd"),u=e("./_object-gpo"),a=e("./_has"),n=e("./_export"),c=e("./_is-object"),l=e("./_an-object");n(n.S,"Reflect",{get:function e(t,r){var n,o,i=arguments.length<3?t:arguments[2];return l(t)===i?t[r]:(n=s.f(t,r))?a(n,"value")?n.value:void 0!==n.get?n.get.call(i):void 0:c(o=u(t))?e(o,r,i):void 0}})},{"./_an-object":122,"./_export":146,"./_has":155,"./_is-object":165,"./_object-gopd":185,"./_object-gpo":189}],325:[function(e,t,r){var n=e("./_export");n(n.S,"Reflect",{has:function(e,t){return t in e}})},{"./_export":146}],326:[function(e,t,r){var n=e("./_export"),o=e("./_an-object"),i=Object.isExtensible;n(n.S,"Reflect",{isExtensible:function(e){return o(e),!i||i(e)}})},{"./_an-object":122,"./_export":146}],327:[function(e,t,r){var n=e("./_export");n(n.S,"Reflect",{ownKeys:e("./_own-keys")})},{"./_export":146,"./_own-keys":195}],328:[function(e,t,r){var n=e("./_export"),o=e("./_an-object"),i=Object.preventExtensions;n(n.S,"Reflect",{preventExtensions:function(e){o(e);try{return i&&i(e),!0}catch(e){return!1}}})},{"./_an-object":122,"./_export":146}],329:[function(e,t,r){var n=e("./_export"),o=e("./_set-proto");o&&n(n.S,"Reflect",{setPrototypeOf:function(e,t){o.check(e,t);try{return o.set(e,t),!0}catch(e){return!1}}})},{"./_export":146,"./_set-proto":206}],330:[function(e,t,r){var a=e("./_object-dp"),c=e("./_object-gopd"),l=e("./_object-gpo"),f=e("./_has"),n=e("./_export"),p=e("./_property-desc"),h=e("./_an-object"),d=e("./_is-object");n(n.S,"Reflect",{set:function e(t,r,n){var o,i,s=arguments.length<4?t:arguments[3],u=c.f(h(t),r);if(!u){if(d(i=l(t)))return e(i,r,n,s);u=p(0)}if(f(u,"value")){if(!1===u.writable||!d(s))return!1;if(o=c.f(s,r)){if(o.get||o.set||!1===o.writable)return!1;o.value=n,a.f(s,r,o)}else a.f(s,r,p(0,n));return!0}return void 0!==u.set&&(u.set.call(s,n),!0)}})},{"./_an-object":122,"./_export":146,"./_has":155,"./_is-object":165,"./_object-dp":183,"./_object-gopd":185,"./_object-gpo":189,"./_property-desc":200}],331:[function(e,t,r){var n=e("./_global"),i=e("./_inherit-if-required"),o=e("./_object-dp").f,s=e("./_object-gopn").f,u=e("./_is-regexp"),a=e("./_flags"),c=n.RegExp,l=c,f=c.prototype,p=/a/g,h=/a/g,d=new c(p)!==p;if(e("./_descriptors")&&(!d||e("./_fails")(function(){return h[e("./_wks")("match")]=!1,c(p)!=p||c(h)==h||"/a/i"!=c(p,"i")}))){c=function(e,t){var r=this instanceof c,n=u(e),o=void 0===t;return!r&&n&&e.constructor===c&&o?e:i(d?new l(n&&!o?e.source:e,t):l((n=e instanceof c)?e.source:e,n&&o?a.call(e):t),r?this:f,c)};function b(t){t in c||o(c,t,{configurable:!0,get:function(){return l[t]},set:function(e){l[t]=e}})}for(var y=s(l),v=0;y.length>v;)b(y[v++]);(f.constructor=c).prototype=f,e("./_redefine")(n,"RegExp",c)}e("./_set-species")("RegExp")},{"./_descriptors":142,"./_fails":148,"./_flags":150,"./_global":154,"./_inherit-if-required":159,"./_is-regexp":166,"./_object-dp":183,"./_object-gopn":187,"./_redefine":202,"./_set-species":207,"./_wks":236}],332:[function(e,t,r){"use strict";var n=e("./_regexp-exec");e("./_export")({target:"RegExp",proto:!0,forced:n!==/./.exec},{exec:n})},{"./_export":146,"./_regexp-exec":204}],333:[function(e,t,r){e("./_descriptors")&&"g"!=/./g.flags&&e("./_object-dp").f(RegExp.prototype,"flags",{configurable:!0,get:e("./_flags")})},{"./_descriptors":142,"./_flags":150,"./_object-dp":183}],334:[function(e,t,r){"use strict";var f=e("./_an-object"),p=e("./_to-length"),h=e("./_advance-string-index"),d=e("./_regexp-exec-abstract");e("./_fix-re-wks")("match",1,function(n,o,c,l){return[function(e){var t=n(this),r=null==e?void 0:e[o];return void 0!==r?r.call(e,t):new RegExp(e)[o](String(t))},function(e){var t=l(c,e,this);if(t.done)return t.value;var r=f(e),n=String(this);if(!r.global)return d(r,n);for(var o,i=r.unicode,s=[],u=r.lastIndex=0;null!==(o=d(r,n));){var a=String(o[0]);""===(s[u]=a)&&(r.lastIndex=h(n,p(r.lastIndex),i)),u++}return 0===u?null:s}]})},{"./_advance-string-index":120,"./_an-object":122,"./_fix-re-wks":149,"./_regexp-exec-abstract":203,"./_to-length":225}],335:[function(e,t,r){"use strict";var j=e("./_an-object"),n=e("./_to-object"),S=e("./_to-length"),E=e("./_to-integer"),k=e("./_advance-string-index"),P=e("./_regexp-exec-abstract"),A=Math.max,C=Math.min,p=Math.floor,h=/\$([$&`']|\d\d?|<[^>]*>)/g,d=/\$([$&`']|\d\d?)/g;e("./_fix-re-wks")("replace",2,function(o,i,w,x){return[function(e,t){var r=o(this),n=null==e?void 0:e[i];return void 0!==n?n.call(e,r,t):w.call(String(r),e,t)},function(e,t){var r=x(w,e,this,t);if(r.done)return r.value;var n=j(e),o=String(this),i="function"==typeof t;i||(t=String(t));var s=n.global;if(s){var u=n.unicode;n.lastIndex=0}for(var a=[];;){var c=P(n,o);if(null===c)break;if(a.push(c),!s)break;""===String(c[0])&&(n.lastIndex=k(o,S(n.lastIndex),u))}for(var l,f="",p=0,h=0;h>>0,l=new RegExp(e.source,u+"g");(n=p.call(l,r))&&!(a<(o=l[b])&&(s.push(r.slice(a,n.index)),1=c));)l[b]===n.index&&l[b]++;return a===r[d]?!i&&l.test("")||s.push(""):s.push(r.slice(a)),s[d]>c?s.slice(0,c):s}:"0"[s](void 0,0)[d]?function(e,t){return void 0===e&&0===t?[]:y.call(this,e,t)}:y,[function(e,t){var r=o(this),n=null==e?void 0:e[i];return void 0!==n?n.call(e,r,t):_.call(String(r),e,t)},function(e,t){var r=v(_,e,this,t,_!==y);if(r.done)return r.value;var n=m(e),o=String(this),i=g(n,RegExp),s=n.unicode,u=(n.ignoreCase?"i":"")+(n.multiline?"m":"")+(n.unicode?"u":"")+(E?"y":"g"),a=new i(E?n:"^(?:"+n.source+")",u),c=void 0===t?S:t>>>0;if(0==c)return[];if(0===o.length)return null===O(a,o)?[o]:[];for(var l=0,f=0,p=[];f>10),t%1024+56320))}return r.join("")}})},{"./_export":146,"./_to-absolute-index":221}],350:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_string-context");n(n.P+n.F*e("./_fails-is-regexp")("includes"),"String",{includes:function(e,t){return!!~o(this,e,"includes").indexOf(e,1=t.length?{value:void 0,done:!0}:(e=n(t,r),this._i+=e.length,{value:e,done:!1})})},{"./_iter-define":169,"./_string-at":213}],353:[function(e,t,r){"use strict";e("./_string-html")("link",function(t){return function(e){return t(this,"a","href",e)}})},{"./_string-html":215}],354:[function(e,t,r){var n=e("./_export"),s=e("./_to-iobject"),u=e("./_to-length");n(n.S,"String",{raw:function(e){for(var t=s(e.raw),r=u(t.length),n=arguments.length,o=[],i=0;io;)l(H,t=r[o++])||t==V||t==d||n.push(t);return n}function a(e){for(var t,r=e===K,n=L(r?Q:k(e)),o=[],i=0;n.length>i;)!l(H,t=n[i++])||r&&!l(K,t)||o.push(H[t]);return o}var c=e("./_global"),l=e("./_has"),f=e("./_descriptors"),p=e("./_export"),h=e("./_redefine"),d=e("./_meta").KEY,b=e("./_fails"),y=e("./_shared"),v=e("./_set-to-string-tag"),_=e("./_uid"),m=e("./_wks"),g=e("./_wks-ext"),w=e("./_wks-define"),x=e("./_enum-keys"),O=e("./_is-array"),j=e("./_an-object"),S=e("./_is-object"),E=e("./_to-object"),k=e("./_to-iobject"),P=e("./_to-primitive"),A=e("./_property-desc"),C=e("./_object-create"),R=e("./_object-gopn-ext"),M=e("./_object-gopd"),I=e("./_object-gops"),D=e("./_object-dp"),T=e("./_object-keys"),N=M.f,B=D.f,L=R.f,q=c.Symbol,F=c.JSON,$=F&&F.stringify,U="prototype",V=m("_hidden"),z=m("toPrimitive"),W={}.propertyIsEnumerable,J=y("symbol-registry"),H=y("symbols"),Q=y("op-symbols"),K=Object[U],G="function"==typeof q&&!!I.f,Y=c.QObject,X=!Y||!Y[U]||!Y[U].findChild,Z=f&&b(function(){return 7!=C(B({},"a",{get:function(){return B(this,"a",{value:7}).a}})).a})?function(e,t,r){var n=N(K,t);n&&delete K[t],B(e,t,r),n&&e!==K&&B(K,t,n)}:B,ee=G&&"symbol"==typeof q.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof q},te=function(e,t,r){return e===K&&te(Q,t,r),j(e),t=P(t,!0),j(r),l(H,t)?(r.enumerable?(l(e,V)&&e[V][t]&&(e[V][t]=!1),r=C(r,{enumerable:A(0,!1)})):(l(e,V)||B(e,V,A(1,{})),e[V][t]=!0),Z(e,t,r)):B(e,t,r)};G||(h((q=function(e){if(this instanceof q)throw TypeError("Symbol is not a constructor!");var t=_(0ne;)m(re[ne++]);for(var oe=T(m.store),ie=0;oe.length>ie;)w(oe[ie++]);p(p.S+p.F*!G,"Symbol",{for:function(e){return l(J,e+="")?J[e]:J[e]=q(e)},keyFor:function(e){if(!ee(e))throw TypeError(e+" is not a symbol!");for(var t in J)if(J[t]===e)return t},useSetter:function(){X=!0},useSimple:function(){X=!1}}),p(p.S+p.F*!G,"Object",{create:function(e,t){return void 0===t?C(e):o(C(e),t)},defineProperty:te,defineProperties:o,getOwnPropertyDescriptor:s,getOwnPropertyNames:u,getOwnPropertySymbols:a});var se=b(function(){I.f(1)});p(p.S+p.F*se,"Object",{getOwnPropertySymbols:function(e){return I.f(E(e))}}),F&&p(p.S+p.F*(!G||b(function(){var e=q();return"[null]"!=$([e])||"{}"!=$({a:e})||"{}"!=$(Object(e))})),"JSON",{stringify:function(e){for(var t,r,n=[e],o=1;ou;)void 0!==(r=o(n,t=i[u++]))&&f(s,t,r);return s}})},{"./_create-property":137,"./_export":146,"./_object-gopd":185,"./_own-keys":195,"./_to-iobject":224}],380:[function(e,t,r){var n=e("./_export"),o=e("./_object-to-array")(!1);n(n.S,"Object",{values:function(e){return o(e)}})},{"./_export":146,"./_object-to-array":194}],381:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_core"),i=e("./_global"),s=e("./_species-constructor"),u=e("./_promise-resolve");n(n.P+n.R,"Promise",{finally:function(t){var r=s(this,o.Promise||i.Promise),e="function"==typeof t;return this.then(e?function(e){return u(r,t()).then(function(){return e})}:t,e?function(e){return u(r,t()).then(function(){throw e})}:t)}})},{"./_core":136,"./_export":146,"./_global":154,"./_promise-resolve":199,"./_species-constructor":211}],382:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_string-pad"),i=e("./_user-agent"),s=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(i);n(n.P+n.F*s,"String",{padEnd:function(e,t){return o(this,e,1>>8^255&o^99,c[r]=o;var i=e[l[o]=r],s=e[i],u=e[s],a=257*e[o]^16843008*o;f[r]=a<<24|a>>>8,p[r]=a<<16|a>>>16,h[r]=a<<8|a>>>24,d[r]=a;a=16843009*u^65537*s^257*i^16843008*r;b[o]=a<<24|a>>>8,y[o]=a<<16|a>>>16,v[o]=a<<8|a>>>24,_[o]=a,r?(r=i^e[e[e[u^i]]],n^=e[e[n]]):r=n=1}}();var m=[0,1,2,4,8,16,32,64,128,27,54],n=r.AES=t.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var e=this._keyPriorReset=this._key,t=e.words,r=e.sigBytes/4,n=4*(1+(this._nRounds=6+r)),o=this._keySchedule=[],i=0;i>>24]<<24|c[s>>>16&255]<<16|c[s>>>8&255]<<8|c[255&s]):(s=c[(s=s<<8|s>>>24)>>>24]<<24|c[s>>>16&255]<<16|c[s>>>8&255]<<8|c[255&s],s^=m[i/r|0]<<24),o[i]=o[i-r]^s}for(var u=this._invKeySchedule=[],a=0;a>>24]]^y[c[s>>>16&255]]^v[c[s>>>8&255]]^_[c[255&s]]}}},encryptBlock:function(e,t){this._doCryptBlock(e,t,this._keySchedule,f,p,h,d,c)},decryptBlock:function(e,t){var r=e[t+1];e[t+1]=e[t+3],e[t+3]=r,this._doCryptBlock(e,t,this._invKeySchedule,b,y,v,_,l);r=e[t+1];e[t+1]=e[t+3],e[t+3]=r},_doCryptBlock:function(e,t,r,n,o,i,s,u){for(var a=this._nRounds,c=e[t]^r[0],l=e[t+1]^r[1],f=e[t+2]^r[2],p=e[t+3]^r[3],h=4,d=1;d>>24]^o[l>>>16&255]^i[f>>>8&255]^s[255&p]^r[h++],y=n[l>>>24]^o[f>>>16&255]^i[p>>>8&255]^s[255&c]^r[h++],v=n[f>>>24]^o[p>>>16&255]^i[c>>>8&255]^s[255&l]^r[h++],_=n[p>>>24]^o[c>>>16&255]^i[l>>>8&255]^s[255&f]^r[h++];c=b,l=y,f=v,p=_}b=(u[c>>>24]<<24|u[l>>>16&255]<<16|u[f>>>8&255]<<8|u[255&p])^r[h++],y=(u[l>>>24]<<24|u[f>>>16&255]<<16|u[p>>>8&255]<<8|u[255&c])^r[h++],v=(u[f>>>24]<<24|u[p>>>16&255]<<16|u[c>>>8&255]<<8|u[255&l])^r[h++],_=(u[p>>>24]<<24|u[c>>>16&255]<<16|u[l>>>8&255]<<8|u[255&f])^r[h++];e[t]=b,e[t+1]=y,e[t+2]=v,e[t+3]=_},keySize:8});e.AES=t._createHelper(n)}(),o.AES},"object"==typeof r?t.exports=r=o(e("./core"),e("./enc-base64"),e("./md5"),e("./evpkdf"),e("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],o):o(n.CryptoJS)},{"./cipher-core":392,"./core":393,"./enc-base64":394,"./evpkdf":396,"./md5":398}],392:[function(e,t,r){var n,o;n=this,o=function(w){w.lib.Cipher||function(){var e=w,t=e.lib,r=t.Base,a=t.WordArray,n=t.BufferedBlockAlgorithm,o=e.enc,i=(o.Utf8,o.Base64),s=e.algo.EvpKDF,u=t.Cipher=n.extend({cfg:r.extend(),createEncryptor:function(e,t){return this.create(this._ENC_XFORM_MODE,e,t)},createDecryptor:function(e,t){return this.create(this._DEC_XFORM_MODE,e,t)},init:function(e,t,r){this.cfg=this.cfg.extend(r),this._xformMode=e,this._key=t,this.reset()},reset:function(){n.reset.call(this),this._doReset()},process:function(e){return this._append(e),this._process()},finalize:function(e){return e&&this._append(e),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(n){return{encrypt:function(e,t,r){return c(t).encrypt(n,e,t,r)},decrypt:function(e,t,r){return c(t).decrypt(n,e,t,r)}}}});function c(e){return"string"==typeof e?g:_}t.StreamCipher=u.extend({_doFinalize:function(){return this._process(!0)},blockSize:1});var l,f=e.mode={},p=t.BlockCipherMode=r.extend({createEncryptor:function(e,t){return this.Encryptor.create(e,t)},createDecryptor:function(e,t){return this.Decryptor.create(e,t)},init:function(e,t){this._cipher=e,this._iv=t}}),h=f.CBC=((l=p.extend()).Encryptor=l.extend({processBlock:function(e,t){var r=this._cipher,n=r.blockSize;d.call(this,e,t,n),r.encryptBlock(e,t),this._prevBlock=e.slice(t,t+n)}}),l.Decryptor=l.extend({processBlock:function(e,t){var r=this._cipher,n=r.blockSize,o=e.slice(t,t+n);r.decryptBlock(e,t),d.call(this,e,t,n),this._prevBlock=o}}),l);function d(e,t,r){var n=this._iv;if(n){var o=n;this._iv=void 0}else o=this._prevBlock;for(var i=0;i>>2];e.sigBytes-=t}},y=(t.BlockCipher=u.extend({cfg:u.cfg.extend({mode:h,padding:b}),reset:function(){u.reset.call(this);var e=this.cfg,t=e.iv,r=e.mode;if(this._xformMode==this._ENC_XFORM_MODE)var n=r.createEncryptor;else{n=r.createDecryptor;this._minBufferSize=1}this._mode&&this._mode.__creator==n?this._mode.init(this,t&&t.words):(this._mode=n.call(r,this,t&&t.words),this._mode.__creator=n)},_doProcessBlock:function(e,t){this._mode.processBlock(e,t)},_doFinalize:function(){var e=this.cfg.padding;if(this._xformMode==this._ENC_XFORM_MODE){e.pad(this._data,this.blockSize);var t=this._process(!0)}else{t=this._process(!0);e.unpad(t)}return t},blockSize:4}),t.CipherParams=r.extend({init:function(e){this.mixIn(e)},toString:function(e){return(e||this.formatter).stringify(this)}})),v=(e.format={}).OpenSSL={stringify:function(e){var t=e.ciphertext,r=e.salt;if(r)var n=a.create([1398893684,1701076831]).concat(r).concat(t);else n=t;return n.toString(i)},parse:function(e){var t=i.parse(e),r=t.words;if(1398893684==r[0]&&1701076831==r[1]){var n=a.create(r.slice(2,4));r.splice(0,4),t.sigBytes-=16}return y.create({ciphertext:t,salt:n})}},_=t.SerializableCipher=r.extend({cfg:r.extend({format:v}),encrypt:function(e,t,r,n){n=this.cfg.extend(n);var o=e.createEncryptor(r,n),i=o.finalize(t),s=o.cfg;return y.create({ciphertext:i,key:r,iv:s.iv,algorithm:e,mode:s.mode,padding:s.padding,blockSize:e.blockSize,formatter:n.format})},decrypt:function(e,t,r,n){return n=this.cfg.extend(n),t=this._parse(t,n.format),e.createDecryptor(r,n).finalize(t.ciphertext)},_parse:function(e,t){return"string"==typeof e?t.parse(e,this):e}}),m=(e.kdf={}).OpenSSL={execute:function(e,t,r,n){n=n||a.random(8);var o=s.create({keySize:t+r}).compute(e,n),i=a.create(o.words.slice(t),4*r);return o.sigBytes=4*t,y.create({key:o,iv:i,salt:n})}},g=t.PasswordBasedCipher=_.extend({cfg:_.cfg.extend({kdf:m}),encrypt:function(e,t,r,n){var o=(n=this.cfg.extend(n)).kdf.execute(r,e.keySize,e.ivSize);n.iv=o.iv;var i=_.encrypt.call(this,e,t,o.key,n);return i.mixIn(o),i},decrypt:function(e,t,r,n){n=this.cfg.extend(n),t=this._parse(t,n.format);var o=n.kdf.execute(r,e.keySize,e.ivSize,t.salt);return n.iv=o.iv,_.decrypt.call(this,e,t,o.key,n)}})}()},"object"==typeof r?t.exports=r=o(e("./core"),e("./evpkdf")):"function"==typeof define&&define.amd?define(["./core","./evpkdf"],o):o(n.CryptoJS)},{"./core":393,"./evpkdf":396}],393:[function(e,t,r){var n,o;n=this,o=function(){var l,r,e,t,n,f,o,i,s,u,a,c,p=p||(l=Math,r=Object.create||function(e){var t;return h.prototype=e,t=new h,h.prototype=null,t},t=(e={}).lib={},n=t.Base={extend:function(e){var t=r(this);return e&&t.mixIn(e),t.hasOwnProperty("init")&&this.init!==t.init||(t.init=function(){t.$super.init.apply(this,arguments)}),(t.init.prototype=t).$super=this,t},create:function(){var e=this.extend();return e.init.apply(e,arguments),e},init:function(){},mixIn:function(e){for(var t in e)e.hasOwnProperty(t)&&(this[t]=e[t]);e.hasOwnProperty("toString")&&(this.toString=e.toString)},clone:function(){return this.init.prototype.extend(this)}},f=t.WordArray=n.extend({init:function(e,t){e=this.words=e||[],this.sigBytes=null!=t?t:4*e.length},toString:function(e){return(e||i).stringify(this)},concat:function(e){var t=this.words,r=e.words,n=this.sigBytes,o=e.sigBytes;if(this.clamp(),n%4)for(var i=0;i>>2]>>>24-i%4*8&255;t[n+i>>>2]|=s<<24-(n+i)%4*8}else for(i=0;i>>2]=r[i>>>2];return this.sigBytes+=o,this},clamp:function(){var e=this.words,t=this.sigBytes;e[t>>>2]&=4294967295<<32-t%4*8,e.length=l.ceil(t/4)},clone:function(){var e=n.clone.call(this);return e.words=this.words.slice(0),e},random:function(e){function t(t){t=t;var r=987654321,n=4294967295;return function(){var e=((r=36969*(65535&r)+(r>>16)&n)<<16)+(t=18e3*(65535&t)+(t>>16)&n)&n;return e/=4294967296,(e+=.5)*(.5>>2]>>>24-o%4*8&255;n.push((i>>>4).toString(16)),n.push((15&i).toString(16))}return n.join("")},parse:function(e){for(var t=e.length,r=[],n=0;n>>3]|=parseInt(e.substr(n,2),16)<<24-n%8*4;return new f.init(r,t/2)}},s=o.Latin1={stringify:function(e){for(var t=e.words,r=e.sigBytes,n=[],o=0;o>>2]>>>24-o%4*8&255;n.push(String.fromCharCode(i))}return n.join("")},parse:function(e){for(var t=e.length,r=[],n=0;n>>2]|=(255&e.charCodeAt(n))<<24-n%4*8;return new f.init(r,t)}},u=o.Utf8={stringify:function(e){try{return decodeURIComponent(escape(s.stringify(e)))}catch(e){throw new Error("Malformed UTF-8 data")}},parse:function(e){return s.parse(unescape(encodeURIComponent(e)))}},a=t.BufferedBlockAlgorithm=n.extend({reset:function(){this._data=new f.init,this._nDataBytes=0},_append:function(e){"string"==typeof e&&(e=u.parse(e)),this._data.concat(e),this._nDataBytes+=e.sigBytes},_process:function(e){var t=this._data,r=t.words,n=t.sigBytes,o=this.blockSize,i=n/(4*o),s=(i=e?l.ceil(i):l.max((0|i)-this._minBufferSize,0))*o,u=l.min(4*s,n);if(s){for(var a=0;a>>2]>>>24-i%4*8&255)<<16|(t[i+1>>>2]>>>24-(i+1)%4*8&255)<<8|t[i+2>>>2]>>>24-(i+2)%4*8&255,u=0;u<4&&i+.75*u>>6*(3-u)&63));var a=n.charAt(64);if(a)for(;o.length%4;)o.push(a);return o.join("")},parse:function(e){var t=e.length,r=this._map,n=this._reverseMap;if(!n){n=this._reverseMap=[];for(var o=0;o>>6-i%4*2;n[o>>>2]|=(s|u)<<24-o%4*8,o++}return a.create(n,o)}(e,t,n)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},e.enc.Base64},"object"==typeof r?t.exports=r=o(e("./core")):"function"==typeof define&&define.amd?define(["./core"],o):o(n.CryptoJS)},{"./core":393}],395:[function(e,t,r){var n,o;n=this,o=function(e){return e.enc.Utf8},"object"==typeof r?t.exports=r=o(e("./core")):"function"==typeof define&&define.amd?define(["./core"],o):o(n.CryptoJS)},{"./core":393}],396:[function(e,t,r){var n,o;n=this,o=function(e){var t,r,n,l,o,i,s;return r=(t=e).lib,n=r.Base,l=r.WordArray,o=t.algo,i=o.MD5,s=o.EvpKDF=n.extend({cfg:n.extend({keySize:4,hasher:i,iterations:1}),init:function(e){this.cfg=this.cfg.extend(e)},compute:function(e,t){for(var r=this.cfg,n=r.hasher.create(),o=l.create(),i=o.words,s=r.keySize,u=r.iterations;i.lengthn&&(t=e.finalize(t)),t.clamp();for(var o=this._oKey=t.clone(),i=this._iKey=t.clone(),s=o.words,u=i.words,a=0;a>>24)|4278255360&(o<<24|o>>>8)}var i=this._hash.words,s=e[t+0],u=e[t+1],a=e[t+2],c=e[t+3],l=e[t+4],f=e[t+5],p=e[t+6],h=e[t+7],d=e[t+8],b=e[t+9],y=e[t+10],v=e[t+11],_=e[t+12],m=e[t+13],g=e[t+14],w=e[t+15],x=i[0],O=i[1],j=i[2],S=i[3];x=k(x,O,j,S,s,7,E[0]),S=k(S,x,O,j,u,12,E[1]),j=k(j,S,x,O,a,17,E[2]),O=k(O,j,S,x,c,22,E[3]),x=k(x,O,j,S,l,7,E[4]),S=k(S,x,O,j,f,12,E[5]),j=k(j,S,x,O,p,17,E[6]),O=k(O,j,S,x,h,22,E[7]),x=k(x,O,j,S,d,7,E[8]),S=k(S,x,O,j,b,12,E[9]),j=k(j,S,x,O,y,17,E[10]),O=k(O,j,S,x,v,22,E[11]),x=k(x,O,j,S,_,7,E[12]),S=k(S,x,O,j,m,12,E[13]),j=k(j,S,x,O,g,17,E[14]),x=P(x,O=k(O,j,S,x,w,22,E[15]),j,S,u,5,E[16]),S=P(S,x,O,j,p,9,E[17]),j=P(j,S,x,O,v,14,E[18]),O=P(O,j,S,x,s,20,E[19]),x=P(x,O,j,S,f,5,E[20]),S=P(S,x,O,j,y,9,E[21]),j=P(j,S,x,O,w,14,E[22]),O=P(O,j,S,x,l,20,E[23]),x=P(x,O,j,S,b,5,E[24]),S=P(S,x,O,j,g,9,E[25]),j=P(j,S,x,O,c,14,E[26]),O=P(O,j,S,x,d,20,E[27]),x=P(x,O,j,S,m,5,E[28]),S=P(S,x,O,j,a,9,E[29]),j=P(j,S,x,O,h,14,E[30]),x=A(x,O=P(O,j,S,x,_,20,E[31]),j,S,f,4,E[32]),S=A(S,x,O,j,d,11,E[33]),j=A(j,S,x,O,v,16,E[34]),O=A(O,j,S,x,g,23,E[35]),x=A(x,O,j,S,u,4,E[36]),S=A(S,x,O,j,l,11,E[37]),j=A(j,S,x,O,h,16,E[38]),O=A(O,j,S,x,y,23,E[39]),x=A(x,O,j,S,m,4,E[40]),S=A(S,x,O,j,s,11,E[41]),j=A(j,S,x,O,c,16,E[42]),O=A(O,j,S,x,p,23,E[43]),x=A(x,O,j,S,b,4,E[44]),S=A(S,x,O,j,_,11,E[45]),j=A(j,S,x,O,w,16,E[46]),x=C(x,O=A(O,j,S,x,a,23,E[47]),j,S,s,6,E[48]),S=C(S,x,O,j,h,10,E[49]),j=C(j,S,x,O,g,15,E[50]),O=C(O,j,S,x,f,21,E[51]),x=C(x,O,j,S,_,6,E[52]),S=C(S,x,O,j,c,10,E[53]),j=C(j,S,x,O,y,15,E[54]),O=C(O,j,S,x,u,21,E[55]),x=C(x,O,j,S,d,6,E[56]),S=C(S,x,O,j,w,10,E[57]),j=C(j,S,x,O,p,15,E[58]),O=C(O,j,S,x,m,21,E[59]),x=C(x,O,j,S,l,6,E[60]),S=C(S,x,O,j,v,10,E[61]),j=C(j,S,x,O,a,15,E[62]),O=C(O,j,S,x,b,21,E[63]),i[0]=i[0]+x|0,i[1]=i[1]+O|0,i[2]=i[2]+j|0,i[3]=i[3]+S|0},_doFinalize:function(){var e=this._data,t=e.words,r=8*this._nDataBytes,n=8*e.sigBytes;t[n>>>5]|=128<<24-n%32;var o=l.floor(r/4294967296),i=r;t[15+(64+n>>>9<<4)]=16711935&(o<<8|o>>>24)|4278255360&(o<<24|o>>>8),t[14+(64+n>>>9<<4)]=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8),e.sigBytes=4*(t.length+1),this._process();for(var s=this._hash,u=s.words,a=0;a<4;a++){var c=u[a];u[a]=16711935&(c<<8|c>>>24)|4278255360&(c<<24|c>>>8)}return s},clone:function(){var e=n.clone.call(this);return e._hash=this._hash.clone(),e}});function k(e,t,r,n,o,i,s){var u=e+(t&r|~t&n)+o+s;return(u<>>32-i)+t}function P(e,t,r,n,o,i,s){var u=e+(t&n|r&~n)+o+s;return(u<>>32-i)+t}function A(e,t,r,n,o,i,s){var u=e+(t^r^n)+o+s;return(u<>>32-i)+t}function C(e,t,r,n,o,i,s){var u=e+(r^(t|~n))+o+s;return(u<>>32-i)+t}e.MD5=n._createHelper(i),e.HmacMD5=n._createHmacHelper(i)}(Math),s.MD5},"object"==typeof r?t.exports=r=o(e("./core")):"function"==typeof define&&define.amd?define(["./core"],o):o(n.CryptoJS)},{"./core":393}],399:[function(e,t,r){var n,o;n=this,o=function(e){var t,r,n,o,i,f,s;return r=(t=e).lib,n=r.WordArray,o=r.Hasher,i=t.algo,f=[],s=i.SHA1=o.extend({_doReset:function(){this._hash=new n.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(e,t){for(var r=this._hash.words,n=r[0],o=r[1],i=r[2],s=r[3],u=r[4],a=0;a<80;a++){if(a<16)f[a]=0|e[t+a];else{var c=f[a-3]^f[a-8]^f[a-14]^f[a-16];f[a]=c<<1|c>>>31}var l=(n<<5|n>>>27)+u+f[a];l+=a<20?1518500249+(o&i|~o&s):a<40?1859775393+(o^i^s):a<60?(o&i|o&s|i&s)-1894007588:(o^i^s)-899497514,u=s,s=i,i=o<<30|o>>>2,o=n,n=l}r[0]=r[0]+n|0,r[1]=r[1]+o|0,r[2]=r[2]+i|0,r[3]=r[3]+s|0,r[4]=r[4]+u|0},_doFinalize:function(){var e=this._data,t=e.words,r=8*this._nDataBytes,n=8*e.sigBytes;return t[n>>>5]|=128<<24-n%32,t[14+(64+n>>>9<<4)]=Math.floor(r/4294967296),t[15+(64+n>>>9<<4)]=r,e.sigBytes=4*t.length,this._process(),this._hash},clone:function(){var e=o.clone.call(this);return e._hash=this._hash.clone(),e}}),t.SHA1=o._createHelper(s),t.HmacSHA1=o._createHmacHelper(s),e.SHA1},"object"==typeof r?t.exports=r=o(e("./core")):"function"==typeof define&&define.amd?define(["./core"],o):o(n.CryptoJS)},{"./core":393}],400:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault")(e("./index.js"));t.exports=n.default},{"./index.js":401,"@babel/runtime/helpers/interopRequireDefault":402}],401:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.default=void 0;function n(e){var t=0=r.length){var s=a(n,r[i]);n=s?s.get||s.value:n[r[i]]}else n=n[r[i]];return n}},{"function-bind":412,"has-symbols":415}],407:[function(e,t,r){"use strict";var n=e("function-bind"),o=e("../GetIntrinsic")("%Function%"),i=o.apply,s=o.call;t.exports=function(){return n.apply(s,arguments)},t.exports.apply=function(){return n.apply(i,arguments)}},{"../GetIntrinsic":406,"function-bind":412}],408:[function(e,t,r){"use strict";var n=e("../GetIntrinsic"),o=e("./callBind"),i=o(n("String.prototype.indexOf"));t.exports=function(e,t){var r=n(e,!!t);return"function"==typeof r&&i(e,".prototype.")?o(r):r}},{"../GetIntrinsic":406,"./callBind":407}],409:[function(O,j,e){(function(e){"use strict";var t=O("is-arguments");if(O("has-symbols")()||O("has-symbols/shams")()){var r=Symbol.iterator;j.exports=function(e){return null!=e&&void 0!==e[r]?e[r]():t(e)?Array.prototype[r].call(e):void 0}}else{var o=O("isarray"),i=O("is-string"),n=O("es-abstract/GetIntrinsic"),s=n("%Map%",!0),u=n("%Set%",!0),a=O("es-abstract/helpers/callBound"),c=a("Array.prototype.push"),l=a("String.prototype.charCodeAt"),f=a("String.prototype.slice"),p=function(r){var n=0;return{next:function(){var e,t=n>=r.length;return t||(e=r[n],n+=1),{done:t,value:e}}}},h=function(r){if(o(r)||t(r))return p(r);if(i(r)){var n=0;return{next:function(){var e=function(e,t){if(e.length<=t+1)return t+1;var r=l(e,t);if(r<55296||56319r.length,value:t}}}}};if(s||u){var d=O("is-map"),b=O("is-set"),y=a("Map.prototype.forEach",!0),v=a("Set.prototype.forEach",!0);if(void 0===e||!e.versions||!e.versions.node)var _=a("Map.prototype.iterator",!0),m=a("Set.prototype.iterator",!0),g=function(e){var t=!1;return{next:function(){try{return{done:t,value:t?void 0:e.next()}}catch(e){return{done:t=!0,value:void 0}}}}};var w=a("Map.prototype.@@iterator",!0)||a("Map.prototype._es6-shim iterator_",!0),x=a("Set.prototype.@@iterator",!0)||a("Set.prototype._es6-shim iterator_",!0);j.exports=function(e){return function(e){if(d(e)){if(_)return g(_(e));if(w)return w(e);if(y){var r=[];return y(e,function(e,t){c(r,[t,e])}),p(r)}}if(b(e)){if(m)return g(m(e));if(x)return x(e);if(v){var t=[];return v(e,function(e){c(t,e)}),p(t)}}}(e)||h(e)}}else j.exports=h}}).call(this,O("_process"))},{_process:495,"es-abstract/GetIntrinsic":406,"es-abstract/helpers/callBound":408,"has-symbols":415,"has-symbols/shams":416,"is-arguments":420,"is-map":425,"is-set":432,"is-string":433,isarray:437}],410:[function(e,t,r){var a=Object.create||function(e){function t(){}return t.prototype=e,new t},s=Object.keys||function(e){var t=[];for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.push(r);return r},i=Function.prototype.bind||function(e){var t=this;return function(){return t.apply(e,arguments)}};function n(){this._events&&Object.prototype.hasOwnProperty.call(this,"_events")||(this._events=a(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0}((t.exports=n).EventEmitter=n).prototype._events=void 0,n.prototype._maxListeners=void 0;var o,u=10;try{var c={};Object.defineProperty&&Object.defineProperty(c,"x",{value:0}),o=0===c.x}catch(e){o=!1}function l(e){return void 0===e._maxListeners?n.defaultMaxListeners:e._maxListeners}function f(e,t,r,n){var o,i,s;if("function"!=typeof r)throw new TypeError('"listener" argument must be a function');if((i=e._events)?(i.newListener&&(e.emit("newListener",t,r.listener?r.listener:r),i=e._events),s=i[t]):(i=e._events=a(null),e._eventsCount=0),s){if("function"==typeof s?s=i[t]=n?[r,s]:[s,r]:n?s.unshift(r):s.push(r),!s.warned&&(o=l(e))&&0o){s.warned=!0;var u=new Error("Possible EventEmitter memory leak detected. "+s.length+' "'+String(t)+'" listeners added. Use emitter.setMaxListeners() to increase limit.');u.name="MaxListenersExceededWarning",u.emitter=e,u.type=t,u.count=s.length,"object"==typeof console&&console.warn&&console.warn("%s: %s",u.name,u.message)}}else s=i[t]=r,++e._eventsCount;return e}function p(){if(!this.fired)switch(this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length){case 0:return this.listener.call(this.target);case 1:return this.listener.call(this.target,arguments[0]);case 2:return this.listener.call(this.target,arguments[0],arguments[1]);case 3:return this.listener.call(this.target,arguments[0],arguments[1],arguments[2]);default:for(var e=new Array(arguments.length),t=0;t>1,l=-7,f=r?o-1:0,p=r?-1:1,h=e[t+f];for(f+=p,i=h&(1<<-l)-1,h>>=-l,l+=u;0>=-l,l+=n;0>1,p=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,h=n?0:i-1,d=n?1:-1,b=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(u=isNaN(t)?1:0,s=l):(s=Math.floor(Math.log(t)/Math.LN2),t*(a=Math.pow(2,-s))<1&&(s--,a*=2),2<=(t+=1<=s+f?p/a:p*Math.pow(2,1-f))*a&&(s++,a/=2),l<=s+f?(u=0,s=l):1<=s+f?(u=(t*a-1)*Math.pow(2,o),s+=f):(u=t*Math.pow(2,f-1)*Math.pow(2,o),s=0));8<=o;e[r+h]=255&u,h+=d,u/=256,o-=8);for(s=s< 9007199254740992 || "+e+" < -9007199254740992)"},string:function(e){return"typeof "+e+' === "string"'}},L=function(e,w,x,t,O){function j(e){return e+(r[e]=(r[e]||0)+1)}function S(e){if(n[e])return n[e];var t=j("pattern");return P[t]=new RegExp(e),n[e]=t}function E(){var e=o.shift();return o.push(e+e[0]),e}var k=O?a(N,O.formats):N,P={unique:i,formats:k,isMultipleOf:s},A=!!O&&!!O.verbose,C=!(!O||void 0===O.greedy)&&O.greedy,r={},n={},o=["i","j","k","l","m","n","o","p","q","r","s","t","u","v","x","y","z"],R=function(n,r,o,i,s){var u=r.properties,a=r.type,t=!1;Array.isArray(r.items)&&(u={},r.items.forEach(function(e,t){u[t]=e}),a="array",t=!0);function c(e,t,r){M("errors++"),!0===o&&(M("if (validate.errors === null) validate.errors = []"),A?M("validate.errors.push({field:%s,message:%s,value:%s,type:%s,schemaPath:%s})",I(t||n),JSON.stringify(e),r||n,JSON.stringify(a),JSON.stringify(s)):M("validate.errors.push({field:%s,message:%s})",I(t||n),JSON.stringify(e)))}var e=0;!0===r.required?(e++,M("if (%s === undefined) {",n),c("is required"),M("} else {")):(e++,M("if (%s !== undefined) {",n));var l=[].concat(a).map(function(e){if(e&&!B.hasOwnProperty(e))throw new Error("Unknown type: "+e);return B[e||"any"](n)}).join(" || ")||"true";if("true"!==l&&(e++,M("if (!(%s)) {",l),c("is the wrong type"),M("} else {")),t)if(!1===r.additionalItems)M("if (%s.length > %d) {",n,r.items.length),c("has additional items"),M("}");else if(r.additionalItems){var f=E();M("for (var %s = %d; %s < %s.length; %s++) {",f,r.items.length,f,n,f),R(n+"["+f+"]",r.additionalItems,o,i,s.concat("additionalItems")),M("}")}if(r.format&&k[r.format]){"string"!==a&&N[r.format]&&M("if (%s) {",B.string(n));var p=j("format");P[p]=k[r.format],"function"==typeof P[p]?M("if (!%s(%s)) {",p,n):M("if (!%s.test(%s)) {",p,n),c("must be "+r.format+" format"),M("}"),"string"!==a&&N[r.format]&&M("}")}if(Array.isArray(r.required)){M("if ((%s)) {","object"!==a?B.object(n):"true"),M("var missing = 0"),r.required.map(function(e){var t=D(n,e);M("if (%s === undefined) {",t),c("is required",t),M("missing++"),M("}")}),M("}"),C||(M("if (missing === 0) {"),e++)}if(r.uniqueItems&&("array"!==a&&M("if (%s) {",B.array(n)),M("if (!(unique(%s))) {",n),c("must be unique"),M("}"),"array"!==a&&M("}")),r.enum){var h=r.enum.some(function(e){return"object"==typeof e})?function(e){return"JSON.stringify("+n+") !== JSON.stringify("+JSON.stringify(e)+")"}:function(e){return n+" !== "+JSON.stringify(e)};M("if (%s) {",r.enum.map(h).join(" && ")||"false"),c("must be an enum value"),M("}")}if(r.dependencies&&("object"!==a&&M("if (%s) {",B.object(n)),Object.keys(r.dependencies).forEach(function(e){var t=r.dependencies[e];"string"==typeof t&&(t=[t]);Array.isArray(t)&&(M("if (%s !== undefined && !(%s)) {",D(n,e),t.map(function(e){return D(n,e)+" !== undefined"}).join(" && ")||"true"),c("dependencies not set"),M("}")),"object"==typeof t&&(M("if (%s !== undefined) {",D(n,e)),R(n,t,o,i,s.concat(["dependencies",e])),M("}"))}),"object"!==a&&M("}")),r.additionalProperties||!1===r.additionalProperties){"object"!==a&&M("if (%s) {",B.object(n));f=E();var d=j("keys"),b=Object.keys(u||{}).map(function(e){return d+"["+f+"] !== "+JSON.stringify(e)}).concat(Object.keys(r.patternProperties||{}).map(function(e){return"!"+S(e)+".test("+d+"["+f+"])"})).join(" && ")||"true";M("var %s = Object.keys(%s)",d,n)("for (var %s = 0; %s < %s.length; %s++) {",f,f,d,f)("if (%s) {",b),!1===r.additionalProperties?(i&&M("delete %s",n+"["+d+"["+f+"]]"),c("has additional properties",null,JSON.stringify(n+".")+" + "+d+"["+f+"]")):R(n+"["+d+"["+f+"]]",r.additionalProperties,o,i,s.concat(["additionalProperties"])),M("}")("}"),"object"!==a&&M("}")}if(r.$ref){var y=function(e,t,n){var o=function(r){return r&&r.id===n?r:"object"==typeof r&&r?Object.keys(r).reduce(function(e,t){return e||o(r[t])},null):null},r=o(e);if(r)return r;n=(n=n.replace(/^#/,"")).replace(/\/$/,"");try{return T.get(e,decodeURI(n))}catch(e){var i,s=n.indexOf("#");if(0!==s)if(-1===s)i=t[n];else{i=t[n.slice(0,s)];var u=n.slice(s).replace(/^#/,"");try{return T.get(i,u)}catch(e){}}else i=t[n];return i||null}}(x,O&&O.schemas||{},r.$ref);if(y){var v=w[r.$ref];v||(w[r.$ref]=function(e){return v(e)},v=L(y,w,x,!1,O));p=j("ref");P[p]=v,M("if (!(%s(%s))) {",p,n),c("referenced schema does not match"),M("}")}}if(r.not){var _=j("prev");M("var %s = errors",_),R(n,r.not,!1,i,s.concat("not")),M("if (%s === errors) {",_),c("negative schema matches"),M("} else {")("errors = %s",_)("}")}if(r.items&&!t){"array"!==a&&M("if (%s) {",B.array(n));f=E();M("for (var %s = 0; %s < %s.length; %s++) {",f,f,n,f),R(n+"["+f+"]",r.items,o,i,s.concat("items")),M("}"),"array"!==a&&M("}")}if(r.patternProperties){"object"!==a&&M("if (%s) {",B.object(n));d=j("keys"),f=E();M("var %s = Object.keys(%s)",d,n)("for (var %s = 0; %s < %s.length; %s++) {",f,f,d,f),Object.keys(r.patternProperties).forEach(function(e){var t=S(e);M("if (%s.test(%s)) {",t,d+"["+f+"]"),R(n+"["+d+"["+f+"]]",r.patternProperties[e],o,i,s.concat(["patternProperties",e])),M("}")}),M("}"),"object"!==a&&M("}")}if(r.pattern){var m=S(r.pattern);"string"!==a&&M("if (%s) {",B.string(n)),M("if (!(%s.test(%s))) {",m,n),c("pattern mismatch"),M("}"),"string"!==a&&M("}")}if(r.allOf&&r.allOf.forEach(function(e,t){R(n,e,o,i,s.concat(["allOf",t]))}),r.anyOf&&r.anyOf.length){_=j("prev");r.anyOf.forEach(function(e,t){0===t?M("var %s = errors",_):M("if (errors !== %s) {",_)("errors = %s",_),R(n,e,!1,!1,s)}),r.anyOf.forEach(function(e,t){t&&M("}")}),M("if (%s !== errors) {",_),c("no schemas match"),M("}")}if(r.oneOf&&r.oneOf.length){_=j("prev");var g=j("passes");M("var %s = errors",_)("var %s = 0",g),r.oneOf.forEach(function(e,t){R(n,e,!1,!1,s),M("if (%s === errors) {",_)("%s++",g)("} else {")("errors = %s",_)("}")}),M("if (%s !== 1) {",g),c("no (or more than one) schemas match"),M("}")}for(void 0!==r.multipleOf&&("number"!==a&&"integer"!==a&&M("if (%s) {",B.number(n)),M("if (!isMultipleOf(%s, %d)) {",n,r.multipleOf),c("has a remainder"),M("}"),"number"!==a&&"integer"!==a&&M("}")),void 0!==r.maxProperties&&("object"!==a&&M("if (%s) {",B.object(n)),M("if (Object.keys(%s).length > %d) {",n,r.maxProperties),c("has more properties than allowed"),M("}"),"object"!==a&&M("}")),void 0!==r.minProperties&&("object"!==a&&M("if (%s) {",B.object(n)),M("if (Object.keys(%s).length < %d) {",n,r.minProperties),c("has less properties than allowed"),M("}"),"object"!==a&&M("}")),void 0!==r.maxItems&&("array"!==a&&M("if (%s) {",B.array(n)),M("if (%s.length > %d) {",n,r.maxItems),c("has more items than allowed"),M("}"),"array"!==a&&M("}")),void 0!==r.minItems&&("array"!==a&&M("if (%s) {",B.array(n)),M("if (%s.length < %d) {",n,r.minItems),c("has less items than allowed"),M("}"),"array"!==a&&M("}")),void 0!==r.maxLength&&("string"!==a&&M("if (%s) {",B.string(n)),M("if (%s.length > %d) {",n,r.maxLength),c("has longer length than allowed"),M("}"),"string"!==a&&M("}")),void 0!==r.minLength&&("string"!==a&&M("if (%s) {",B.string(n)),M("if (%s.length < %d) {",n,r.minLength),c("has less length than allowed"),M("}"),"string"!==a&&M("}")),void 0!==r.minimum&&("number"!==a&&"integer"!==a&&M("if (%s) {",B.number(n)),M("if (%s %s %d) {",n,r.exclusiveMinimum?"<=":"<",r.minimum),c("is less than minimum"),M("}"),"number"!==a&&"integer"!==a&&M("}")),void 0!==r.maximum&&("number"!==a&&"integer"!==a&&M("if (%s) {",B.number(n)),M("if (%s %s %d) {",n,r.exclusiveMaximum?">=":">",r.maximum),c("is more than maximum"),M("}"),"number"!==a&&"integer"!==a&&M("}")),u&&Object.keys(u).forEach(function(e){Array.isArray(a)&&-1!==a.indexOf("null")&&M("if (%s !== null) {",n),R(D(n,e),u[e],o,i,s.concat(t?e:["properties",e])),Array.isArray(a)&&-1!==a.indexOf("null")&&M("}")});e--;)M("}")},M=u("function validate(data) {")("if (data === undefined) data = null")("validate.errors = null")("var errors = 0");return R("data",e,t,O&&O.filter,[]),M("return errors === 0")("}"),(M=M.toFunction(P)).errors=null,Object.defineProperty&&Object.defineProperty(M,"error",{get:function(){return M.errors?M.errors.map(function(e){return e.field+" "+e.message}).join("\n"):""}}),M.toJSON=function(){return e},M};n.exports=function(e,t){return"string"==typeof e&&(e=JSON.parse(e)),L(e,{},e,!0,t)},n.exports.filter=function(e,t){var r=n.exports(e,a(t,{filter:!0}));return function(e){return r(e),e}}},{"./formats":427,"generate-function":413,"generate-object-property":414,jsonpointer:438,xtend:713}],429:[function(e,t,r){"use strict";var n=Number.prototype.toString,o=Object.prototype.toString,i="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;t.exports=function(e){return"number"==typeof e||"object"==typeof e&&(i?function(e){try{return n.call(e),!0}catch(e){return!1}}(e):"[object Number]"===o.call(e))}},{}],430:[function(e,t,r){"use strict";t.exports=function(e){return/^[$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc][$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc0-9\u0300-\u036f\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08e4-\u08fe\u0900-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c01-\u0c03\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c82\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d02\u0d03\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d82\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u1810-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19b0-\u19c0\u19c8\u19c9\u19d0-\u19d9\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf2-\u1cf4\u1dc0-\u1de6\u1dfc-\u1dff\u200c\u200d\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua880\ua881\ua8b4-\ua8c4\ua8d0-\ua8d9\ua8e0-\ua8f1\ua900-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f]*$/.test(e)}},{}],431:[function(e,t,r){"use strict";var n=e("has"),o=RegExp.prototype.exec,i=Object.getOwnPropertyDescriptor,s=Object.prototype.toString,u="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;t.exports=function(e){if(!e||"object"!=typeof e)return!1;if(!u)return"[object RegExp]"===s.call(e);var t=i(e,"lastIndex");return!(!t||!n(t,"value"))&&function(e){try{var t=e.lastIndex;return e.lastIndex=0,o.call(e),!0}catch(e){return!1}finally{e.lastIndex=t}}(e)}},{has:417}],432:[function(e,t,r){"use strict";var n,o="function"==typeof Map&&Map.prototype?Map:null,i="function"==typeof Set&&Set.prototype?Set:null;i||(n=function(){return!1});var s=o?Map.prototype.has:null,u=i?Set.prototype.has:null;n||u||(n=function(){return!1}),t.exports=n||function(e){if(!e||"object"!=typeof e)return!1;try{if(u.call(e),s)try{s.call(e)}catch(e){return!0}return e instanceof i}catch(e){}return!1}},{}],433:[function(e,t,r){"use strict";var n=String.prototype.valueOf,o=Object.prototype.toString,i="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;t.exports=function(e){return"string"==typeof e||"object"==typeof e&&(i?function(e){try{return n.call(e),!0}catch(e){return!1}}(e):"[object String]"===o.call(e))}},{}],434:[function(e,t,r){"use strict";var n=Object.prototype.toString;if(e("has-symbols")()){var o=Symbol.prototype.toString,i=/^Symbol\(.*\)$/;t.exports=function(e){if("symbol"==typeof e)return!0;if("[object Symbol]"!==n.call(e))return!1;try{return"symbol"==typeof(t=e).valueOf()&&i.test(o.call(t))}catch(e){return!1}var t}}else t.exports=function(){return!1}},{"has-symbols":415}],435:[function(e,t,r){"use strict";var n,o="function"==typeof WeakMap&&WeakMap.prototype?WeakMap:null,i="function"==typeof WeakSet&&WeakSet.prototype?WeakSet:null;o||(n=function(){return!1});var s=o?o.prototype.has:null,u=i?i.prototype.has:null;n||s||(n=function(){return!1}),t.exports=n||function(e){if(!e||"object"!=typeof e)return!1;try{if(s.call(e,s),u)try{u.call(e,u)}catch(e){return!0}return e instanceof o}catch(e){}return!1}},{}],436:[function(e,t,r){"use strict";var n,o="function"==typeof WeakMap&&WeakMap.prototype?WeakMap:null,i="function"==typeof WeakSet&&WeakSet.prototype?WeakSet:null;o||(n=function(){return!1});var s=o?o.prototype.has:null,u=i?i.prototype.has:null;n||u||(t.exports=function(){return!1}),t.exports=n||function(e){if(!e||"object"!=typeof e)return!1;try{if(u.call(e,u),s)try{s.call(e,s)}catch(e){return!0}return e instanceof i}catch(e){}return!1}},{}],437:[function(e,t,r){var n={}.toString;t.exports=Array.isArray||function(e){return"[object Array]"==n.call(e)}},{}],438:[function(e,t,r){var n=/~/,o=/~[01]/g;function i(e){switch(e){case"~1":return"/";case"~0":return"~"}throw new Error("Invalid tilde escape: "+e)}function a(e){return n.test(e)?e.replace(o,i):e}function s(e){if("string"==typeof e){if(""===(e=e.split("/"))[0])return e;throw new Error("Invalid JSON pointer.")}if(Array.isArray(e))return e;throw new Error("Invalid JSON pointer.")}function u(e,t){if("object"!=typeof e)throw new Error("Invalid input object.");var r=(t=s(t)).length;if(1===r)return e;for(var n=1;n=e.length)return;for(;e.lengthr&&(e[t]=r)}else e[t]=r},$max:function(e,t,r){if("number"!=typeof r)throw l("Modifier $max allowed for numbers only",{field:t});if(t in e){if("number"!=typeof e[t])throw l("Cannot apply $max modifier to non-number",{field:t});e[t]"}if(C(n))return 0===n.length?"[]":"[ "+L(n,c).join(", ")+" ]";if("[object Error]"===I(n)){var b=L(n,c);return 0===b.length?"["+String(n)+"]":"{ ["+String(n)+"] "+b.join(", ")+" }"}if("object"==typeof n){if(P&&"function"==typeof n[P])return n[P]();if("function"==typeof n.inspect)return n.inspect()}if(function(e){if(!m||!e||"object"!=typeof e)return!1;try{m.call(e);try{w.call(e)}catch(e){return!0}return e instanceof Map}catch(e){}return!1}(n)){var y=[];return g.call(n,function(e,t){y.push(c(t,n)+" => "+c(e,n))}),B("Map",m.call(n),y)}if(function(e){if(!w||!e||"object"!=typeof e)return!1;try{w.call(e);try{m.call(e)}catch(e){return!0}return e instanceof Set}catch(e){}return!1}(n)){var v=[];return x.call(n,function(e){v.push(c(e,n))}),B("Set",w.call(n),v)}if(function(e){if(!O||!e||"object"!=typeof e)return!1;try{O.call(e,O);try{j.call(e,j)}catch(e){return!0}return e instanceof WeakMap}catch(e){}return!1}(n))return N("WeakMap");if(function(e){if(!j||!e||"object"!=typeof e)return!1;try{j.call(e,j);try{O.call(e,O)}catch(e){return!0}return e instanceof WeakSet}catch(e){}return!1}(n))return N("WeakSet");if("[object Number]"===I(n))return T(c(Number(n)));if("[object BigInt]"===I(n))return T(c(k.call(n)));if("[object Boolean]"===I(n))return T(S.call(n));if("[object String]"===I(n))return T(c(String(n)));if("[object Date]"===I(n)||"[object RegExp]"===I(n))return String(n);var _=L(n,c);return 0===_.length?"{}":"{ "+_.join(", ")+" }"};var c=Object.prototype.hasOwnProperty||function(e){return e in this};function M(e,t){return c.call(e,t)}function I(e){return u.call(e)}function D(e){var t=e.charCodeAt(0),r={8:"b",9:"t",10:"n",12:"f",13:"r"}[t];return r?"\\"+r:"\\x"+(t<16?"0":"")+t.toString(16)}function T(e){return"Object("+e+")"}function N(e){return e+" { ? }"}function B(e,t,r){return e+" ("+t+") {"+r.join(", ")+"}"}function L(e,t){var r=C(e),n=[];if(r){n.length=e.length;for(var o=0;ot.length?1:-1}(e,t):function(e,t){for(var r=Object.keys(e),n=Object.keys(t),o=Math.min(r.length,n.length),i=0;in.length?1:-1}(e,t)}function s(e){switch(typeof e){case"undefined":return null;case"number":return e===1/0||e===-1/0||isNaN(e)?null:e;case"object":var t=e;if(Array.isArray(e)){var r=e.length;e=new Array(r);for(var n=0;nn.since&&!n.cancelled&&(n.since=e.seq,n.onChange(e))}).on("complete",function(){"waiting"===i&&a(s),i=!1}).on("error",function(){i=!1})}}},j.prototype.removeListener=function(e,t){t in this._listeners&&(i.EventEmitter.prototype.removeListener.call(this,e,this._listeners[t]),delete this._listeners[t])},j.prototype.notifyLocalWindows=function(e){O()&&(localStorage[e]="a"===localStorage[e]?"b":"a")},j.prototype.notify=function(e){this.emit(e),this.notifyLocalWindows(e)};var E="function"==typeof Object.assign?Object.assign:function(e){for(var t=Object(e),r=1;r=r.length)){var n,e=Math.min(s+6,r.length),t=r.slice(s,e);n=s,t.forEach(function(i,e){var s=n+e,t=c.get(i),r=m(t[0],["atts_since","attachments"]);r.open_revs=t.map(function(e){return e.rev}),r.open_revs=r.open_revs.filter(w);var u=w;0===r.open_revs.length&&(delete r.open_revs,u=x),["revs","attachments","binary","ajax","latest"].forEach(function(e){e in a&&(r[e]=a[e])}),o.get(i,r,function(e,t){var r,n,o;r=e?[{error:e}]:u(t),n=i,o=r,l[s]={id:n,docs:o},f(),p()})}),s+=t.length}}p()},r.changesHandler=j,r.clone=y,r.defaultBackOff=function(e){var t,r,n=0;return e||(n=2e3),t=e,r=n,t=parseInt(t,10)||0,(r=parseInt(r,10))!=r||r<=t?r=(t||1)<<1:r+=1,6e5c&&u.push(e)}),j.traverseRevTree(t,function(e,t,r,n,o){var i=t+"-"+r;"available"===o.status&&-1!==u.indexOf(i)&&a.push(i)}),f._doCompaction(o,a,l)})}),v.prototype.compact=l.adapterFun("compact",function(e,t){"function"==typeof e&&(t=e,e={});e=e||{},this._compactionQueue=this._compactionQueue||[],this._compactionQueue.push({opts:e,callback:t}),1===this._compactionQueue.length&&function r(n){var e=n._compactionQueue[0],t=e.opts,o=e.callback;n.get("_local/compaction").catch(function(){return!1}).then(function(e){e&&e.last_seq&&(t.last_seq=e.last_seq),n._compact(t,function(e,t){e?o(e):o(null,t),l.nextTick(function(){n._compactionQueue.shift(),n._compactionQueue.length&&r(n)})})})}(this)}),v.prototype._compact=function(e,r){var n=this,t={return_docs:!1,last_seq:e.last_seq||0},o=[];n.changes(t).on("change",function(e){o.push(n.compactDocument(e.id,0))}).on("complete",function(e){var t=e.last_seq;Promise.all(o).then(function(){return l.upsert(n,"_local/compaction",function(e){return(!e.last_seq||e.last_seqs.length)&&g(i,s)),o=g(r,e);return n&&o}var i,s;return function(e,t){e=e.slice();for(var r=0,n=t.length;r=s.length?i:s,0===s.length?{fields:o}:{fields:o=o.sort(function(e,t){var r=s.indexOf(e);-1===r&&(r=Number.MAX_VALUE);var n=s.indexOf(t);return-1===n&&(n=Number.MAX_VALUE),rt.length;)s.pop();if(0r.$gte&&(r.$gte=t):t>=r.$gte&&(delete r.$gte,r.$gt=t):void 0!==r.$gt?"$gte"===e?t>r.$gt&&(delete r.$gt,r.$gte=t):t>r.$gt&&(r.$gt=t):r[e]=t}(e,i,u):"$lt"===e||"$lte"===e?function(e,t,r){if(void 0!==r.$eq)return;void 0!==r.$lte?"$lte"===e?t>>1],t)<0?o=1+n:i=n;return o}(e,t,r);e.splice(n,0,t)}function b(e,t){for(var r,n,o=t,i=e.length;ot){n=n||{};var l=c.length-t;u={pos:a.pos+l,ids:b(c,l)};for(var f=0;f=t)&&(c.push(l),l={seq:0,changes:[],docs:[]},"pending"!==s.state&&"stopped"!==s.state||(s.state="active",s.emit("active")),E()):0!==c.length||a||((b&&x.live||p)&&(s.state="pending",s.emit("paused")),p&&A())}function P(e,t){h||(t.message||(t.message=e),u.ok=!1,u.status="aborting",c=[],l={seq:0,changes:[],docs:[]},A(t))}function A(e){if(!(h||s.cancelled&&(u.status="cancelled",f)))if(u.status=u.status||"complete",u.end_time=(new Date).toISOString(),u.last_seq=d,h=!0,e){(e=L.createError(e)).result=u;var t=(e.name||"").toLowerCase();"unauthorized"===t||"forbidden"===t?(s.emit("error",e),s.removeAllListeners()):function(e,t,r,n){if(!1===e.retry)return t.emit("error",r),t.removeAllListeners();if("function"!=typeof e.back_off_function&&(e.back_off_function=q.defaultBackOff),t.emit("requestError",r),"active"===t.state||"pending"===t.state){t.emit("paused",r),t.state="stopped";var o=function(){e.current_back_off=$};t.once("paused",function(){t.removeListener("active",o)}),t.once("active",o)}e.current_back_off=e.current_back_off||$,e.current_back_off=e.back_off_function(e.current_back_off),setTimeout(n,e.current_back_off)}(i,s,e,function(){U(n,o,i,s)})}else s.emit("complete",u),s.removeAllListeners()}function C(e,t,r){if(s.cancelled)return A();"number"==typeof t&&(l.pending=t),q.filterChange(i)(e)&&(l.seq=e.seq||r,l.changes.push(e),q.nextTick(function(){k(0===c.length&&x.live)}))}function R(e){if(v=!1,s.cancelled)return A();if(0r.$gte&&(r.$gte=t):t>=r.$gte&&(delete r.$gte,r.$gt=t):void 0!==r.$gt?"$gte"===e?t>r.$gt&&(delete r.$gt,r.$gte=t):t>r.$gt&&(r.$gt=t):r[e]=t}(e,i,u):"$lt"===e||"$lte"===e?function(e,t,r){if(void 0!==r.$eq)return;void 0!==r.$lte?"$lte"===e?tn.since&&!n.cancelled&&(n.since=e.seq,n.onChange(e))}).on("complete",function(){"waiting"===i&&a(s),i=!1}).on("error",function(){i=!1})}}},O.prototype.removeListener=function(e,t){t in this._listeners&&(c.EventEmitter.prototype.removeListener.call(this,e,this._listeners[t]),delete this._listeners[t])},O.prototype.notifyLocalWindows=function(e){x()&&(localStorage[e]="a"===localStorage[e]?"b":"a")},O.prototype.notify=function(e){this.emit(e),this.notifyLocalWindows(e)};var S="function"==typeof Object.assign?Object.assign:function(e){for(var t=Object(e),r=1;r=r.length)){var n,e=Math.min(s+6,r.length),t=r.slice(s,e);n=s,t.forEach(function(i,e){var s=n+e,t=c.get(i),r=_(t[0],["atts_since","attachments"]);r.open_revs=t.map(function(e){return e.rev}),r.open_revs=r.open_revs.filter(g);var u=g;0===r.open_revs.length&&(delete r.open_revs,u=w),["revs","attachments","binary","ajax","latest"].forEach(function(e){e in a&&(r[e]=a[e])}),o.get(i,r,function(e,t){var r,n,o;r=e?[{error:e}]:u(t),n=i,o=r,l[s]={id:n,docs:o},f(),p()})}),s+=t.length}}p()},r.changesHandler=O,r.clone=b,r.defaultBackOff=function(e){var t,r,n=0;return e||(n=2e3),t=e,r=n,t=parseInt(t,10)||0,(r=parseInt(r,10))!=r||r<=t?r=(t||1)<<1:r+=1,6e5this._bufferSize&&t.shift(),i.prototype.next.call(this,e)},h.prototype.nextTimeWindow=function(e){this._events.push(new d(this._getNow(),e)),this._trimBufferThenGetEvents(),i.prototype.next.call(this,e)},h.prototype._subscribe=function(e){var t,r=this._infiniteTimeWindow,n=r?this._events:this._trimBufferThenGetEvents(),o=this.scheduler,i=n.length;if(this.closed)throw new l.ObjectUnsubscribedError;if(t=this.isStopped||this.hasError?a.Subscription.EMPTY:(this.observers.push(e),new f.SubjectSubscription(this,e)),o&&e.add(e=new c.ObserveOnSubscriber(e,o)),r)for(var s=0;s=o){e.complete();break}if(e.next(r++),e.closed)break}})},r.dispatch=u},{"../Observable":507}],541:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("../Observable");function o(e){var t=e.error;e.subscriber.error(t)}r.throwError=function(t,r){return r?new n.Observable(function(e){return r.schedule(o,0,{error:t,subscriber:e})}):new n.Observable(function(e){return e.error(t)})}},{"../Observable":507}],542:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i=e("../Observable"),s=e("../scheduler/async"),u=e("../util/isNumeric"),a=e("../util/isScheduler");function c(e){var t=e.index,r=e.period,n=e.subscriber;if(n.next(t),!n.closed){if(-1===r)return n.complete();e.index=t+1,this.schedule(e,r)}}r.timer=function(r,e,n){void 0===r&&(r=0);var o=-1;return u.isNumeric(e)?o=Number(e)<1?1:Number(e):a.isScheduler(e)&&(n=e),a.isScheduler(n)||(n=s.async),new i.Observable(function(e){var t=u.isNumeric(r)?r:r-n.now();return n.schedule(c,t,{index:0,period:o,subscriber:e})})}},{"../Observable":507,"../scheduler/async":665,"../util/isNumeric":685,"../util/isScheduler":689}],543:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("../Observable"),s=e("./from"),u=e("./empty");r.using=function(o,i){return new n.Observable(function(t){var e,r;try{e=o()}catch(e){return void t.error(e)}try{r=i(e)}catch(e){return void t.error(e)}var n=(r?s.from(r):u.EMPTY).subscribe(t);return function(){n.unsubscribe(),e&&e.unsubscribe()}})}},{"../Observable":507,"./empty":524,"./from":526}],544:[function(e,t,r){"use strict";var n,o=this&&this.__extends||(n=function(e,t){return(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(e,t)},function(e,t){function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)});Object.defineProperty(r,"__esModule",{value:!0});var i=e("./fromArray"),s=e("../util/isArray"),u=e("../Subscriber"),a=e("../OuterSubscriber"),c=e("../util/subscribeToResult"),l=e("../../internal/symbol/iterator");r.zip=function(){for(var e=[],t=0;tthis.index},m.prototype.hasCompleted=function(){return this.array.length===this.index},m);function m(e){this.array=e,this.index=0,this.length=0,this.length=e.length}var g,w=(g=a.OuterSubscriber,o(x,g),x.prototype[l.iterator]=function(){return this},x.prototype.next=function(){var e=this.buffer;return 0===e.length&&this.isComplete?{value:null,done:!0}:{value:e.shift(),done:!1}},x.prototype.hasValue=function(){return 0this.total&&this.destination.next(e)},l);function l(e,t){var r=a.call(this,e)||this;return r.total=t,r.count=0,r}},{"../Subscriber":514}],619:[function(e,t,r){"use strict";var n,o=this&&this.__extends||(n=function(e,t){return(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(e,t)},function(e,t){function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)});Object.defineProperty(r,"__esModule",{value:!0});var i=e("../Subscriber"),s=e("../util/ArgumentOutOfRangeError");r.skipLast=function(t){return function(e){return e.lift(new u(t))}};var u=(a.prototype.call=function(e,t){return 0===this._skipCount?t.subscribe(new i.Subscriber(e)):t.subscribe(new l(e,this._skipCount))},a);function a(e){if(this._skipCount=e,this._skipCount<0)throw new s.ArgumentOutOfRangeError}var c,l=(c=i.Subscriber,o(f,c),f.prototype._next=function(e){var t=this._skipCount,r=this._count++;if(r=this.total?this.total:this.count,n=this.ring,o=0;o=this.maxWindowSize&&this.closeWindow(o))}},v.prototype._error=function(e){for(var t=this.windows;0t.index?1:-1:e.delay>t.delay?1:-1},p);function p(e,t,r){void 0===r&&(r=e.index+=1);var n=l.call(this,e,t)||this;return n.scheduler=e,n.work=t,n.index=r,n.active=!0,n.index=e.index=r,n}r.VirtualAction=f},{"./AsyncAction":658,"./AsyncScheduler":659}],663:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./AnimationFrameAction"),o=e("./AnimationFrameScheduler");r.animationFrame=new o.AnimationFrameScheduler(n.AnimationFrameAction)},{"./AnimationFrameAction":654,"./AnimationFrameScheduler":655}],664:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./AsapAction"),o=e("./AsapScheduler");r.asap=new o.AsapScheduler(n.AsapAction)},{"./AsapAction":656,"./AsapScheduler":657}],665:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./AsyncAction"),o=e("./AsyncScheduler");r.async=new o.AsyncScheduler(n.AsyncAction)},{"./AsyncAction":658,"./AsyncScheduler":659}],666:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./QueueAction"),o=e("./QueueScheduler");r.queue=new o.QueueScheduler(n.QueueAction)},{"./QueueAction":660,"./QueueScheduler":661}],667:[function(e,t,r){"use strict";function n(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}Object.defineProperty(r,"__esModule",{value:!0}),r.getSymbolIterator=n,r.iterator=n(),r.$$iterator=r.iterator},{}],668:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.observable="function"==typeof Symbol&&Symbol.observable||"@@observable"},{}],669:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.rxSubscriber="function"==typeof Symbol?Symbol("rxSubscriber"):"@@rxSubscriber_"+Math.random(),r.$$rxSubscriber=r.rxSubscriber},{}],670:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=(o.prototype=Object.create(Error.prototype),o);function o(){return Error.call(this),this.message="argument out of range",this.name="ArgumentOutOfRangeError",this}r.ArgumentOutOfRangeError=n},{}],671:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=(o.prototype=Object.create(Error.prototype),o);function o(){return Error.call(this),this.message="no elements in sequence",this.name="EmptyError",this}r.EmptyError=n},{}],672:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=1,o={};r.Immediate={setImmediate:function(e){var t=n++;return o[t]=e,Promise.resolve().then(function(){var e;(e=o[t])&&e()}),t},clearImmediate:function(e){delete o[e]}}},{}],673:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=(o.prototype=Object.create(Error.prototype),o);function o(){return Error.call(this),this.message="object unsubscribed",this.name="ObjectUnsubscribedError",this}r.ObjectUnsubscribedError=n},{}],674:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=(o.prototype=Object.create(Error.prototype),o);function o(){return Error.call(this),this.message="Timeout has occurred",this.name="TimeoutError",this}r.TimeoutError=n},{}],675:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=(o.prototype=Object.create(Error.prototype),o);function o(e){return Error.call(this),this.message=e?e.length+" errors occurred during unsubscription:\n"+e.map(function(e,t){return t+1+") "+e.toString()}).join("\n "):"",this.name="UnsubscriptionError",this.errors=e,this}r.UnsubscriptionError=n},{}],676:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=e("../Subscriber");r.canReportError=function(e){for(;e;){var t=e.closed,r=e.destination,n=e.isStopped;if(t||n)return!1;e=r&&r instanceof o.Subscriber?r:null}return!0}},{"../Subscriber":514}],677:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.hostReportError=function(e){setTimeout(function(){throw e},0)}},{}],678:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.identity=function(e){return e}},{}],679:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isArray=Array.isArray||function(e){return e&&"number"==typeof e.length}},{}],680:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isArrayLike=function(e){return e&&"number"==typeof e.length&&"function"!=typeof e}},{}],681:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isDate=function(e){return e instanceof Date&&!isNaN(+e)}},{}],682:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isFunction=function(e){return"function"==typeof e}},{}],683:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("../symbol/observable");r.isInteropObservable=function(e){return e&&"function"==typeof e[n.observable]}},{"../symbol/observable":668}],684:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("../symbol/iterator");r.isIterable=function(e){return e&&"function"==typeof e[n.iterator]}},{"../symbol/iterator":667}],685:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./isArray");r.isNumeric=function(e){return!n.isArray(e)&&0<=e-parseFloat(e)+1}},{"./isArray":679}],686:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isObject=function(e){return null!==e&&"object"==typeof e}},{}],687:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("../Observable");r.isObservable=function(e){return!!e&&(e instanceof n.Observable||"function"==typeof e.lift&&"function"==typeof e.subscribe)}},{"../Observable":507}],688:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isPromise=function(e){return!!e&&"function"!=typeof e.subscribe&&"function"==typeof e.then}},{}],689:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isScheduler=function(e){return e&&"function"==typeof e.schedule}},{}],690:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.noop=function(){}},{}],691:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.not=function(e,t){function r(){return!r.pred.apply(r.thisArg,arguments)}return r.pred=e,r.thisArg=t,r}},{}],692:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./noop");function o(t){return t?1===t.length?t[0]:function(e){return t.reduce(function(e,t){return t(e)},e)}:n.noop}r.pipe=function(){for(var e=[],t=0;t>>25)+n|0)&n|~r&o)+t[1]-389564586|0)<<12|i>>>20)+r|0)&r|~i&n)+t[2]+606105819|0)<<17|o>>>15)+i|0)&i|~o&r)+t[3]-1044525330|0)<<22|n>>>10)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&o|~n&i)+t[4]-176418897|0)<<7|r>>>25)+n|0)&n|~r&o)+t[5]+1200080426|0)<<12|i>>>20)+r|0)&r|~i&n)+t[6]-1473231341|0)<<17|o>>>15)+i|0)&i|~o&r)+t[7]-45705983|0)<<22|n>>>10)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&o|~n&i)+t[8]+1770035416|0)<<7|r>>>25)+n|0)&n|~r&o)+t[9]-1958414417|0)<<12|i>>>20)+r|0)&r|~i&n)+t[10]-42063|0)<<17|o>>>15)+i|0)&i|~o&r)+t[11]-1990404162|0)<<22|n>>>10)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&o|~n&i)+t[12]+1804603682|0)<<7|r>>>25)+n|0)&n|~r&o)+t[13]-40341101|0)<<12|i>>>20)+r|0)&r|~i&n)+t[14]-1502002290|0)<<17|o>>>15)+i|0)&i|~o&r)+t[15]+1236535329|0)<<22|n>>>10)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&i|o&~i)+t[1]-165796510|0)<<5|r>>>27)+n|0)&o|n&~o)+t[6]-1069501632|0)<<9|i>>>23)+r|0)&n|r&~n)+t[11]+643717713|0)<<14|o>>>18)+i|0)&r|i&~r)+t[0]-373897302|0)<<20|n>>>12)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&i|o&~i)+t[5]-701558691|0)<<5|r>>>27)+n|0)&o|n&~o)+t[10]+38016083|0)<<9|i>>>23)+r|0)&n|r&~n)+t[15]-660478335|0)<<14|o>>>18)+i|0)&r|i&~r)+t[4]-405537848|0)<<20|n>>>12)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&i|o&~i)+t[9]+568446438|0)<<5|r>>>27)+n|0)&o|n&~o)+t[14]-1019803690|0)<<9|i>>>23)+r|0)&n|r&~n)+t[3]-187363961|0)<<14|o>>>18)+i|0)&r|i&~r)+t[8]+1163531501|0)<<20|n>>>12)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&i|o&~i)+t[13]-1444681467|0)<<5|r>>>27)+n|0)&o|n&~o)+t[2]-51403784|0)<<9|i>>>23)+r|0)&n|r&~n)+t[7]+1735328473|0)<<14|o>>>18)+i|0)&r|i&~r)+t[12]-1926607734|0)<<20|n>>>12)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n^o^i)+t[5]-378558|0)<<4|r>>>28)+n|0)^n^o)+t[8]-2022574463|0)<<11|i>>>21)+r|0)^r^n)+t[11]+1839030562|0)<<16|o>>>16)+i|0)^i^r)+t[14]-35309556|0)<<23|n>>>9)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n^o^i)+t[1]-1530992060|0)<<4|r>>>28)+n|0)^n^o)+t[4]+1272893353|0)<<11|i>>>21)+r|0)^r^n)+t[7]-155497632|0)<<16|o>>>16)+i|0)^i^r)+t[10]-1094730640|0)<<23|n>>>9)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n^o^i)+t[13]+681279174|0)<<4|r>>>28)+n|0)^n^o)+t[0]-358537222|0)<<11|i>>>21)+r|0)^r^n)+t[3]-722521979|0)<<16|o>>>16)+i|0)^i^r)+t[6]+76029189|0)<<23|n>>>9)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n^o^i)+t[9]-640364487|0)<<4|r>>>28)+n|0)^n^o)+t[12]-421815835|0)<<11|i>>>21)+r|0)^r^n)+t[15]+530742520|0)<<16|o>>>16)+i|0)^i^r)+t[2]-995338651|0)<<23|n>>>9)+o|0,n=((n+=((i=((i+=(n^((r=((r+=(o^(n|~i))+t[0]-198630844|0)<<6|r>>>26)+n|0)|~o))+t[7]+1126891415|0)<<10|i>>>22)+r|0)^((o=((o+=(r^(i|~n))+t[14]-1416354905|0)<<15|o>>>17)+i|0)|~r))+t[5]-57434055|0)<<21|n>>>11)+o|0,n=((n+=((i=((i+=(n^((r=((r+=(o^(n|~i))+t[12]+1700485571|0)<<6|r>>>26)+n|0)|~o))+t[3]-1894986606|0)<<10|i>>>22)+r|0)^((o=((o+=(r^(i|~n))+t[10]-1051523|0)<<15|o>>>17)+i|0)|~r))+t[1]-2054922799|0)<<21|n>>>11)+o|0,n=((n+=((i=((i+=(n^((r=((r+=(o^(n|~i))+t[8]+1873313359|0)<<6|r>>>26)+n|0)|~o))+t[15]-30611744|0)<<10|i>>>22)+r|0)^((o=((o+=(r^(i|~n))+t[6]-1560198380|0)<<15|o>>>17)+i|0)|~r))+t[13]+1309151649|0)<<21|n>>>11)+o|0,n=((n+=((i=((i+=(n^((r=((r+=(o^(n|~i))+t[4]-145523070|0)<<6|r>>>26)+n|0)|~o))+t[11]-1120210379|0)<<10|i>>>22)+r|0)^((o=((o+=(r^(i|~n))+t[2]+718787259|0)<<15|o>>>17)+i|0)|~r))+t[9]-343485551|0)<<21|n>>>11)+o|0,e[0]=r+e[0]|0,e[1]=n+e[1]|0,e[2]=o+e[2]|0,e[3]=i+e[3]|0}function f(e){var t,r=[];for(t=0;t<64;t+=4)r[t>>2]=e.charCodeAt(t)+(e.charCodeAt(t+1)<<8)+(e.charCodeAt(t+2)<<16)+(e.charCodeAt(t+3)<<24);return r}function p(e){var t,r=[];for(t=0;t<64;t+=4)r[t>>2]=e[t]+(e[t+1]<<8)+(e[t+2]<<16)+(e[t+3]<<24);return r}function o(e){var t,r,n,o,i,s,u=e.length,a=[1732584193,-271733879,-1732584194,271733878];for(t=64;t<=u;t+=64)l(a,f(e.substring(t-64,t)));for(r=(e=e.substring(t-64)).length,n=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],t=0;t>2]|=e.charCodeAt(t)<<(t%4<<3);if(n[t>>2]|=128<<(t%4<<3),55>8*t+4&15]+n[e>>8*t&15];return r}function s(e){var t;for(t=0;t>16)+(t>>16)+(r>>16)<<16|65535&r},"undefined"==typeof ArrayBuffer||ArrayBuffer.prototype.slice||(ArrayBuffer.prototype.slice=function(e,t){var r,n,o,i,s=this.byteLength,u=h(e,s),a=s;return t!==c&&(a=h(t,s)),a>2]|=n.charCodeAt(t)<<(t%4<<3);return this._finish(i,o),r=s(this._hash),e&&(r=u(r)),this.reset(),r},a.prototype.reset=function(){return this._buff="",this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},a.prototype.getState=function(){return{buff:this._buff,length:this._length,hash:this._hash}},a.prototype.setState=function(e){return this._buff=e.buff,this._length=e.length,this._hash=e.hash,this},a.prototype.destroy=function(){delete this._hash,delete this._buff,delete this._length},a.prototype._finish=function(e,t){var r,n,o,i=t;if(e[i>>2]|=128<<(i%4<<3),55>2]|=n[t]<<(t%4<<3);return this._finish(i,o),r=s(this._hash),e&&(r=u(r)),this.reset(),r},a.ArrayBuffer.prototype.reset=function(){return this._buff=new Uint8Array(0),this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},a.ArrayBuffer.prototype.getState=function(){var e,t=a.prototype.getState.call(this);return t.buff=(e=t.buff,String.fromCharCode.apply(null,new Uint8Array(e))),t},a.ArrayBuffer.prototype.setState=function(e){return e.buff=function(e,t){var r,n=e.length,o=new ArrayBuffer(n),i=new Uint8Array(o);for(r=0;r>2]|=e[t]<<(t%4<<3);if(n[t>>2]|=128<<(t%4<<3),55>>((3&t)<<3)&255;return i}}},{}],708:[function(e,t,r){var d,b,y=e("./lib/rng"),v=e("./lib/bytesToUuid"),_=0,m=0;t.exports=function(e,t,r){var n=t&&r||0,o=t||[],i=(e=e||{}).node||d,s=void 0!==e.clockseq?e.clockseq:b;if(null==i||null==s){var u=y();null==i&&(i=d=[1|u[0],u[1],u[2],u[3],u[4],u[5]]),null==s&&(s=b=16383&(u[6]<<8|u[7]))}var a=void 0!==e.msecs?e.msecs:(new Date).getTime(),c=void 0!==e.nsecs?e.nsecs:m+1,l=a-_+(c-m)/1e4;if(l<0&&void 0===e.clockseq&&(s=s+1&16383),(l<0||_>>24&255,o[n++]=f>>>16&255,o[n++]=f>>>8&255,o[n++]=255&f;var p=a/4294967296*1e4&268435455;o[n++]=p>>>8&255,o[n++]=255&p,o[n++]=p>>>24&15|16,o[n++]=p>>>16&255,o[n++]=s>>>8|128,o[n++]=255&s;for(var h=0;h<6;++h)o[n+h]=i[h];return t||v(o)}},{"./lib/bytesToUuid":706,"./lib/rng":707}],709:[function(e,t,r){var s=e("./lib/rng"),u=e("./lib/bytesToUuid");t.exports=function(e,t,r){var n=t&&r||0;"string"==typeof e&&(t="binary"===e?new Array(16):null,e=null);var o=(e=e||{}).random||(e.rng||s)();if(o[6]=15&o[6]|64,o[8]=63&o[8]|128,t)for(var i=0;i<16;++i)t[n+i]=o[i];return t||u(o)}},{"./lib/bytesToUuid":706,"./lib/rng":707}],710:[function(e,t,r){"use strict";function h(e,t,r){var n=r[r.length-1];e===n.element&&(r.pop(),n=r[r.length-1]);var o=n.element,i=n.index;if(Array.isArray(o))o.push(e);else if(i===t.length-2){o[t.pop()]=e}else t.push(e)}r.stringify=function(e){var t=[];t.push({obj:e});for(var r,n,o,i,s,u,a,c,l,f,p="";r=t.pop();)if(n=r.obj,p+=r.prefix||"",o=r.val||"")p+=o;else if("object"!=typeof n)p+=void 0===n?null:JSON.stringify(n);else if(null===n)p+="null";else if(Array.isArray(n)){for(t.push({val:"]"}),i=n.length-1;0<=i;i--)s=0===i?"":",",t.push({obj:n[i],prefix:s});t.push({val:"["})}else{for(a in u=[],n)n.hasOwnProperty(a)&&u.push(a);for(t.push({val:"}"}),i=u.length-1;0<=i;i--)l=n[c=u[i]],f=0this.limit;)this.buffer.shift()},t.getArrayIndexByPointer=function(e){var t=this.buffer[0],r=this.eventCounterMap.get(t);return e 2",QU1:"RxQuery._execOverDatabase(): op not known",QU2:"limit() must get a number",QU3:"skip() must get a number",QU4:"RxQuery.regex(): You cannot use .regex() on the primary field",QU5:"RxQuery.sort(): does not work because key is not defined in the schema",QU6:"RxQuery.limit(): cannot be called on .findOne()",QU7:"query must be an object",QU8:"query cannot be an array",MQ1:"path must be a string or object",MQ2:"Invalid argument",MQ3:"Invalid sort() argument. Must be a string, object, or array",MQ4:"Invalid argument. Expected instanceof mquery or plain object",MQ5:"method must be used after where() when called with these arguments",MQ6:"Can't mix sort syntaxes. Use either array or object | .sort([['field', 1], ['test', -1]]) | .sort({ field: 1, test: -1 })",MQ7:"Invalid sort value",MQ8:"Can't mix sort syntaxes. Use either array or object",DB1:"RxDocument.prepare(): another instance on this adapter has a different password",DB2:"RxDatabase.collection(): collection-names cannot start with underscore _",DB3:"RxDatabase.collection(): collection already exists. use myDatabase.[collectionName] to get it",DB4:"RxDatabase.collection(): schema is missing",DB5:"RxDatabase.collection(): collection-name not allowed",DB6:"RxDatabase.collection(): another instance created this collection with a different schema. Read this https://pubkey.github.io/rxdb/questions-answers.html#cant-change-the-schema",DB7:"RxDatabase.collection(): schema encrypted but no password given",DB8:"RxDatabase.create(): A RxDatabase with the same name and adapter already exists.\nMake sure to use this combination only once or set ignoreDuplicate to true if you do this intentional",DB9:"RxDatabase.create(): Adapter not added. Use RxDB.plugin(require('pouchdb-adapter-[adaptername]');",DB10:"RxDatabase.create(): To use leveldown-adapters, you have to add the leveldb-plugin. Use RxDB.plugin(require('pouchdb-adapter-leveldb'));",COL1:"RxDocument.insert() You cannot insert an existing document",COL2:"RxCollection.insert() do not provide ._id when it is not the primary key",COL3:"RxCollection.upsert() does not work without primary",COL4:"RxCollection.atomicUpsert() does not work without primary",COL5:"RxCollection.find() if you want to search by _id, use .findOne(_id)",COL6:"RxCollection.findOne() needs a queryObject or string",COL7:"hook must be a function",COL8:"hooks-when not known",COL9:"RxCollection.addHook() hook-name not known",COL10:"RxCollection .postCreate-hooks cannot be async",COL11:"migrationStrategies must be an object",COL12:"A migrationStrategy is missing or too much",COL13:"migrationStrategy must be a function",COL14:"given static method-name is not a string",COL15:"static method-names cannot start with underscore _",COL16:"given static method is not a function",COL17:"RxCollection.ORM: statics-name not allowed",COL18:"collection-method not allowed because fieldname is in the schema",COL19:"Pouchdb document update conflict",DOC1:"RxDocument.get$ cannot get observable of in-array fields because order cannot be guessed",DOC2:"cannot observe primary path",DOC3:"final fields cannot be observed",DOC4:"RxDocument.get$ cannot observe a non-existed field",DOC5:"RxDocument.populate() cannot populate a non-existed field",DOC6:"RxDocument.populate() cannot populate because path has no ref",DOC7:"RxDocument.populate() ref-collection not in database",DOC8:"RxDocument.set(): primary-key cannot be modified",DOC9:"final fields cannot be modified",DOC10:"RxDocument.set(): cannot set childpath when rootPath not selected",DOC11:"RxDocument.save(): cant save deleted document",DOC12:"RxDocument.save(): error",DOC13:"RxDocument.remove(): Document is already deleted",DOC14:"RxDocument.destroy() does not exist",DOC15:"query cannot be an array",DOC16:"Since version 8.0.0 RxDocument.set() can only be called on temporary RxDocuments",DOC17:"Since version 8.0.0 RxDocument.save() can only be called on non-temporary documents",DM1:"migrate() Migration has already run",DM2:"migration of document failed final document does not match final schema",DM3:"migration already running",AT1:"to use attachments, please define this in your schema",EN1:"password is no string",EN2:"validatePassword: min-length of password not complied",JD1:"You must create the collections before you can import their data",JD2:"RxCollection.importDump(): the imported json relies on a different schema",JD3:"RxCollection.importDump(): json.passwordHash does not match the own",LD1:"RxDocument.allAttachments$ cant use attachments on local documents",LD2:"RxDocument.get(): objPath must be a string",LD3:"RxDocument.get$ cannot get observable of in-array fields because order cannot be guessed",LD4:"cannot observe primary path",LD5:"RxDocument.set() id cannot be modified",LD6:"LocalDocument: Function is not useable on local documents",LD7:"Local document already exists",RC1:"Replication: already added",RC2:"RxCollection.sync() query must be from the same RxCollection",RC3:"RxCollection.sync() Do not use a collection's pouchdb as remote, use the collection instead",SC1:"fieldnames do not match the regex",SC2:"SchemaCheck: name 'item' reserved for array-fields",SC3:"SchemaCheck: fieldname has a ref-array but items-type is not string",SC4:"SchemaCheck: fieldname has a ref but is not type string or array",SC5:"SchemaCheck: fieldname cannot be primary and ref at same time",SC6:"SchemaCheck: primary can only be defined at top-level",SC7:"SchemaCheck: default-values can only be defined at top-level",SC8:"SchemaCheck: first level-fields cannot start with underscore _",SC10:"SchemaCheck: schema defines ._rev, this will be done automatically",SC11:"SchemaCheck: schema needs a number >=0 as version",SC12:"SchemaCheck: primary can only be defined once",SC13:"SchemaCheck: primary is always index, do not declare it as index",SC14:"SchemaCheck: primary is always unique, do not declare it as index",SC15:"SchemaCheck: primary cannot be encrypted",SC16:"SchemaCheck: primary must have type: string",SC17:"SchemaCheck: top-level fieldname is not allowed",SC18:"SchemaCheck: compoundIndexes must be an array",SC19:"SchemaCheck: compoundIndexes must contain arrays",SC20:"SchemaCheck: compoundIndexes.array must contains strings",SC21:"SchemaCheck: given index is not defined in schema",SC22:"SchemaCheck: given indexKey is not type:string",SC23:"SchemaCheck: fieldname is not allowed",SC24:"SchemaCheck: required fields must be set via array. See https://spacetelescope.github.io/understanding-json-schema/reference/object.html#required",VD1:"Sub-schema not found, does the schemaPath exists in your schema?",VD2:"object does not match schema",IM1:"InMemory: Memory-Adapter must be added. Use RxDB.plugin(require('pouchdb-adapter-memory'));",IM2:"inMemoryCollection.sync(): Do not replicate with the in-memory instance. Replicate with the parent instead",S1:"You cannot create collections after calling RxDatabase.server()",QL1:"TODO"},o={},i={tunnelErrorMessage:function(e){if(!n[e])throw console.error("RxDB: Error-Code not known: "+e),new Error("Error-Cdoe "+e+" not known, contact the maintainer");return n[e]}},s={rxdb:r.rxdb=!0,prototypes:r.prototypes=o,overwritable:r.overwritable=i};r.default=s},{}],17:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.replicateExistingDocuments=x,r.setIndexes=O,r.streamChangedDocuments=j,r.applyChangedDocumentToPouch=S,r.spawnInMemory=k,r.default=r.overwritable=r.prototypes=r.rxdb=r.InMemoryRxCollection=void 0;var i=n(e("@babel/runtime/helpers/assertThisInitialized")),s=n(e("@babel/runtime/helpers/inheritsLoose")),u=e("rxjs"),a=e("rxjs/operators"),o=e("../rx-collection"),c=e("../util"),l=n(e("../core")),f=n(e("../crypter")),p=e("../change-event-buffer"),h=e("../rx-schema"),d=e("../pouch-db"),b=e("../rx-error"),y=n(e("../plugins/watch-for-changes"));l.default.plugin(y.default);var v=new WeakMap,_=new WeakMap,m={new_edits:!0},g={new_edits:!1},w=function(o){function e(e){var n,t=1=o.limit,c=o.limit&&t.length>=o.limit;v&&(console.log("QueryChangeDetector.handleSingleChange()"),_(this,"start",e.data.v,"handleSingleChange()"),console.log("changeEvent.data:"),console.dir(e.data),console.log("wasDocInResults: "+s),console.log("doesMatchNow: "+u),console.log("isFilled: "+a),console.log("options:"+JSON.stringify(o)));var l=null,f=null,p=null;if("REMOVE"===e.data.op){if(!s&&!u)return _(this,"R1",i),!1;if(o.skip&&u&&(null===f&&(f=g(r,i,n[0])),f)&&!a)return _(this,"R2",i),n.shift(),n;if(u&&s&&!a)return _(this,"R3",i),n=(0,y.removeOneFromArrayIfMatches)(n,function(e){return e[r.primaryKey]===i[r.primaryKey]});if(1===o.limit&&!u&&s)return _(this,"R3.05",i),!0;if(u&&s&&!o.limit&&!o.skip)return _(this,"R3.1",i),n=(0,y.removeOneFromArrayIfMatches)(n,function(e){return e[r.primaryKey]===i[r.primaryKey]});if(u&&o.limit&&(null===l&&(l=g(r,n[n.length-1],i)),l))return _(this,"R4",i),!1}else{if(!o.skip&&!s&&!u)return _(this,"U1",i),!1;if(!o.skip&&!o.limit&&s&&u){if(function(){if(null===p){var e=(0,y.removeOneFromArrayIfMatches)(t,function(e){return e[r.primaryKey]===i[r.primaryKey]});p=w(r,e,i)}return w}())return _(this,"U2 - resort",i),n=(0,y.removeOneFromArrayIfMatches)(n,function(e){return e[r.primaryKey]===i[r.primaryKey]}),n=(0,b.pushAtSortPosition)(n,i,m(this));_(this,"U2 - no-resort",i);var h=n.find(function(e){return e[r.primaryKey]===i[r.primaryKey]}),d=n.indexOf(h);return n[d]=i,n}if(!o.skip&&!c&&!s&&u)return _(this,"U3",i),n=(0,b.pushAtSortPosition)(n,i,m(this))}return _(this,"NO_MATCH",i),!0},e}();function _(e,t,r,n){var o=2=e.collection._changeEventBuffer.counter}(t))return!1;var r=!1,e=!1;-1===t._latestChangeEvent&&(e=!0);if(!e){var n=t.collection._changeEventBuffer.getFrom(t._latestChangeEvent+1);if(null===n)e=!0;else{t._latestChangeEvent=t.collection._changeEventBuffer.counter;var o=t.collection._changeEventBuffer.reduceByLastOfDoc(n),i=t._queryChangeDetector.runChangeDetection(o);!Array.isArray(i)&&i&&(e=!0),Array.isArray(i)&&!(0,u.default)(i,t._resultsData)&&(r=!0,t._setResultData(i))}}if(e){var s=t.collection._changeEventBuffer.counter;return t._execOverDatabase().then(function(e){return t._latestChangeEvent=s,(0,u.default)(e,t._resultsData)||(r=!0,t._setResultData(e)),r})}return r}(e)}).then(function(e){return new Promise(function(e){return setTimeout(e,0)}).then(function(){return e})}),e._ensureEqualQueue}},{"./hooks":7,"./mquery/mquery":9,"./query-change-detector":29,"./rx-document-prototype-merge":34,"./rx-error":36,"./util":52,"@babel/runtime/helpers/createClass":57,"@babel/runtime/helpers/interopRequireDefault":60,"deep-equal":403,"pouchdb-selector-core":492,rxjs:502,"rxjs/operators":700}],38:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.getEncryptedPaths=p,r.hasCrypt=h,r.getIndexes=d,r.getPrimary=b,r.getPreviousVersions=function(e){var t=e.version?e.version:0,r=0;return new Array(t).fill(0).map(function(){return r++})},r.getFinalFields=y,r.normalize=v,r.createRxSchema=function(e){1>>0],t))<0)s=n+1;else{if(!(0>16&255,s[u++]=t>>8&255,s[u++]=255&t;2===i&&(t=c[e.charCodeAt(r)]<<2|c[e.charCodeAt(r+1)]>>4,s[u++]=255&t);1===i&&(t=c[e.charCodeAt(r)]<<10|c[e.charCodeAt(r+1)]<<4|c[e.charCodeAt(r+2)]>>2,s[u++]=t>>8&255,s[u++]=255&t);return s},r.fromByteArray=function(e){for(var t,r=e.length,n=r%3,o=[],i=0,s=r-n;i>2]+u[t<<4&63]+"==")):2==n&&(t=(e[r-2]<<8)+e[r-1],o.push(u[t>>10]+u[t>>4&63]+u[t<<2&63]+"="));return o.join("")};for(var u=[],c=[],l="undefined"!=typeof Uint8Array?Uint8Array:Array,n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0,i=n.length;o>18&63]+u[o>>12&63]+u[o>>6&63]+u[63&o]);return i.join("")}c["-".charCodeAt(0)]=62,c["_".charCodeAt(0)]=63},{}],69:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.clearNodeFolder=function(e){e=(0,u.fillOptionsWithDefaults)(e);var t=(0,s.chooseMethod)(e);return"node"===t.type?t.clearNodeFolder().then(function(){return!0}):Promise.resolve(!1)},r.enforceOptions=function(e){o=e},r.BroadcastChannel=void 0;function n(e,t){var r,n;this.name=e,o&&(t=o),this.options=(0,u.fillOptionsWithDefaults)(t),this.method=(0,s.chooseMethod)(this.options),this._iL=!1,this._onML=null,this._addEL={message:[],internal:[]},this._befC=[],this._prepP=null,n=(r=this).method.create(r.name,r.options),(0,i.isPromise)(n)?(r._prepP=n).then(function(e){r._state=e}):r._state=n}var o,i=e("./util.js"),s=e("./method-chooser.js"),u=e("./options.js");function a(e,t,r){var n={time:e.method.microSeconds(),type:t,data:r};return(e._prepP?e._prepP:Promise.resolve()).then(function(){return e.method.postMessage(e._state,n)})}function c(e){return 0=e.time&&e.fn(t.data)})},r=e.method.microSeconds();e._prepP?e._prepP.then(function(){e._iL=!0,e.method.onMessage(e._state,t,r)}):(e._iL=!0,e.method.onMessage(e._state,t,r))}}(e)}function f(e,t,r){e._addEL[t]=e._addEL[t].filter(function(e){return e!==r}),function(e){if(e._iL&&!c(e)){e._iL=!1;var t=e.method.microSeconds();e.method.onMessage(e._state,null,t)}}(e)}(r.BroadcastChannel=n)._pubkey=!0,n.prototype={postMessage:function(e){if(this.closed)throw new Error("BroadcastChannel.postMessage(): Cannot post message after channel has closed");return a(this,"message",e)},postInternal:function(e){return a(this,"internal",e)},set onmessage(e){var t={time:this.method.microSeconds(),fn:e};f(this,"message",this._onML),e&&"function"==typeof e?(this._onML=t,l(this,"message",t)):this._onML=null},addEventListener:function(e,t){var r=this.method.microSeconds();l(this,e,{time:r,fn:t})},removeEventListener:function(e,t){var r=this._addEL[e].find(function(e){return e.fn===t});f(this,e,r)},close:function(){var e=this;if(!this.closed){this.closed=!0;var t=this._prepP?this._prepP:Promise.resolve();return this._onML=null,this._addEL.message=[],t.then(function(){return Promise.all(e._befC.map(function(e){return e()}))}).then(function(){return e.method.close(e._state)})}},get type(){return this.method.type}}},{"./method-chooser.js":73,"./options.js":79,"./util.js":80}],70:[function(e,t,r){"use strict";var n=e("./index.js");t.exports={BroadcastChannel:n.BroadcastChannel,createLeaderElection:n.createLeaderElection,clearNodeFolder:n.clearNodeFolder,enforceOptions:n.enforceOptions}},{"./index.js":71}],71:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"BroadcastChannel",{enumerable:!0,get:function(){return n.BroadcastChannel}}),Object.defineProperty(r,"clearNodeFolder",{enumerable:!0,get:function(){return n.clearNodeFolder}}),Object.defineProperty(r,"enforceOptions",{enumerable:!0,get:function(){return n.enforceOptions}}),Object.defineProperty(r,"createLeaderElection",{enumerable:!0,get:function(){return o.createLeaderElection}});var n=e("./broadcast-channel"),o=e("./leader-election")},{"./broadcast-channel":69,"./leader-election":72}],72:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.createLeaderElection=function(e,t){if(e._leaderElector)throw new Error("BroadcastChannel already has a leader-elector");t=function(e,t){e=e||{};(e=JSON.parse(JSON.stringify(e))).fallbackInterval||(e.fallbackInterval=3e3);e.responseTime||(e.responseTime=t.method.averageResponseTime(t.options));return e}(t,e);var r=new o(e,t);return e._befC.push(function(){return r.die()}),e._leaderElector=r};var i=e("./util.js"),s=n(e("unload")),o=function(e,t){this._channel=e,this._options=t,this.isLeader=!1,this.isDead=!1,this.token=(0,i.randomToken)(),this._isApl=!1,this._reApply=!1,this._unl=[],this._lstns=[],this._invs=[]};function u(e,t){var r={context:"leader",action:t,token:e.token};return e._channel.postInternal(r)}o.prototype={applyOnce:function(){var t=this;if(this.isLeader)return Promise.resolve(!1);if(this.isDead)return Promise.resolve(!1);if(this._isApl)return this._reApply=!0,Promise.resolve(!1);function r(e){"leader"===e.context&&e.token!=t.token&&(o.push(e),"apply"===e.action&&e.token>t.token&&(n=!0),"tell"===e.action&&(n=!0))}var n=!(this._isApl=!0),o=[];return this._channel.addEventListener("internal",r),u(this,"apply").then(function(){return(0,i.sleep)(t._options.responseTime)}).then(function(){return n?Promise.reject(new Error):u(t,"apply")}).then(function(){return(0,i.sleep)(t._options.responseTime)}).then(function(){return n?Promise.reject(new Error):u(t)}).then(function(){return function(t){t.isLeader=!0;var e=s.default.add(function(){return t.die()});t._unl.push(e);function r(e){"leader"===e.context&&"apply"===e.action&&u(t,"tell")}return t._channel.addEventListener("internal",r),t._lstns.push(r),u(t,"tell")}(t)}).then(function(){return!0}).catch(function(){return!1}).then(function(e){return t._channel.removeEventListener("internal",r),t._isApl=!1,!e&&t._reApply?(t._reApply=!1,t.applyOnce()):e})},awaitLeadership:function(){var i;return this._aLP||(this._aLP=(i=this).isLeader?Promise.resolve():new Promise(function(e){function t(){r||(r=!0,clearInterval(n),i._channel.removeEventListener("internal",o),e(!0))}var r=!1;i.applyOnce().then(function(){i.isLeader&&t()});var n=setInterval(function(){i.applyOnce().then(function(){i.isLeader&&t()})},i._options.fallbackInterval);i._invs.push(n);var o=function(e){"leader"===e.context&&"death"===e.action&&i.applyOnce().then(function(){i.isLeader&&t()})};i._channel.addEventListener("internal",o),i._lstns.push(o)})),this._aLP},die:function(){var t=this;if(!this.isDead)return this.isDead=!0,this._lstns.forEach(function(e){return t._channel.removeEventListener("internal",e)}),this._invs.forEach(function(e){return clearInterval(e)}),this._unl.forEach(function(e){e.remove()}),u(this,"death")}}},{"./util.js":80,"@babel/runtime/helpers/interopRequireDefault":60,unload:704}],73:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.chooseMethod=function(t){var e=[].concat(t.methods,c).filter(Boolean);if(t.type){if("simulate"===t.type)return u.default;var r=e.find(function(e){return e.type===t.type});if(r)return r;throw new Error("method-type "+t.type+" not found")}t.webWorkerSupport||a.isNode||(e=e.filter(function(e){return"idb"!==e.type}));var n=e.find(function(e){return e.canBeUsed()});{if(n)return n;throw new Error("No useable methode found:"+JSON.stringify(c.map(function(e){return e.type})))}};var o=n(e("./methods/native.js")),i=n(e("./methods/indexed-db.js")),s=n(e("./methods/localstorage.js")),u=n(e("./methods/simulate.js")),a=e("./util"),c=[o.default,i.default,s.default];if(a.isNode){var l=e("../../src/methods/node.js");"function"==typeof l.canBeUsed&&c.push(l)}},{"./methods/indexed-db.js":74,"./methods/localstorage.js":75,"./methods/native.js":76,"./methods/simulate.js":77,"./util":80,"@babel/runtime/helpers/interopRequireDefault":60}],74:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.getIdb=l,r.createDatabase=f,r.writeMessage=p,r.getAllMessages=function(e){var t=e.transaction(c).objectStore(c),n=[];return new Promise(function(r){t.openCursor().onsuccess=function(e){var t=e.target.result;t?(n.push(t.value),t.continue()):r(n)}})},r.getMessagesHigherThen=h,r.removeMessageById=d,r.getOldMessages=b,r.cleanOldMessages=y,r.create=v,r.close=m,r.postMessage=g,r.onMessage=w,r.canBeUsed=x,r.averageResponseTime=O,r.default=r.type=r.microSeconds=void 0;var o=e("../util.js"),i=n(e("../oblivious-set")),s=e("../options"),u=o.microSeconds;r.microSeconds=u;var a="pubkey.broadcast-channel-0-",c="messages";function l(){return"undefined"!=typeof indexedDB?indexedDB:void 0!==window.mozIndexedDB?window.mozIndexedDB:void 0!==window.webkitIndexedDB?window.webkitIndexedDB:void 0!==window.msIndexedDB&&window.msIndexedDB}function f(e){var t=l(),r=a+e,n=t.open(r,1);return n.onupgradeneeded=function(e){e.target.result.createObjectStore(c,{keyPath:"id",autoIncrement:!0})},new Promise(function(e,t){n.onerror=function(e){return t(e)},n.onsuccess=function(){e(n.result)}})}function p(e,t,r){var n={uuid:t,time:(new Date).getTime(),data:r},o=e.transaction([c],"readwrite");return new Promise(function(e,t){o.oncomplete=function(){return e()},o.onerror=function(e){return t(e)},o.objectStore(c).add(n)})}function h(e,t){var n=e.transaction(c).objectStore(c),o=[],i=IDBKeyRange.bound(t+1,1/0);return new Promise(function(r){n.openCursor(i).onsuccess=function(e){var t=e.target.result;t?(o.push(t.value),t.continue()):r(o)}})}function d(e,t){var r=e.transaction([c],"readwrite").objectStore(c).delete(t);return new Promise(function(e){r.onsuccess=function(){return e()}})}function b(e,t){var o=(new Date).getTime()-t,r=e.transaction(c).objectStore(c),i=[];return new Promise(function(n){r.openCursor().onsuccess=function(e){var t=e.target.result;if(t){var r=t.value;if(!(r.timen.lastCursorId&&(n.lastCursorId=e.id),e}).filter(function(e){return r=n,!((t=e).uuid===r.uuid||r.eMIs.has(t.id)||t.data.time>>1;case"base64":return M(e).length;default:if(o)return n?-1:R(e).length;t=(""+t).toLowerCase(),o=!0}}function h(e,t,r){var n=e[t];e[t]=e[r],e[r]=n}function d(e,t,r,n,o){if(0===e.length)return-1;if("string"==typeof r?(n=r,r=0):2147483647=e.length){if(o)return-1;r=e.length-1}else if(r<0){if(!o)return-1;r=0}if("string"==typeof t&&(t=f.from(t,n)),f.isBuffer(t))return 0===t.length?-1:b(e,t,r,n,o);if("number"==typeof t)return t&=255,"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(e,t,r):Uint8Array.prototype.lastIndexOf.call(e,t,r):b(e,[t],r,n,o);throw new TypeError("val must be string, number or Buffer")}function b(e,t,r,n,o){var i,s=1,u=e.length,a=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(e.length<2||t.length<2)return-1;u/=s=2,a/=2,r/=2}function c(e,t){return 1===s?e[t]:e.readUInt16BE(t*s)}if(o){var l=-1;for(i=r;i>8,o=r%256,i.push(o),i.push(n);return i}(t,e.length-r),e,r,n)}function m(e,t,r){return 0===t&&r===e.length?n.fromByteArray(e):n.fromByteArray(e.slice(t,r))}function g(e,t,r){r=Math.min(e.length,r);for(var n=[],o=t;o>>10&1023|55296),l=56320|1023&l),n.push(l),o+=f}return function(e){var t=e.length;if(t<=w)return String.fromCharCode.apply(String,e);var r="",n=0;for(;nthis.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(t>>>=0))return"";for(e=e||"utf8";;)switch(e){case"hex":return j(this,t,r);case"utf8":case"utf-8":return g(this,t,r);case"ascii":return x(this,t,r);case"latin1":case"binary":return O(this,t,r);case"base64":return m(this,t,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return S(this,t,r);default:if(n)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),n=!0}}.apply(this,arguments)},f.prototype.equals=function(e){if(!f.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e||0===f.compare(this,e)},f.prototype.inspect=function(){var e="",t=L.INSPECT_MAX_BYTES;return e=this.toString("hex",0,t).replace(/(.{2})/g,"$1 ").trim(),this.length>t&&(e+=" ... "),""},e&&(f.prototype[e]=f.prototype.inspect),f.prototype.compare=function(e,t,r,n,o){if(D(e,Uint8Array)&&(e=f.from(e,e.offset,e.byteLength)),!f.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===r&&(r=e?e.length:0),void 0===n&&(n=0),void 0===o&&(o=this.length),t<0||r>e.length||n<0||o>this.length)throw new RangeError("out of range index");if(o<=n&&r<=t)return 0;if(o<=n)return-1;if(r<=t)return 1;if(this===e)return 0;for(var i=(o>>>=0)-(n>>>=0),s=(r>>>=0)-(t>>>=0),u=Math.min(i,s),a=this.slice(n,o),c=e.slice(t,r),l=0;l>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0)}var o=this.length-t;if((void 0===r||othis.length)throw new RangeError("Attempt to write outside buffer bounds");n=n||"utf8";for(var i,s,u,a,c,l,f=!1;;)switch(n){case"hex":return y(this,e,t,r);case"utf8":case"utf-8":return c=t,l=r,I(R(e,(a=this).length-c),a,c,l);case"ascii":return v(this,e,t,r);case"latin1":case"binary":return v(this,e,t,r);case"base64":return i=this,s=t,u=r,I(M(e),i,s,u);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return _(this,e,t,r);default:if(f)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),f=!0}},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var w=4096;function x(e,t,r){var n="";r=Math.min(e.length,r);for(var o=t;oe.length)throw new RangeError("Index out of range")}function P(e,t,r,n){if(r+n>e.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function A(e,t,r,n,o){return t=+t,r>>>=0,o||P(e,0,r,4),i.write(e,t,r,n,23,4),r+4}function C(e,t,r,n,o){return t=+t,r>>>=0,o||P(e,0,r,8),i.write(e,t,r,n,52,8),r+8}f.prototype.slice=function(e,t){var r=this.length;(e=~~e)<0?(e+=r)<0&&(e=0):r>>=0,t>>>=0,r||E(e,t,this.length);for(var n=this[e],o=1,i=0;++i>>=0,t>>>=0,r||E(e,t,this.length);for(var n=this[e+--t],o=1;0>>=0,t||E(e,1,this.length),this[e]},f.prototype.readUInt16LE=function(e,t){return e>>>=0,t||E(e,2,this.length),this[e]|this[e+1]<<8},f.prototype.readUInt16BE=function(e,t){return e>>>=0,t||E(e,2,this.length),this[e]<<8|this[e+1]},f.prototype.readUInt32LE=function(e,t){return e>>>=0,t||E(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},f.prototype.readUInt32BE=function(e,t){return e>>>=0,t||E(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},f.prototype.readIntLE=function(e,t,r){e>>>=0,t>>>=0,r||E(e,t,this.length);for(var n=this[e],o=1,i=0;++i>>=0,t>>>=0,r||E(e,t,this.length);for(var n=t,o=1,i=this[e+--n];0>>=0,t||E(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},f.prototype.readInt16LE=function(e,t){e>>>=0,t||E(e,2,this.length);var r=this[e]|this[e+1]<<8;return 32768&r?4294901760|r:r},f.prototype.readInt16BE=function(e,t){e>>>=0,t||E(e,2,this.length);var r=this[e+1]|this[e]<<8;return 32768&r?4294901760|r:r},f.prototype.readInt32LE=function(e,t){return e>>>=0,t||E(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},f.prototype.readInt32BE=function(e,t){return e>>>=0,t||E(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},f.prototype.readFloatLE=function(e,t){return e>>>=0,t||E(e,4,this.length),i.read(this,e,!0,23,4)},f.prototype.readFloatBE=function(e,t){return e>>>=0,t||E(e,4,this.length),i.read(this,e,!1,23,4)},f.prototype.readDoubleLE=function(e,t){return e>>>=0,t||E(e,8,this.length),i.read(this,e,!0,52,8)},f.prototype.readDoubleBE=function(e,t){return e>>>=0,t||E(e,8,this.length),i.read(this,e,!1,52,8)},f.prototype.writeUIntLE=function(e,t,r,n){e=+e,t>>>=0,r>>>=0,n||k(this,e,t,r,Math.pow(2,8*r)-1,0);var o=1,i=0;for(this[t]=255&e;++i>>=0,r>>>=0,n||k(this,e,t,r,Math.pow(2,8*r)-1,0);var o=r-1,i=1;for(this[t+o]=255&e;0<=--o&&(i*=256);)this[t+o]=e/i&255;return t+r},f.prototype.writeUInt8=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,1,255,0),this[t]=255&e,t+1},f.prototype.writeUInt16LE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},f.prototype.writeUInt16BE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},f.prototype.writeUInt32LE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},f.prototype.writeUInt32BE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},f.prototype.writeIntLE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var o=Math.pow(2,8*r-1);k(this,e,t,r,o-1,-o)}var i=0,s=1,u=0;for(this[t]=255&e;++i>0)-u&255;return t+r},f.prototype.writeIntBE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var o=Math.pow(2,8*r-1);k(this,e,t,r,o-1,-o)}var i=r-1,s=1,u=0;for(this[t+i]=255&e;0<=--i&&(s*=256);)e<0&&0===u&&0!==this[t+i+1]&&(u=1),this[t+i]=(e/s>>0)-u&255;return t+r},f.prototype.writeInt8=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},f.prototype.writeInt16LE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},f.prototype.writeInt16BE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},f.prototype.writeInt32LE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},f.prototype.writeInt32BE=function(e,t,r){return e=+e,t>>>=0,r||k(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},f.prototype.writeFloatLE=function(e,t,r){return A(this,e,t,!0,r)},f.prototype.writeFloatBE=function(e,t,r){return A(this,e,t,!1,r)},f.prototype.writeDoubleLE=function(e,t,r){return C(this,e,t,!0,r)},f.prototype.writeDoubleBE=function(e,t,r){return C(this,e,t,!1,r)},f.prototype.copy=function(e,t,r,n){if(!f.isBuffer(e))throw new TypeError("argument should be a Buffer");if(r=r||0,n||0===n||(n=this.length),t>=e.length&&(t=e.length),t=t||0,0=this.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),e.length-t>>=0,r=void 0===r?this.length:r>>>0,"number"==typeof(e=e||0))for(i=t;i>6|192,63&r|128)}else if(r<65536){if((t-=3)<0)break;i.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;i.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return i}function M(e){return n.toByteArray(function(e){if((e=(e=e.split("=")[0]).trim().replace(t,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function I(e,t,r,n){for(var o=0;o=t.length||o>=e.length);++o)t[o+r]=e[o];return o}function D(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}function T(e){return e!=e}var N=function(){for(var e="0123456789abcdef",t=new Array(256),r=0;r<16;++r)for(var n=16*r,o=0;o<16;++o)t[n+o]=e[r]+e[o];return t}()}).call(this,B("buffer").Buffer)},{"base64-js":68,buffer:85,ieee754:418}],86:[function(e,t,r){(function(S){var e=function(){"use strict";function m(e,t){return null!=t&&e instanceof t}var g,w,x;try{g=Map}catch(e){g=function(){}}try{w=Set}catch(e){w=function(){}}try{x=Promise}catch(e){x=function(){}}function O(e,h,t,d,b){"object"==typeof h&&(t=h.depth,d=h.prototype,b=h.includeNonEnumerable,h=h.circular);var y=[],v=[],_=void 0!==S;return void 0===h&&(h=!0),void 0===t&&(t=1/0),function o(e,i){if(null===e)return null;if(0===i)return e;var s,t;if("object"!=typeof e)return e;if(m(e,g))s=new g;else if(m(e,w))s=new w;else if(m(e,x))s=new x(function(t,r){e.then(function(e){t(o(e,i-1))},function(e){r(o(e,i-1))})});else if(O.__isArray(e))s=[];else if(O.__isRegExp(e))s=new RegExp(e.source,j(e)),e.lastIndex&&(s.lastIndex=e.lastIndex);else if(O.__isDate(e))s=new Date(e.getTime());else{if(_&&S.isBuffer(e))return s=S.allocUnsafe?S.allocUnsafe(e.length):new S(e.length),e.copy(s),s;m(e,Error)?s=Object.create(e):void 0===d?(t=Object.getPrototypeOf(e),s=Object.create(t)):(s=Object.create(d),t=d)}if(h){var r=y.indexOf(e);if(-1!=r)return v[r];y.push(e),v.push(s)}for(var n in m(e,g)&&e.forEach(function(e,t){var r=o(t,i-1),n=o(e,i-1);s.set(r,n)}),m(e,w)&&e.forEach(function(e){var t=o(e,i-1);s.add(t)}),e){var u;t&&(u=Object.getOwnPropertyDescriptor(t,n)),u&&null==u.set||(s[n]=o(e[n],i-1))}if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(n=0;ns;)i.call(e,n=o[s++])&&t.push(n);return t}},{"./_object-gops":188,"./_object-keys":191,"./_object-pie":192}],146:[function(e,t,r){var b=e("./_global"),y=e("./_core"),v=e("./_hide"),_=e("./_redefine"),m=e("./_ctx"),g="prototype",w=function(e,t,r){var n,o,i,s,u=e&w.F,a=e&w.G,c=e&w.S,l=e&w.P,f=e&w.B,p=a?b:c?b[t]||(b[t]={}):(b[t]||{})[g],h=a?y:y[t]||(y[t]={}),d=h[g]||(h[g]={});for(n in a&&(r=t),r)i=((o=!u&&p&&void 0!==p[n])?p:r)[n],s=f&&o?m(i,b):l&&"function"==typeof i?m(Function.call,i):i,p&&_(p,n,i,e&w.U),h[n]!=i&&v(h,n,s),l&&d[n]!=i&&(d[n]=i)};b.core=y,w.F=1,w.G=2,w.S=4,w.P=8,w.B=16,w.W=32,w.U=64,w.R=128,t.exports=w},{"./_core":136,"./_ctx":138,"./_global":154,"./_hide":156,"./_redefine":202}],147:[function(e,t,r){var n=e("./_wks")("match");t.exports=function(t){var r=/./;try{"/./"[t](r)}catch(e){try{return r[n]=!1,!"/./"[t](r)}catch(e){}}return!0}},{"./_wks":236}],148:[function(e,t,r){arguments[4][107][0].apply(r,arguments)},{dup:107}],149:[function(e,t,r){"use strict";e("./es6.regexp.exec");var l=e("./_redefine"),f=e("./_hide"),p=e("./_fails"),h=e("./_defined"),d=e("./_wks"),b=e("./_regexp-exec"),y=d("species"),v=!p(function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$")}),_=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var r="ab".split(e);return 2===r.length&&"a"===r[0]&&"b"===r[1]}();t.exports=function(r,e,t){var n=d(r),i=!p(function(){var e={};return e[n]=function(){return 7},7!=""[r](e)}),o=i?!p(function(){var e=!1,t=/a/;return t.exec=function(){return e=!0,null},"split"===r&&(t.constructor={},t.constructor[y]=function(){return t}),t[n](""),!e}):void 0;if(!i||!o||"replace"===r&&!v||"split"===r&&!_){var s=/./[n],u=t(h,n,""[r],function(e,t,r,n,o){return t.exec===b?i&&!o?{done:!0,value:s.call(t,r,n)}:{done:!0,value:e.call(r,t,n)}:{done:!1}}),a=u[0],c=u[1];l(String.prototype,r,a),f(RegExp.prototype,n,2==e?function(e,t){return c.call(e,this,t)}:function(e){return c.call(e,this)})}}},{"./_defined":141,"./_fails":148,"./_hide":156,"./_redefine":202,"./_regexp-exec":204,"./_wks":236,"./es6.regexp.exec":332}],150:[function(e,t,r){"use strict";var n=e("./_an-object");t.exports=function(){var e=n(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},{"./_an-object":122}],151:[function(e,t,r){"use strict";var d=e("./_is-array"),b=e("./_is-object"),y=e("./_to-length"),v=e("./_ctx"),_=e("./_wks")("isConcatSpreadable");t.exports=function e(t,r,n,o,i,s,u,a){for(var c,l,f=i,p=0,h=!!u&&v(u,a,3);pdocument.F=Object<\/script>"),e.close(),l=e.F;r--;)delete l[c][u[r]];return l()};e.exports=Object.create||function(e,t){var r;return null!==e?(o[c]=i(e),r=new o,o[c]=null,r[a]=e):r=l(),void 0===t?r:s(r,t)}},{"./_an-object":122,"./_dom-create":143,"./_enum-bug-keys":144,"./_html":157,"./_object-dps":184,"./_shared-key":209}],183:[function(e,t,r){arguments[4][113][0].apply(r,arguments)},{"./_an-object":122,"./_descriptors":142,"./_ie8-dom-define":158,"./_to-primitive":227,dup:113}],184:[function(e,t,r){var s=e("./_object-dp"),u=e("./_an-object"),a=e("./_object-keys");t.exports=e("./_descriptors")?Object.defineProperties:function(e,t){u(e);for(var r,n=a(t),o=n.length,i=0;io;)s(n,r=t[o++])&&(~a(i,r)||i.push(r));return i}},{"./_array-includes":125,"./_has":155,"./_shared-key":209,"./_to-iobject":224}],191:[function(e,t,r){var n=e("./_object-keys-internal"),o=e("./_enum-bug-keys");t.exports=Object.keys||function(e){return n(e,o)}},{"./_enum-bug-keys":144,"./_object-keys-internal":190}],192:[function(e,t,r){r.f={}.propertyIsEnumerable},{}],193:[function(e,t,r){var o=e("./_export"),i=e("./_core"),s=e("./_fails");t.exports=function(e,t){var r=(i.Object||{})[e]||Object[e],n={};n[e]=t(r),o(o.S+o.F*s(function(){r(1)}),"Object",n)}},{"./_core":136,"./_export":146,"./_fails":148}],194:[function(e,t,r){var a=e("./_descriptors"),c=e("./_object-keys"),l=e("./_to-iobject"),f=e("./_object-pie").f;t.exports=function(u){return function(e){for(var t,r=l(e),n=c(r),o=n.length,i=0,s=[];i>>0||(s.test(r)?16:10))}:n},{"./_global":154,"./_string-trim":218,"./_string-ws":219}],198:[function(e,t,r){t.exports=function(e){try{return{e:!1,v:e()}}catch(e){return{e:!0,v:e}}}},{}],199:[function(e,t,r){var n=e("./_an-object"),o=e("./_is-object"),i=e("./_new-promise-capability");t.exports=function(e,t){if(n(e),o(t)&&t.constructor===e)return t;var r=i.f(e);return(0,r.resolve)(t),r.promise}},{"./_an-object":122,"./_is-object":165,"./_new-promise-capability":180}],200:[function(e,t,r){arguments[4][114][0].apply(r,arguments)},{dup:114}],201:[function(e,t,r){var o=e("./_redefine");t.exports=function(e,t,r){for(var n in t)o(e,n,t[n],r);return e}},{"./_redefine":202}],202:[function(e,t,r){var i=e("./_global"),s=e("./_hide"),u=e("./_has"),a=e("./_uid")("src"),n=e("./_function-to-string"),c=(""+n).split("toString");e("./_core").inspectSource=function(e){return n.call(e)},(t.exports=function(e,t,r,n){var o="function"==typeof r;o&&(u(r,"name")||s(r,"name",t)),e[t]!==r&&(o&&(u(r,a)||s(r,a,e[t]?""+e[t]:c.join(String(t)))),e===i?e[t]=r:n?e[t]?e[t]=r:s(e,t,r):(delete e[t],s(e,t,r)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[a]||n.call(this)})},{"./_core":136,"./_function-to-string":153,"./_global":154,"./_has":155,"./_hide":156,"./_uid":231}],203:[function(e,t,r){"use strict";var o=e("./_classof"),i=RegExp.prototype.exec;t.exports=function(e,t){var r=e.exec;if("function"==typeof r){var n=r.call(e,t);if("object"!=typeof n)throw new TypeError("RegExp exec method returned something other than an Object or null");return n}if("RegExp"!==o(e))throw new TypeError("RegExp#exec called on incompatible receiver");return i.call(e,t)}},{"./_classof":131}],204:[function(e,t,r){"use strict";var n,o,i=e("./_flags"),s=RegExp.prototype.exec,u=String.prototype.replace,a=s,c="lastIndex",l=(n=/a/,o=/b*/g,s.call(n,"a"),s.call(o,"a"),0!==n[c]||0!==o[c]),f=void 0!==/()??/.exec("")[1];(l||f)&&(a=function(e){var t,r,n,o;return f&&(r=new RegExp("^"+this.source+"$(?!\\s)",i.call(this))),l&&(t=this[c]),n=s.call(this,e),l&&n&&(this[c]=this.global?n.index+n[0].length:t),f&&n&&1"+o+""}var o=e("./_export"),i=e("./_fails"),s=e("./_defined"),u=/"/g;t.exports=function(t,e){var r={};r[t]=e(n),o(o.P+o.F*i(function(){var e=""[t]('"');return e!==e.toLowerCase()||3a&&(c=c.slice(0,a)),n?c+o:o+c}},{"./_defined":141,"./_string-repeat":217,"./_to-length":225}],217:[function(e,t,r){"use strict";var o=e("./_to-integer"),i=e("./_defined");t.exports=function(e){var t=String(i(this)),r="",n=o(e);if(n<0||n==1/0)throw RangeError("Count can't be negative");for(;0>>=1)&&(t+=t))1&n&&(r+=t);return r}},{"./_defined":141,"./_to-integer":223}],218:[function(e,t,r){function n(e,t,r){var n={},o=u(function(){return!!a[e]()||"​…"!="​…"[e]()}),i=n[e]=o?t(f):a[e];r&&(n[r]=i),s(s.P+s.F*o,"String",n)}var s=e("./_export"),o=e("./_defined"),u=e("./_fails"),a=e("./_string-ws"),i="["+a+"]",c=RegExp("^"+i+i+"*"),l=RegExp(i+i+"*$"),f=n.trim=function(e,t){return e=String(o(e)),1&t&&(e=e.replace(c,"")),2&t&&(e=e.replace(l,"")),e};t.exports=n},{"./_defined":141,"./_export":146,"./_fails":148,"./_string-ws":219}],219:[function(e,t,r){t.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},{}],220:[function(e,t,r){function n(){var e=+this;if(m.hasOwnProperty(e)){var t=m[e];delete m[e],t()}}function o(e){n.call(e.data)}var i,s,u,a=e("./_ctx"),c=e("./_invoke"),l=e("./_html"),f=e("./_dom-create"),p=e("./_global"),h=p.process,d=p.setImmediate,b=p.clearImmediate,y=p.MessageChannel,v=p.Dispatch,_=0,m={},g="onreadystatechange";d&&b||(d=function(e){for(var t=[],r=1;r>1,l=23===t?A(2,-24)-A(2,-77):0,f=0,p=e<0||0===e&&1/e<0?1:0;for((e=P(e))!=e||e===E?(o=e!=e?1:0,n=a):(n=C(R(e)/M),e*(i=A(2,-n))<1&&(n--,i*=2),2<=(e+=1<=n+c?l/i:l*A(2,1-c))*i&&(n++,i/=2),a<=n+c?(o=0,n=a):1<=n+c?(o=(e*i-1)*A(2,t),n+=c):(o=e*A(2,c-1)*A(2,t),n=0));8<=t;s[f++]=255&o,o/=256,t-=8);for(n=n<>1,u=o-7,a=r-1,c=e[a--],l=127&c;for(c>>=7;0>=-u,u+=t;0>8&255]}function V(e){return[255&e,e>>8&255,e>>16&255,e>>24&255]}function z(e){return L(e,52,8)}function W(e){return L(e,23,4)}function J(e,t,r){b(e[g],t,{get:function(){return this[r]}})}function H(e,t,r,n){var o=h(+r);if(o+t>e[N])throw S(w);var i=e[T]._b,s=o+e[B],u=i.slice(s,s+t);return n?u:u.reverse()}function Q(e,t,r,n,o,i){var s=h(+r);if(s+t>e[N])throw S(w);for(var u=e[T]._b,a=s+e[B],c=n(+o),l=0;lX;)(K=Y[X++])in x||u(x,K,k[K]);i||(G.constructor=x)}var Z=new O(new x(2)),ee=O[g].setInt8;Z.setInt8(0,2147483648),Z.setInt8(1,2147483649),!Z.getInt8(0)&&Z.getInt8(1)||a(O[g],{setInt8:function(e,t){ee.call(this,e,t<<24>>24)},setUint8:function(e,t){ee.call(this,e,t<<24>>24)}},!0)}else x=function(e){l(this,x,_);var t=h(e);this._b=y.call(new Array(t),0),this[N]=t},O=function(e,t,r){l(this,O,m),l(e,x,m);var n=e[N],o=f(t);if(o<0||n>24},getUint8:function(e){return H(this,1,e)[0]},getInt16:function(e,t){var r=H(this,2,e,t);return(r[1]<<8|r[0])<<16>>16},getUint16:function(e,t){var r=H(this,2,e,t);return r[1]<<8|r[0]},getInt32:function(e,t){return F(H(this,4,e,t))},getUint32:function(e,t){return F(H(this,4,e,t))>>>0},getFloat32:function(e,t){return q(H(this,4,e,t),23,4)},getFloat64:function(e,t){return q(H(this,8,e,t),52,8)},setInt8:function(e,t){Q(this,1,e,$,t)},setUint8:function(e,t){Q(this,1,e,$,t)},setInt16:function(e,t,r){Q(this,2,e,U,t,r)},setUint16:function(e,t,r){Q(this,2,e,U,t,r)},setInt32:function(e,t,r){Q(this,4,e,V,t,r)},setUint32:function(e,t,r){Q(this,4,e,V,t,r)},setFloat32:function(e,t,r){Q(this,4,e,W,t,r)},setFloat64:function(e,t,r){Q(this,8,e,z,t,r)}});v(x,_),v(O,m),u(O[g],s.VIEW,!0),r[_]=x,r[m]=O},{"./_an-instance":121,"./_array-fill":124,"./_descriptors":142,"./_fails":148,"./_global":154,"./_hide":156,"./_library":173,"./_object-dp":183,"./_object-gopn":187,"./_redefine-all":201,"./_set-to-string-tag":208,"./_to-index":222,"./_to-integer":223,"./_to-length":225,"./_typed":230}],230:[function(e,t,r){for(var n,o=e("./_global"),i=e("./_hide"),s=e("./_uid"),u=s("typed_array"),a=s("view"),c=!(!o.ArrayBuffer||!o.DataView),l=c,f=0,p="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");f<9;)(n=o[p[f++]])?(i(n.prototype,u,!0),i(n.prototype,a,!0)):l=!1;t.exports={ABV:c,CONSTR:l,TYPED:u,VIEW:a}},{"./_global":154,"./_hide":156,"./_uid":231}],231:[function(e,t,r){var n=0,o=Math.random();t.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+o).toString(36))}},{}],232:[function(e,t,r){var n=e("./_global").navigator;t.exports=n&&n.userAgent||""},{"./_global":154}],233:[function(e,t,r){var n=e("./_is-object");t.exports=function(e,t){if(!n(e)||e._t!==t)throw TypeError("Incompatible receiver, "+t+" required!");return e}},{"./_is-object":165}],234:[function(e,t,r){var n=e("./_global"),o=e("./_core"),i=e("./_library"),s=e("./_wks-ext"),u=e("./_object-dp").f;t.exports=function(e){var t=o.Symbol||(o.Symbol=i?{}:n.Symbol||{});"_"==e.charAt(0)||e in t||u(t,e,{value:s.f(e)})}},{"./_core":136,"./_global":154,"./_library":173,"./_object-dp":183,"./_wks-ext":235}],235:[function(e,t,r){r.f=e("./_wks")},{"./_wks":236}],236:[function(e,t,r){var n=e("./_shared")("wks"),o=e("./_uid"),i=e("./_global").Symbol,s="function"==typeof i;(t.exports=function(e){return n[e]||(n[e]=s&&i[e]||(s?i:o)("Symbol."+e))}).store=n},{"./_global":154,"./_shared":210,"./_uid":231}],237:[function(e,t,r){var n=e("./_classof"),o=e("./_wks")("iterator"),i=e("./_iterators");t.exports=e("./_core").getIteratorMethod=function(e){if(null!=e)return e[o]||e["@@iterator"]||i[n(e)]}},{"./_classof":131,"./_core":136,"./_iterators":172,"./_wks":236}],238:[function(e,t,r){var n=e("./_export");n(n.P,"Array",{copyWithin:e("./_array-copy-within")}),e("./_add-to-unscopables")("copyWithin")},{"./_add-to-unscopables":119,"./_array-copy-within":123,"./_export":146}],239:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_array-methods")(4);n(n.P+n.F*!e("./_strict-method")([].every,!0),"Array",{every:function(e,t){return o(this,e,t)}})},{"./_array-methods":126,"./_export":146,"./_strict-method":212}],240:[function(e,t,r){var n=e("./_export");n(n.P,"Array",{fill:e("./_array-fill")}),e("./_add-to-unscopables")("fill")},{"./_add-to-unscopables":119,"./_array-fill":124,"./_export":146}],241:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_array-methods")(2);n(n.P+n.F*!e("./_strict-method")([].filter,!0),"Array",{filter:function(e,t){return o(this,e,t)}})},{"./_array-methods":126,"./_export":146,"./_strict-method":212}],242:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_array-methods")(6),i="findIndex",s=!0;i in[]&&Array(1)[i](function(){s=!1}),n(n.P+n.F*s,"Array",{findIndex:function(e,t){return o(this,e,1=e.length?(this._t=void 0,o(1)):o(0,"keys"==t?r:"values"==t?e[r]:[r,e[r]])},"values"),i.Arguments=i.Array,n("keys"),n("values"),n("entries")},{"./_add-to-unscopables":119,"./_iter-define":169,"./_iter-step":171,"./_iterators":172,"./_to-iobject":224}],249:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_to-iobject"),i=[].join;n(n.P+n.F*(e("./_iobject")!=Object||!e("./_strict-method")(i)),"Array",{join:function(e){return i.call(o(this),void 0===e?",":e)}})},{"./_export":146,"./_iobject":161,"./_strict-method":212,"./_to-iobject":224}],250:[function(e,t,r){"use strict";var n=e("./_export"),i=e("./_to-iobject"),s=e("./_to-integer"),u=e("./_to-length"),a=[].lastIndexOf,c=!!a&&1/[1].lastIndexOf(1,-0)<0;n(n.P+n.F*(c||!e("./_strict-method")(a)),"Array",{lastIndexOf:function(e,t){if(c)return a.apply(this,arguments)||0;var r=i(this),n=u(r.length),o=n-1;for(1>>=0)?31-Math.floor(Math.log(e+.5)*Math.LOG2E):32}})},{"./_export":146}],273:[function(e,t,r){var n=e("./_export"),o=Math.exp;n(n.S,"Math",{cosh:function(e){return(o(e=+e)+o(-e))/2}})},{"./_export":146}],274:[function(e,t,r){var n=e("./_export"),o=e("./_math-expm1");n(n.S+n.F*(o!=Math.expm1),"Math",{expm1:o})},{"./_export":146,"./_math-expm1":174}],275:[function(e,t,r){var n=e("./_export");n(n.S,"Math",{fround:e("./_math-fround")})},{"./_export":146,"./_math-fround":175}],276:[function(e,t,r){var n=e("./_export"),a=Math.abs;n(n.S,"Math",{hypot:function(e,t){for(var r,n,o=0,i=0,s=arguments.length,u=0;i>>16)*i+o*(65535&n>>>16)<<16>>>0)}})},{"./_export":146,"./_fails":148}],278:[function(e,t,r){var n=e("./_export");n(n.S,"Math",{log10:function(e){return Math.log(e)*Math.LOG10E}})},{"./_export":146}],279:[function(e,t,r){var n=e("./_export");n(n.S,"Math",{log1p:e("./_math-log1p")})},{"./_export":146,"./_math-log1p":176}],280:[function(e,t,r){var n=e("./_export");n(n.S,"Math",{log2:function(e){return Math.log(e)/Math.LN2}})},{"./_export":146}],281:[function(e,t,r){var n=e("./_export");n(n.S,"Math",{sign:e("./_math-sign")})},{"./_export":146,"./_math-sign":177}],282:[function(e,t,r){var n=e("./_export"),o=e("./_math-expm1"),i=Math.exp;n(n.S+n.F*e("./_fails")(function(){return-2e-17!=!Math.sinh(-2e-17)}),"Math",{sinh:function(e){return Math.abs(e=+e)<1?(o(e)-o(-e))/2:(i(e-1)-i(-e-1))*(Math.E/2)}})},{"./_export":146,"./_fails":148,"./_math-expm1":174}],283:[function(e,t,r){var n=e("./_export"),o=e("./_math-expm1"),i=Math.exp;n(n.S,"Math",{tanh:function(e){var t=o(e=+e),r=o(-e);return t==1/0?1:r==1/0?-1:(t-r)/(i(e)+i(-e))}})},{"./_export":146,"./_math-expm1":174}],284:[function(e,t,r){var n=e("./_export");n(n.S,"Math",{trunc:function(e){return(0x;x++)i(y,g=w[x])&&!i(b,g)&&p(b,g,f(y,g));(b.prototype=v).constructor=b,e("./_redefine")(o,d,b)}},{"./_cof":132,"./_descriptors":142,"./_fails":148,"./_global":154,"./_has":155,"./_inherit-if-required":159,"./_object-create":182,"./_object-dp":183,"./_object-gopd":185,"./_object-gopn":187,"./_redefine":202,"./_string-trim":218,"./_to-primitive":227}],286:[function(e,t,r){var n=e("./_export");n(n.S,"Number",{EPSILON:Math.pow(2,-52)})},{"./_export":146}],287:[function(e,t,r){var n=e("./_export"),o=e("./_global").isFinite;n(n.S,"Number",{isFinite:function(e){return"number"==typeof e&&o(e)}})},{"./_export":146,"./_global":154}],288:[function(e,t,r){var n=e("./_export");n(n.S,"Number",{isInteger:e("./_is-integer")})},{"./_export":146,"./_is-integer":164}],289:[function(e,t,r){var n=e("./_export");n(n.S,"Number",{isNaN:function(e){return e!=e}})},{"./_export":146}],290:[function(e,t,r){var n=e("./_export"),o=e("./_is-integer"),i=Math.abs;n(n.S,"Number",{isSafeInteger:function(e){return o(e)&&i(e)<=9007199254740991}})},{"./_export":146,"./_is-integer":164}],291:[function(e,t,r){var n=e("./_export");n(n.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},{"./_export":146}],292:[function(e,t,r){var n=e("./_export");n(n.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},{"./_export":146}],293:[function(e,t,r){var n=e("./_export"),o=e("./_parse-float");n(n.S+n.F*(Number.parseFloat!=o),"Number",{parseFloat:o})},{"./_export":146,"./_parse-float":196}],294:[function(e,t,r){var n=e("./_export"),o=e("./_parse-int");n(n.S+n.F*(Number.parseInt!=o),"Number",{parseInt:o})},{"./_export":146,"./_parse-int":197}],295:[function(e,t,r){"use strict";function c(e,t){for(var r=-1,n=t;++r<6;)n+=e*s[r],s[r]=n%1e7,n=i(n/1e7)}function l(e){for(var t=6,r=0;0<=--t;)r+=s[t],s[t]=i(r/e),r=r%e*1e7}function f(){for(var e=6,t="";0<=--e;)if(""!==t||0===e||0!==s[e]){var r=String(s[e]);t=""===t?r:t+d.call("0",7-r.length)+r}return t}var n=e("./_export"),p=e("./_to-integer"),h=e("./_a-number-value"),d=e("./_string-repeat"),o=1..toFixed,i=Math.floor,s=[0,0,0,0,0,0],b="Number.toFixed: incorrect invocation!",y=function(e,t,r){return 0===t?r:t%2==1?y(e,t-1,r*e):y(e*e,t/2,r)};n(n.P+n.F*(!!o&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!e("./_fails")(function(){o.call({})})),"Number",{toFixed:function(e){var t,r,n,o,i=h(this,b),s=p(e),u="",a="0";if(s<0||20e;)t(n[e++]);l._c=[],l._n=!1,r&&!l._h&&N(l)})}}function i(e){var t=this;t._d||(t._d=!0,(t=t._w||t)._v=e,t._s=2,t._a||(t._a=t._c.slice()),o(t,!0))}var s,u,a,c,l=r("./_library"),p=r("./_global"),h=r("./_ctx"),d=r("./_classof"),b=r("./_export"),y=r("./_is-object"),v=r("./_a-function"),_=r("./_an-instance"),m=r("./_for-of"),g=r("./_species-constructor"),w=r("./_task").set,x=r("./_microtask")(),O=r("./_new-promise-capability"),j=r("./_perform"),S=r("./_user-agent"),E=r("./_promise-resolve"),k="Promise",P=p.TypeError,A=p.process,C=A&&A.versions,R=C&&C.v8||"",M=p[k],I="process"==d(A),D=u=O.f,T=!!function(){try{var e=M.resolve(1),t=(e.constructor={})[r("./_wks")("species")]=function(e){e(n,n)};return(I||"function"==typeof PromiseRejectionEvent)&&e.then(n)instanceof t&&0!==R.indexOf("6.6")&&-1===S.indexOf("Chrome/66")}catch(e){}}(),N=function(i){w.call(p,function(){var e,t,r,n=i._v,o=B(i);if(o&&(e=j(function(){I?A.emit("unhandledRejection",n,i):(t=p.onunhandledrejection)?t({promise:i,reason:n}):(r=p.console)&&r.error&&r.error("Unhandled promise rejection",n)}),i._h=I||B(i)?2:1),i._a=void 0,o&&e.e)throw e.v})},B=function(e){return 1!==e._h&&0===(e._a||e._c).length},L=function(t){w.call(p,function(){var e;I?A.emit("rejectionHandled",t):(e=p.onrejectionhandled)&&e({promise:t,reason:t._v})})},q=function(e){var r,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===e)throw P("Promise can't be resolved itself");(r=f(e))?x(function(){var t={_w:n,_d:!1};try{r.call(e,h(q,t,1),h(i,t,1))}catch(e){i.call(t,e)}}):(n._v=e,n._s=1,o(n,!1))}catch(e){i.call({_w:n,_d:!1},e)}}};T||(M=function(e){_(this,M,k,"_h"),v(e),s.call(this);try{e(h(q,this,1),h(i,this,1))}catch(e){i.call(this,e)}},(s=function(){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=r("./_redefine-all")(M.prototype,{then:function(e,t){var r=D(g(this,M));return r.ok="function"!=typeof e||e,r.fail="function"==typeof t&&t,r.domain=I?A.domain:void 0,this._c.push(r),this._a&&this._a.push(r),this._s&&o(this,!1),r.promise},catch:function(e){return this.then(void 0,e)}}),a=function(){var e=new s;this.promise=e,this.resolve=h(q,e,1),this.reject=h(i,e,1)},O.f=D=function(e){return e===M||e===c?new a(e):u(e)}),b(b.G+b.W+b.F*!T,{Promise:M}),r("./_set-to-string-tag")(M,k),r("./_set-species")(k),c=r("./_core")[k],b(b.S+b.F*!T,k,{reject:function(e){var t=D(this);return(0,t.reject)(e),t.promise}}),b(b.S+b.F*(l||!T),k,{resolve:function(e){return E(l&&this===c?M:this,e)}}),b(b.S+b.F*!(T&&r("./_iter-detect")(function(e){M.all(e).catch(n)})),k,{all:function(e){var s=this,t=D(s),u=t.resolve,a=t.reject,r=j(function(){var n=[],o=0,i=1;m(e,!1,function(e){var t=o++,r=!1;n.push(void 0),i++,s.resolve(e).then(function(e){r||(r=!0,n[t]=e,--i||u(n))},a)}),--i||u(n)});return r.e&&a(r.v),t.promise},race:function(e){var t=this,r=D(t),n=r.reject,o=j(function(){m(e,!1,function(e){t.resolve(e).then(r.resolve,n)})});return o.e&&n(o.v),r.promise}})},{"./_a-function":117,"./_an-instance":121,"./_classof":131,"./_core":136,"./_ctx":138,"./_export":146,"./_for-of":152,"./_global":154,"./_is-object":165,"./_iter-detect":170,"./_library":173,"./_microtask":179,"./_new-promise-capability":180,"./_perform":198,"./_promise-resolve":199,"./_redefine-all":201,"./_set-species":207,"./_set-to-string-tag":208,"./_species-constructor":211,"./_task":220,"./_user-agent":232,"./_wks":236}],317:[function(e,t,r){var n=e("./_export"),i=e("./_a-function"),s=e("./_an-object"),u=(e("./_global").Reflect||{}).apply,a=Function.apply;n(n.S+n.F*!e("./_fails")(function(){u(function(){})}),"Reflect",{apply:function(e,t,r){var n=i(e),o=s(r);return u?u(n,t,o):a.call(n,t,o)}})},{"./_a-function":117,"./_an-object":122,"./_export":146,"./_fails":148,"./_global":154}],318:[function(e,t,r){var n=e("./_export"),a=e("./_object-create"),c=e("./_a-function"),l=e("./_an-object"),f=e("./_is-object"),o=e("./_fails"),p=e("./_bind"),h=(e("./_global").Reflect||{}).construct,d=o(function(){function e(){}return!(h(function(){},[],e)instanceof e)}),b=!o(function(){h(function(){})});n(n.S+n.F*(d||b),"Reflect",{construct:function(e,t,r){c(e),l(t);var n=arguments.length<3?e:c(r);if(b&&!d)return h(e,t,n);if(e==n){switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3])}var o=[null];return o.push.apply(o,t),new(p.apply(e,o))}var i=n.prototype,s=a(f(i)?i:Object.prototype),u=Function.apply.call(e,s,t);return f(u)?u:s}})},{"./_a-function":117,"./_an-object":122,"./_bind":130,"./_export":146,"./_fails":148,"./_global":154,"./_is-object":165,"./_object-create":182}],319:[function(e,t,r){var n=e("./_object-dp"),o=e("./_export"),i=e("./_an-object"),s=e("./_to-primitive");o(o.S+o.F*e("./_fails")(function(){Reflect.defineProperty(n.f({},1,{value:1}),1,{value:2})}),"Reflect",{defineProperty:function(e,t,r){i(e),t=s(t,!0),i(r);try{return n.f(e,t,r),!0}catch(e){return!1}}})},{"./_an-object":122,"./_export":146,"./_fails":148,"./_object-dp":183,"./_to-primitive":227}],320:[function(e,t,r){var n=e("./_export"),o=e("./_object-gopd").f,i=e("./_an-object");n(n.S,"Reflect",{deleteProperty:function(e,t){var r=o(i(e),t);return!(r&&!r.configurable)&&delete e[t]}})},{"./_an-object":122,"./_export":146,"./_object-gopd":185}],321:[function(e,t,r){"use strict";function n(e){this._t=i(e),this._i=0;var t,r=this._k=[];for(t in e)r.push(t)}var o=e("./_export"),i=e("./_an-object");e("./_iter-create")(n,"Object",function(){var e,t=this._k;do{if(this._i>=t.length)return{value:void 0,done:!0}}while(!((e=t[this._i++])in this._t));return{value:e,done:!1}}),o(o.S,"Reflect",{enumerate:function(e){return new n(e)}})},{"./_an-object":122,"./_export":146,"./_iter-create":168}],322:[function(e,t,r){var n=e("./_object-gopd"),o=e("./_export"),i=e("./_an-object");o(o.S,"Reflect",{getOwnPropertyDescriptor:function(e,t){return n.f(i(e),t)}})},{"./_an-object":122,"./_export":146,"./_object-gopd":185}],323:[function(e,t,r){var n=e("./_export"),o=e("./_object-gpo"),i=e("./_an-object");n(n.S,"Reflect",{getPrototypeOf:function(e){return o(i(e))}})},{"./_an-object":122,"./_export":146,"./_object-gpo":189}],324:[function(e,t,r){var s=e("./_object-gopd"),u=e("./_object-gpo"),a=e("./_has"),n=e("./_export"),c=e("./_is-object"),l=e("./_an-object");n(n.S,"Reflect",{get:function e(t,r){var n,o,i=arguments.length<3?t:arguments[2];return l(t)===i?t[r]:(n=s.f(t,r))?a(n,"value")?n.value:void 0!==n.get?n.get.call(i):void 0:c(o=u(t))?e(o,r,i):void 0}})},{"./_an-object":122,"./_export":146,"./_has":155,"./_is-object":165,"./_object-gopd":185,"./_object-gpo":189}],325:[function(e,t,r){var n=e("./_export");n(n.S,"Reflect",{has:function(e,t){return t in e}})},{"./_export":146}],326:[function(e,t,r){var n=e("./_export"),o=e("./_an-object"),i=Object.isExtensible;n(n.S,"Reflect",{isExtensible:function(e){return o(e),!i||i(e)}})},{"./_an-object":122,"./_export":146}],327:[function(e,t,r){var n=e("./_export");n(n.S,"Reflect",{ownKeys:e("./_own-keys")})},{"./_export":146,"./_own-keys":195}],328:[function(e,t,r){var n=e("./_export"),o=e("./_an-object"),i=Object.preventExtensions;n(n.S,"Reflect",{preventExtensions:function(e){o(e);try{return i&&i(e),!0}catch(e){return!1}}})},{"./_an-object":122,"./_export":146}],329:[function(e,t,r){var n=e("./_export"),o=e("./_set-proto");o&&n(n.S,"Reflect",{setPrototypeOf:function(e,t){o.check(e,t);try{return o.set(e,t),!0}catch(e){return!1}}})},{"./_export":146,"./_set-proto":206}],330:[function(e,t,r){var a=e("./_object-dp"),c=e("./_object-gopd"),l=e("./_object-gpo"),f=e("./_has"),n=e("./_export"),p=e("./_property-desc"),h=e("./_an-object"),d=e("./_is-object");n(n.S,"Reflect",{set:function e(t,r,n){var o,i,s=arguments.length<4?t:arguments[3],u=c.f(h(t),r);if(!u){if(d(i=l(t)))return e(i,r,n,s);u=p(0)}if(f(u,"value")){if(!1===u.writable||!d(s))return!1;if(o=c.f(s,r)){if(o.get||o.set||!1===o.writable)return!1;o.value=n,a.f(s,r,o)}else a.f(s,r,p(0,n));return!0}return void 0!==u.set&&(u.set.call(s,n),!0)}})},{"./_an-object":122,"./_export":146,"./_has":155,"./_is-object":165,"./_object-dp":183,"./_object-gopd":185,"./_object-gpo":189,"./_property-desc":200}],331:[function(e,t,r){var n=e("./_global"),i=e("./_inherit-if-required"),o=e("./_object-dp").f,s=e("./_object-gopn").f,u=e("./_is-regexp"),a=e("./_flags"),c=n.RegExp,l=c,f=c.prototype,p=/a/g,h=/a/g,d=new c(p)!==p;if(e("./_descriptors")&&(!d||e("./_fails")(function(){return h[e("./_wks")("match")]=!1,c(p)!=p||c(h)==h||"/a/i"!=c(p,"i")}))){c=function(e,t){var r=this instanceof c,n=u(e),o=void 0===t;return!r&&n&&e.constructor===c&&o?e:i(d?new l(n&&!o?e.source:e,t):l((n=e instanceof c)?e.source:e,n&&o?a.call(e):t),r?this:f,c)};function b(t){t in c||o(c,t,{configurable:!0,get:function(){return l[t]},set:function(e){l[t]=e}})}for(var y=s(l),v=0;y.length>v;)b(y[v++]);(f.constructor=c).prototype=f,e("./_redefine")(n,"RegExp",c)}e("./_set-species")("RegExp")},{"./_descriptors":142,"./_fails":148,"./_flags":150,"./_global":154,"./_inherit-if-required":159,"./_is-regexp":166,"./_object-dp":183,"./_object-gopn":187,"./_redefine":202,"./_set-species":207,"./_wks":236}],332:[function(e,t,r){"use strict";var n=e("./_regexp-exec");e("./_export")({target:"RegExp",proto:!0,forced:n!==/./.exec},{exec:n})},{"./_export":146,"./_regexp-exec":204}],333:[function(e,t,r){e("./_descriptors")&&"g"!=/./g.flags&&e("./_object-dp").f(RegExp.prototype,"flags",{configurable:!0,get:e("./_flags")})},{"./_descriptors":142,"./_flags":150,"./_object-dp":183}],334:[function(e,t,r){"use strict";var f=e("./_an-object"),p=e("./_to-length"),h=e("./_advance-string-index"),d=e("./_regexp-exec-abstract");e("./_fix-re-wks")("match",1,function(n,o,c,l){return[function(e){var t=n(this),r=null==e?void 0:e[o];return void 0!==r?r.call(e,t):new RegExp(e)[o](String(t))},function(e){var t=l(c,e,this);if(t.done)return t.value;var r=f(e),n=String(this);if(!r.global)return d(r,n);for(var o,i=r.unicode,s=[],u=r.lastIndex=0;null!==(o=d(r,n));){var a=String(o[0]);""===(s[u]=a)&&(r.lastIndex=h(n,p(r.lastIndex),i)),u++}return 0===u?null:s}]})},{"./_advance-string-index":120,"./_an-object":122,"./_fix-re-wks":149,"./_regexp-exec-abstract":203,"./_to-length":225}],335:[function(e,t,r){"use strict";var j=e("./_an-object"),n=e("./_to-object"),S=e("./_to-length"),E=e("./_to-integer"),k=e("./_advance-string-index"),P=e("./_regexp-exec-abstract"),A=Math.max,C=Math.min,p=Math.floor,h=/\$([$&`']|\d\d?|<[^>]*>)/g,d=/\$([$&`']|\d\d?)/g;e("./_fix-re-wks")("replace",2,function(o,i,w,x){return[function(e,t){var r=o(this),n=null==e?void 0:e[i];return void 0!==n?n.call(e,r,t):w.call(String(r),e,t)},function(e,t){var r=x(w,e,this,t);if(r.done)return r.value;var n=j(e),o=String(this),i="function"==typeof t;i||(t=String(t));var s=n.global;if(s){var u=n.unicode;n.lastIndex=0}for(var a=[];;){var c=P(n,o);if(null===c)break;if(a.push(c),!s)break;""===String(c[0])&&(n.lastIndex=k(o,S(n.lastIndex),u))}for(var l,f="",p=0,h=0;h>>0,l=new RegExp(e.source,u+"g");(n=p.call(l,r))&&!(a<(o=l[b])&&(s.push(r.slice(a,n.index)),1=c));)l[b]===n.index&&l[b]++;return a===r[d]?!i&&l.test("")||s.push(""):s.push(r.slice(a)),s[d]>c?s.slice(0,c):s}:"0"[s](void 0,0)[d]?function(e,t){return void 0===e&&0===t?[]:y.call(this,e,t)}:y,[function(e,t){var r=o(this),n=null==e?void 0:e[i];return void 0!==n?n.call(e,r,t):_.call(String(r),e,t)},function(e,t){var r=v(_,e,this,t,_!==y);if(r.done)return r.value;var n=m(e),o=String(this),i=g(n,RegExp),s=n.unicode,u=(n.ignoreCase?"i":"")+(n.multiline?"m":"")+(n.unicode?"u":"")+(E?"y":"g"),a=new i(E?n:"^(?:"+n.source+")",u),c=void 0===t?S:t>>>0;if(0==c)return[];if(0===o.length)return null===O(a,o)?[o]:[];for(var l=0,f=0,p=[];f>10),t%1024+56320))}return r.join("")}})},{"./_export":146,"./_to-absolute-index":221}],350:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_string-context");n(n.P+n.F*e("./_fails-is-regexp")("includes"),"String",{includes:function(e,t){return!!~o(this,e,"includes").indexOf(e,1=t.length?{value:void 0,done:!0}:(e=n(t,r),this._i+=e.length,{value:e,done:!1})})},{"./_iter-define":169,"./_string-at":213}],353:[function(e,t,r){"use strict";e("./_string-html")("link",function(t){return function(e){return t(this,"a","href",e)}})},{"./_string-html":215}],354:[function(e,t,r){var n=e("./_export"),s=e("./_to-iobject"),u=e("./_to-length");n(n.S,"String",{raw:function(e){for(var t=s(e.raw),r=u(t.length),n=arguments.length,o=[],i=0;io;)l(H,t=r[o++])||t==V||t==d||n.push(t);return n}function a(e){for(var t,r=e===K,n=L(r?Q:k(e)),o=[],i=0;n.length>i;)!l(H,t=n[i++])||r&&!l(K,t)||o.push(H[t]);return o}var c=e("./_global"),l=e("./_has"),f=e("./_descriptors"),p=e("./_export"),h=e("./_redefine"),d=e("./_meta").KEY,b=e("./_fails"),y=e("./_shared"),v=e("./_set-to-string-tag"),_=e("./_uid"),m=e("./_wks"),g=e("./_wks-ext"),w=e("./_wks-define"),x=e("./_enum-keys"),O=e("./_is-array"),j=e("./_an-object"),S=e("./_is-object"),E=e("./_to-object"),k=e("./_to-iobject"),P=e("./_to-primitive"),A=e("./_property-desc"),C=e("./_object-create"),R=e("./_object-gopn-ext"),M=e("./_object-gopd"),I=e("./_object-gops"),D=e("./_object-dp"),T=e("./_object-keys"),N=M.f,B=D.f,L=R.f,q=c.Symbol,F=c.JSON,$=F&&F.stringify,U="prototype",V=m("_hidden"),z=m("toPrimitive"),W={}.propertyIsEnumerable,J=y("symbol-registry"),H=y("symbols"),Q=y("op-symbols"),K=Object[U],G="function"==typeof q&&!!I.f,Y=c.QObject,X=!Y||!Y[U]||!Y[U].findChild,Z=f&&b(function(){return 7!=C(B({},"a",{get:function(){return B(this,"a",{value:7}).a}})).a})?function(e,t,r){var n=N(K,t);n&&delete K[t],B(e,t,r),n&&e!==K&&B(K,t,n)}:B,ee=G&&"symbol"==typeof q.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof q},te=function(e,t,r){return e===K&&te(Q,t,r),j(e),t=P(t,!0),j(r),l(H,t)?(r.enumerable?(l(e,V)&&e[V][t]&&(e[V][t]=!1),r=C(r,{enumerable:A(0,!1)})):(l(e,V)||B(e,V,A(1,{})),e[V][t]=!0),Z(e,t,r)):B(e,t,r)};G||(h((q=function(e){if(this instanceof q)throw TypeError("Symbol is not a constructor!");var t=_(0ne;)m(re[ne++]);for(var oe=T(m.store),ie=0;oe.length>ie;)w(oe[ie++]);p(p.S+p.F*!G,"Symbol",{for:function(e){return l(J,e+="")?J[e]:J[e]=q(e)},keyFor:function(e){if(!ee(e))throw TypeError(e+" is not a symbol!");for(var t in J)if(J[t]===e)return t},useSetter:function(){X=!0},useSimple:function(){X=!1}}),p(p.S+p.F*!G,"Object",{create:function(e,t){return void 0===t?C(e):o(C(e),t)},defineProperty:te,defineProperties:o,getOwnPropertyDescriptor:s,getOwnPropertyNames:u,getOwnPropertySymbols:a});var se=b(function(){I.f(1)});p(p.S+p.F*se,"Object",{getOwnPropertySymbols:function(e){return I.f(E(e))}}),F&&p(p.S+p.F*(!G||b(function(){var e=q();return"[null]"!=$([e])||"{}"!=$({a:e})||"{}"!=$(Object(e))})),"JSON",{stringify:function(e){for(var t,r,n=[e],o=1;ou;)void 0!==(r=o(n,t=i[u++]))&&f(s,t,r);return s}})},{"./_create-property":137,"./_export":146,"./_object-gopd":185,"./_own-keys":195,"./_to-iobject":224}],380:[function(e,t,r){var n=e("./_export"),o=e("./_object-to-array")(!1);n(n.S,"Object",{values:function(e){return o(e)}})},{"./_export":146,"./_object-to-array":194}],381:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_core"),i=e("./_global"),s=e("./_species-constructor"),u=e("./_promise-resolve");n(n.P+n.R,"Promise",{finally:function(t){var r=s(this,o.Promise||i.Promise),e="function"==typeof t;return this.then(e?function(e){return u(r,t()).then(function(){return e})}:t,e?function(e){return u(r,t()).then(function(){throw e})}:t)}})},{"./_core":136,"./_export":146,"./_global":154,"./_promise-resolve":199,"./_species-constructor":211}],382:[function(e,t,r){"use strict";var n=e("./_export"),o=e("./_string-pad"),i=e("./_user-agent"),s=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(i);n(n.P+n.F*s,"String",{padEnd:function(e,t){return o(this,e,1>>8^255&o^99,c[r]=o;var i=e[l[o]=r],s=e[i],u=e[s],a=257*e[o]^16843008*o;f[r]=a<<24|a>>>8,p[r]=a<<16|a>>>16,h[r]=a<<8|a>>>24,d[r]=a;a=16843009*u^65537*s^257*i^16843008*r;b[o]=a<<24|a>>>8,y[o]=a<<16|a>>>16,v[o]=a<<8|a>>>24,_[o]=a,r?(r=i^e[e[e[u^i]]],n^=e[e[n]]):r=n=1}}();var m=[0,1,2,4,8,16,32,64,128,27,54],n=r.AES=t.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var e=this._keyPriorReset=this._key,t=e.words,r=e.sigBytes/4,n=4*(1+(this._nRounds=6+r)),o=this._keySchedule=[],i=0;i>>24]<<24|c[s>>>16&255]<<16|c[s>>>8&255]<<8|c[255&s]):(s=c[(s=s<<8|s>>>24)>>>24]<<24|c[s>>>16&255]<<16|c[s>>>8&255]<<8|c[255&s],s^=m[i/r|0]<<24),o[i]=o[i-r]^s}for(var u=this._invKeySchedule=[],a=0;a>>24]]^y[c[s>>>16&255]]^v[c[s>>>8&255]]^_[c[255&s]]}}},encryptBlock:function(e,t){this._doCryptBlock(e,t,this._keySchedule,f,p,h,d,c)},decryptBlock:function(e,t){var r=e[t+1];e[t+1]=e[t+3],e[t+3]=r,this._doCryptBlock(e,t,this._invKeySchedule,b,y,v,_,l);r=e[t+1];e[t+1]=e[t+3],e[t+3]=r},_doCryptBlock:function(e,t,r,n,o,i,s,u){for(var a=this._nRounds,c=e[t]^r[0],l=e[t+1]^r[1],f=e[t+2]^r[2],p=e[t+3]^r[3],h=4,d=1;d>>24]^o[l>>>16&255]^i[f>>>8&255]^s[255&p]^r[h++],y=n[l>>>24]^o[f>>>16&255]^i[p>>>8&255]^s[255&c]^r[h++],v=n[f>>>24]^o[p>>>16&255]^i[c>>>8&255]^s[255&l]^r[h++],_=n[p>>>24]^o[c>>>16&255]^i[l>>>8&255]^s[255&f]^r[h++];c=b,l=y,f=v,p=_}b=(u[c>>>24]<<24|u[l>>>16&255]<<16|u[f>>>8&255]<<8|u[255&p])^r[h++],y=(u[l>>>24]<<24|u[f>>>16&255]<<16|u[p>>>8&255]<<8|u[255&c])^r[h++],v=(u[f>>>24]<<24|u[p>>>16&255]<<16|u[c>>>8&255]<<8|u[255&l])^r[h++],_=(u[p>>>24]<<24|u[c>>>16&255]<<16|u[l>>>8&255]<<8|u[255&f])^r[h++];e[t]=b,e[t+1]=y,e[t+2]=v,e[t+3]=_},keySize:8});e.AES=t._createHelper(n)}(),o.AES},"object"==typeof r?t.exports=r=o(e("./core"),e("./enc-base64"),e("./md5"),e("./evpkdf"),e("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],o):o(n.CryptoJS)},{"./cipher-core":392,"./core":393,"./enc-base64":394,"./evpkdf":396,"./md5":398}],392:[function(e,t,r){var n,o;n=this,o=function(w){w.lib.Cipher||function(){var e=w,t=e.lib,r=t.Base,a=t.WordArray,n=t.BufferedBlockAlgorithm,o=e.enc,i=(o.Utf8,o.Base64),s=e.algo.EvpKDF,u=t.Cipher=n.extend({cfg:r.extend(),createEncryptor:function(e,t){return this.create(this._ENC_XFORM_MODE,e,t)},createDecryptor:function(e,t){return this.create(this._DEC_XFORM_MODE,e,t)},init:function(e,t,r){this.cfg=this.cfg.extend(r),this._xformMode=e,this._key=t,this.reset()},reset:function(){n.reset.call(this),this._doReset()},process:function(e){return this._append(e),this._process()},finalize:function(e){return e&&this._append(e),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(n){return{encrypt:function(e,t,r){return c(t).encrypt(n,e,t,r)},decrypt:function(e,t,r){return c(t).decrypt(n,e,t,r)}}}});function c(e){return"string"==typeof e?g:_}t.StreamCipher=u.extend({_doFinalize:function(){return this._process(!0)},blockSize:1});var l,f=e.mode={},p=t.BlockCipherMode=r.extend({createEncryptor:function(e,t){return this.Encryptor.create(e,t)},createDecryptor:function(e,t){return this.Decryptor.create(e,t)},init:function(e,t){this._cipher=e,this._iv=t}}),h=f.CBC=((l=p.extend()).Encryptor=l.extend({processBlock:function(e,t){var r=this._cipher,n=r.blockSize;d.call(this,e,t,n),r.encryptBlock(e,t),this._prevBlock=e.slice(t,t+n)}}),l.Decryptor=l.extend({processBlock:function(e,t){var r=this._cipher,n=r.blockSize,o=e.slice(t,t+n);r.decryptBlock(e,t),d.call(this,e,t,n),this._prevBlock=o}}),l);function d(e,t,r){var n=this._iv;if(n){var o=n;this._iv=void 0}else o=this._prevBlock;for(var i=0;i>>2];e.sigBytes-=t}},y=(t.BlockCipher=u.extend({cfg:u.cfg.extend({mode:h,padding:b}),reset:function(){u.reset.call(this);var e=this.cfg,t=e.iv,r=e.mode;if(this._xformMode==this._ENC_XFORM_MODE)var n=r.createEncryptor;else{n=r.createDecryptor;this._minBufferSize=1}this._mode&&this._mode.__creator==n?this._mode.init(this,t&&t.words):(this._mode=n.call(r,this,t&&t.words),this._mode.__creator=n)},_doProcessBlock:function(e,t){this._mode.processBlock(e,t)},_doFinalize:function(){var e=this.cfg.padding;if(this._xformMode==this._ENC_XFORM_MODE){e.pad(this._data,this.blockSize);var t=this._process(!0)}else{t=this._process(!0);e.unpad(t)}return t},blockSize:4}),t.CipherParams=r.extend({init:function(e){this.mixIn(e)},toString:function(e){return(e||this.formatter).stringify(this)}})),v=(e.format={}).OpenSSL={stringify:function(e){var t=e.ciphertext,r=e.salt;if(r)var n=a.create([1398893684,1701076831]).concat(r).concat(t);else n=t;return n.toString(i)},parse:function(e){var t=i.parse(e),r=t.words;if(1398893684==r[0]&&1701076831==r[1]){var n=a.create(r.slice(2,4));r.splice(0,4),t.sigBytes-=16}return y.create({ciphertext:t,salt:n})}},_=t.SerializableCipher=r.extend({cfg:r.extend({format:v}),encrypt:function(e,t,r,n){n=this.cfg.extend(n);var o=e.createEncryptor(r,n),i=o.finalize(t),s=o.cfg;return y.create({ciphertext:i,key:r,iv:s.iv,algorithm:e,mode:s.mode,padding:s.padding,blockSize:e.blockSize,formatter:n.format})},decrypt:function(e,t,r,n){return n=this.cfg.extend(n),t=this._parse(t,n.format),e.createDecryptor(r,n).finalize(t.ciphertext)},_parse:function(e,t){return"string"==typeof e?t.parse(e,this):e}}),m=(e.kdf={}).OpenSSL={execute:function(e,t,r,n){n=n||a.random(8);var o=s.create({keySize:t+r}).compute(e,n),i=a.create(o.words.slice(t),4*r);return o.sigBytes=4*t,y.create({key:o,iv:i,salt:n})}},g=t.PasswordBasedCipher=_.extend({cfg:_.cfg.extend({kdf:m}),encrypt:function(e,t,r,n){var o=(n=this.cfg.extend(n)).kdf.execute(r,e.keySize,e.ivSize);n.iv=o.iv;var i=_.encrypt.call(this,e,t,o.key,n);return i.mixIn(o),i},decrypt:function(e,t,r,n){n=this.cfg.extend(n),t=this._parse(t,n.format);var o=n.kdf.execute(r,e.keySize,e.ivSize,t.salt);return n.iv=o.iv,_.decrypt.call(this,e,t,o.key,n)}})}()},"object"==typeof r?t.exports=r=o(e("./core"),e("./evpkdf")):"function"==typeof define&&define.amd?define(["./core","./evpkdf"],o):o(n.CryptoJS)},{"./core":393,"./evpkdf":396}],393:[function(e,t,r){var n,o;n=this,o=function(){var l,r,e,t,n,f,o,i,s,u,a,c,p=p||(l=Math,r=Object.create||function(e){var t;return h.prototype=e,t=new h,h.prototype=null,t},t=(e={}).lib={},n=t.Base={extend:function(e){var t=r(this);return e&&t.mixIn(e),t.hasOwnProperty("init")&&this.init!==t.init||(t.init=function(){t.$super.init.apply(this,arguments)}),(t.init.prototype=t).$super=this,t},create:function(){var e=this.extend();return e.init.apply(e,arguments),e},init:function(){},mixIn:function(e){for(var t in e)e.hasOwnProperty(t)&&(this[t]=e[t]);e.hasOwnProperty("toString")&&(this.toString=e.toString)},clone:function(){return this.init.prototype.extend(this)}},f=t.WordArray=n.extend({init:function(e,t){e=this.words=e||[],this.sigBytes=null!=t?t:4*e.length},toString:function(e){return(e||i).stringify(this)},concat:function(e){var t=this.words,r=e.words,n=this.sigBytes,o=e.sigBytes;if(this.clamp(),n%4)for(var i=0;i>>2]>>>24-i%4*8&255;t[n+i>>>2]|=s<<24-(n+i)%4*8}else for(i=0;i>>2]=r[i>>>2];return this.sigBytes+=o,this},clamp:function(){var e=this.words,t=this.sigBytes;e[t>>>2]&=4294967295<<32-t%4*8,e.length=l.ceil(t/4)},clone:function(){var e=n.clone.call(this);return e.words=this.words.slice(0),e},random:function(e){function t(t){t=t;var r=987654321,n=4294967295;return function(){var e=((r=36969*(65535&r)+(r>>16)&n)<<16)+(t=18e3*(65535&t)+(t>>16)&n)&n;return e/=4294967296,(e+=.5)*(.5>>2]>>>24-o%4*8&255;n.push((i>>>4).toString(16)),n.push((15&i).toString(16))}return n.join("")},parse:function(e){for(var t=e.length,r=[],n=0;n>>3]|=parseInt(e.substr(n,2),16)<<24-n%8*4;return new f.init(r,t/2)}},s=o.Latin1={stringify:function(e){for(var t=e.words,r=e.sigBytes,n=[],o=0;o>>2]>>>24-o%4*8&255;n.push(String.fromCharCode(i))}return n.join("")},parse:function(e){for(var t=e.length,r=[],n=0;n>>2]|=(255&e.charCodeAt(n))<<24-n%4*8;return new f.init(r,t)}},u=o.Utf8={stringify:function(e){try{return decodeURIComponent(escape(s.stringify(e)))}catch(e){throw new Error("Malformed UTF-8 data")}},parse:function(e){return s.parse(unescape(encodeURIComponent(e)))}},a=t.BufferedBlockAlgorithm=n.extend({reset:function(){this._data=new f.init,this._nDataBytes=0},_append:function(e){"string"==typeof e&&(e=u.parse(e)),this._data.concat(e),this._nDataBytes+=e.sigBytes},_process:function(e){var t=this._data,r=t.words,n=t.sigBytes,o=this.blockSize,i=n/(4*o),s=(i=e?l.ceil(i):l.max((0|i)-this._minBufferSize,0))*o,u=l.min(4*s,n);if(s){for(var a=0;a>>2]>>>24-i%4*8&255)<<16|(t[i+1>>>2]>>>24-(i+1)%4*8&255)<<8|t[i+2>>>2]>>>24-(i+2)%4*8&255,u=0;u<4&&i+.75*u>>6*(3-u)&63));var a=n.charAt(64);if(a)for(;o.length%4;)o.push(a);return o.join("")},parse:function(e){var t=e.length,r=this._map,n=this._reverseMap;if(!n){n=this._reverseMap=[];for(var o=0;o>>6-i%4*2;n[o>>>2]|=(s|u)<<24-o%4*8,o++}return a.create(n,o)}(e,t,n)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},e.enc.Base64},"object"==typeof r?t.exports=r=o(e("./core")):"function"==typeof define&&define.amd?define(["./core"],o):o(n.CryptoJS)},{"./core":393}],395:[function(e,t,r){var n,o;n=this,o=function(e){return e.enc.Utf8},"object"==typeof r?t.exports=r=o(e("./core")):"function"==typeof define&&define.amd?define(["./core"],o):o(n.CryptoJS)},{"./core":393}],396:[function(e,t,r){var n,o;n=this,o=function(e){var t,r,n,l,o,i,s;return r=(t=e).lib,n=r.Base,l=r.WordArray,o=t.algo,i=o.MD5,s=o.EvpKDF=n.extend({cfg:n.extend({keySize:4,hasher:i,iterations:1}),init:function(e){this.cfg=this.cfg.extend(e)},compute:function(e,t){for(var r=this.cfg,n=r.hasher.create(),o=l.create(),i=o.words,s=r.keySize,u=r.iterations;i.lengthn&&(t=e.finalize(t)),t.clamp();for(var o=this._oKey=t.clone(),i=this._iKey=t.clone(),s=o.words,u=i.words,a=0;a>>24)|4278255360&(o<<24|o>>>8)}var i=this._hash.words,s=e[t+0],u=e[t+1],a=e[t+2],c=e[t+3],l=e[t+4],f=e[t+5],p=e[t+6],h=e[t+7],d=e[t+8],b=e[t+9],y=e[t+10],v=e[t+11],_=e[t+12],m=e[t+13],g=e[t+14],w=e[t+15],x=i[0],O=i[1],j=i[2],S=i[3];x=k(x,O,j,S,s,7,E[0]),S=k(S,x,O,j,u,12,E[1]),j=k(j,S,x,O,a,17,E[2]),O=k(O,j,S,x,c,22,E[3]),x=k(x,O,j,S,l,7,E[4]),S=k(S,x,O,j,f,12,E[5]),j=k(j,S,x,O,p,17,E[6]),O=k(O,j,S,x,h,22,E[7]),x=k(x,O,j,S,d,7,E[8]),S=k(S,x,O,j,b,12,E[9]),j=k(j,S,x,O,y,17,E[10]),O=k(O,j,S,x,v,22,E[11]),x=k(x,O,j,S,_,7,E[12]),S=k(S,x,O,j,m,12,E[13]),j=k(j,S,x,O,g,17,E[14]),x=P(x,O=k(O,j,S,x,w,22,E[15]),j,S,u,5,E[16]),S=P(S,x,O,j,p,9,E[17]),j=P(j,S,x,O,v,14,E[18]),O=P(O,j,S,x,s,20,E[19]),x=P(x,O,j,S,f,5,E[20]),S=P(S,x,O,j,y,9,E[21]),j=P(j,S,x,O,w,14,E[22]),O=P(O,j,S,x,l,20,E[23]),x=P(x,O,j,S,b,5,E[24]),S=P(S,x,O,j,g,9,E[25]),j=P(j,S,x,O,c,14,E[26]),O=P(O,j,S,x,d,20,E[27]),x=P(x,O,j,S,m,5,E[28]),S=P(S,x,O,j,a,9,E[29]),j=P(j,S,x,O,h,14,E[30]),x=A(x,O=P(O,j,S,x,_,20,E[31]),j,S,f,4,E[32]),S=A(S,x,O,j,d,11,E[33]),j=A(j,S,x,O,v,16,E[34]),O=A(O,j,S,x,g,23,E[35]),x=A(x,O,j,S,u,4,E[36]),S=A(S,x,O,j,l,11,E[37]),j=A(j,S,x,O,h,16,E[38]),O=A(O,j,S,x,y,23,E[39]),x=A(x,O,j,S,m,4,E[40]),S=A(S,x,O,j,s,11,E[41]),j=A(j,S,x,O,c,16,E[42]),O=A(O,j,S,x,p,23,E[43]),x=A(x,O,j,S,b,4,E[44]),S=A(S,x,O,j,_,11,E[45]),j=A(j,S,x,O,w,16,E[46]),x=C(x,O=A(O,j,S,x,a,23,E[47]),j,S,s,6,E[48]),S=C(S,x,O,j,h,10,E[49]),j=C(j,S,x,O,g,15,E[50]),O=C(O,j,S,x,f,21,E[51]),x=C(x,O,j,S,_,6,E[52]),S=C(S,x,O,j,c,10,E[53]),j=C(j,S,x,O,y,15,E[54]),O=C(O,j,S,x,u,21,E[55]),x=C(x,O,j,S,d,6,E[56]),S=C(S,x,O,j,w,10,E[57]),j=C(j,S,x,O,p,15,E[58]),O=C(O,j,S,x,m,21,E[59]),x=C(x,O,j,S,l,6,E[60]),S=C(S,x,O,j,v,10,E[61]),j=C(j,S,x,O,a,15,E[62]),O=C(O,j,S,x,b,21,E[63]),i[0]=i[0]+x|0,i[1]=i[1]+O|0,i[2]=i[2]+j|0,i[3]=i[3]+S|0},_doFinalize:function(){var e=this._data,t=e.words,r=8*this._nDataBytes,n=8*e.sigBytes;t[n>>>5]|=128<<24-n%32;var o=l.floor(r/4294967296),i=r;t[15+(64+n>>>9<<4)]=16711935&(o<<8|o>>>24)|4278255360&(o<<24|o>>>8),t[14+(64+n>>>9<<4)]=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8),e.sigBytes=4*(t.length+1),this._process();for(var s=this._hash,u=s.words,a=0;a<4;a++){var c=u[a];u[a]=16711935&(c<<8|c>>>24)|4278255360&(c<<24|c>>>8)}return s},clone:function(){var e=n.clone.call(this);return e._hash=this._hash.clone(),e}});function k(e,t,r,n,o,i,s){var u=e+(t&r|~t&n)+o+s;return(u<>>32-i)+t}function P(e,t,r,n,o,i,s){var u=e+(t&n|r&~n)+o+s;return(u<>>32-i)+t}function A(e,t,r,n,o,i,s){var u=e+(t^r^n)+o+s;return(u<>>32-i)+t}function C(e,t,r,n,o,i,s){var u=e+(r^(t|~n))+o+s;return(u<>>32-i)+t}e.MD5=n._createHelper(i),e.HmacMD5=n._createHmacHelper(i)}(Math),s.MD5},"object"==typeof r?t.exports=r=o(e("./core")):"function"==typeof define&&define.amd?define(["./core"],o):o(n.CryptoJS)},{"./core":393}],399:[function(e,t,r){var n,o;n=this,o=function(e){var t,r,n,o,i,f,s;return r=(t=e).lib,n=r.WordArray,o=r.Hasher,i=t.algo,f=[],s=i.SHA1=o.extend({_doReset:function(){this._hash=new n.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(e,t){for(var r=this._hash.words,n=r[0],o=r[1],i=r[2],s=r[3],u=r[4],a=0;a<80;a++){if(a<16)f[a]=0|e[t+a];else{var c=f[a-3]^f[a-8]^f[a-14]^f[a-16];f[a]=c<<1|c>>>31}var l=(n<<5|n>>>27)+u+f[a];l+=a<20?1518500249+(o&i|~o&s):a<40?1859775393+(o^i^s):a<60?(o&i|o&s|i&s)-1894007588:(o^i^s)-899497514,u=s,s=i,i=o<<30|o>>>2,o=n,n=l}r[0]=r[0]+n|0,r[1]=r[1]+o|0,r[2]=r[2]+i|0,r[3]=r[3]+s|0,r[4]=r[4]+u|0},_doFinalize:function(){var e=this._data,t=e.words,r=8*this._nDataBytes,n=8*e.sigBytes;return t[n>>>5]|=128<<24-n%32,t[14+(64+n>>>9<<4)]=Math.floor(r/4294967296),t[15+(64+n>>>9<<4)]=r,e.sigBytes=4*t.length,this._process(),this._hash},clone:function(){var e=o.clone.call(this);return e._hash=this._hash.clone(),e}}),t.SHA1=o._createHelper(s),t.HmacSHA1=o._createHmacHelper(s),e.SHA1},"object"==typeof r?t.exports=r=o(e("./core")):"function"==typeof define&&define.amd?define(["./core"],o):o(n.CryptoJS)},{"./core":393}],400:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault")(e("./index.js"));t.exports=n.default},{"./index.js":401,"@babel/runtime/helpers/interopRequireDefault":402}],401:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.default=void 0;function n(e){var t=0=r.length){var s=a(n,r[i]);n=s?s.get||s.value:n[r[i]]}else n=n[r[i]];return n}},{"function-bind":412,"has-symbols":415}],407:[function(e,t,r){"use strict";var n=e("function-bind"),o=e("../GetIntrinsic")("%Function%"),i=o.apply,s=o.call;t.exports=function(){return n.apply(s,arguments)},t.exports.apply=function(){return n.apply(i,arguments)}},{"../GetIntrinsic":406,"function-bind":412}],408:[function(e,t,r){"use strict";var n=e("../GetIntrinsic"),o=e("./callBind"),i=o(n("String.prototype.indexOf"));t.exports=function(e,t){var r=n(e,!!t);return"function"==typeof r&&i(e,".prototype.")?o(r):r}},{"../GetIntrinsic":406,"./callBind":407}],409:[function(O,j,e){(function(e){"use strict";var t=O("is-arguments");if(O("has-symbols")()||O("has-symbols/shams")()){var r=Symbol.iterator;j.exports=function(e){return null!=e&&void 0!==e[r]?e[r]():t(e)?Array.prototype[r].call(e):void 0}}else{var o=O("isarray"),i=O("is-string"),n=O("es-abstract/GetIntrinsic"),s=n("%Map%",!0),u=n("%Set%",!0),a=O("es-abstract/helpers/callBound"),c=a("Array.prototype.push"),l=a("String.prototype.charCodeAt"),f=a("String.prototype.slice"),p=function(r){var n=0;return{next:function(){var e,t=n>=r.length;return t||(e=r[n],n+=1),{done:t,value:e}}}},h=function(r){if(o(r)||t(r))return p(r);if(i(r)){var n=0;return{next:function(){var e=function(e,t){if(e.length<=t+1)return t+1;var r=l(e,t);if(r<55296||56319r.length,value:t}}}}};if(s||u){var d=O("is-map"),b=O("is-set"),y=a("Map.prototype.forEach",!0),v=a("Set.prototype.forEach",!0);if(void 0===e||!e.versions||!e.versions.node)var _=a("Map.prototype.iterator",!0),m=a("Set.prototype.iterator",!0),g=function(e){var t=!1;return{next:function(){try{return{done:t,value:t?void 0:e.next()}}catch(e){return{done:t=!0,value:void 0}}}}};var w=a("Map.prototype.@@iterator",!0)||a("Map.prototype._es6-shim iterator_",!0),x=a("Set.prototype.@@iterator",!0)||a("Set.prototype._es6-shim iterator_",!0);j.exports=function(e){return function(e){if(d(e)){if(_)return g(_(e));if(w)return w(e);if(y){var r=[];return y(e,function(e,t){c(r,[t,e])}),p(r)}}if(b(e)){if(m)return g(m(e));if(x)return x(e);if(v){var t=[];return v(e,function(e){c(t,e)}),p(t)}}}(e)||h(e)}}else j.exports=h}}).call(this,O("_process"))},{_process:495,"es-abstract/GetIntrinsic":406,"es-abstract/helpers/callBound":408,"has-symbols":415,"has-symbols/shams":416,"is-arguments":420,"is-map":425,"is-set":432,"is-string":433,isarray:437}],410:[function(e,t,r){var a=Object.create||function(e){function t(){}return t.prototype=e,new t},s=Object.keys||function(e){var t=[];for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.push(r);return r},i=Function.prototype.bind||function(e){var t=this;return function(){return t.apply(e,arguments)}};function n(){this._events&&Object.prototype.hasOwnProperty.call(this,"_events")||(this._events=a(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0}((t.exports=n).EventEmitter=n).prototype._events=void 0,n.prototype._maxListeners=void 0;var o,u=10;try{var c={};Object.defineProperty&&Object.defineProperty(c,"x",{value:0}),o=0===c.x}catch(e){o=!1}function l(e){return void 0===e._maxListeners?n.defaultMaxListeners:e._maxListeners}function f(e,t,r,n){var o,i,s;if("function"!=typeof r)throw new TypeError('"listener" argument must be a function');if((i=e._events)?(i.newListener&&(e.emit("newListener",t,r.listener?r.listener:r),i=e._events),s=i[t]):(i=e._events=a(null),e._eventsCount=0),s){if("function"==typeof s?s=i[t]=n?[r,s]:[s,r]:n?s.unshift(r):s.push(r),!s.warned&&(o=l(e))&&0o){s.warned=!0;var u=new Error("Possible EventEmitter memory leak detected. "+s.length+' "'+String(t)+'" listeners added. Use emitter.setMaxListeners() to increase limit.');u.name="MaxListenersExceededWarning",u.emitter=e,u.type=t,u.count=s.length,"object"==typeof console&&console.warn&&console.warn("%s: %s",u.name,u.message)}}else s=i[t]=r,++e._eventsCount;return e}function p(){if(!this.fired)switch(this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length){case 0:return this.listener.call(this.target);case 1:return this.listener.call(this.target,arguments[0]);case 2:return this.listener.call(this.target,arguments[0],arguments[1]);case 3:return this.listener.call(this.target,arguments[0],arguments[1],arguments[2]);default:for(var e=new Array(arguments.length),t=0;t>1,l=-7,f=r?o-1:0,p=r?-1:1,h=e[t+f];for(f+=p,i=h&(1<<-l)-1,h>>=-l,l+=u;0>=-l,l+=n;0>1,p=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,h=n?0:i-1,d=n?1:-1,b=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(u=isNaN(t)?1:0,s=l):(s=Math.floor(Math.log(t)/Math.LN2),t*(a=Math.pow(2,-s))<1&&(s--,a*=2),2<=(t+=1<=s+f?p/a:p*Math.pow(2,1-f))*a&&(s++,a/=2),l<=s+f?(u=0,s=l):1<=s+f?(u=(t*a-1)*Math.pow(2,o),s+=f):(u=t*Math.pow(2,f-1)*Math.pow(2,o),s=0));8<=o;e[r+h]=255&u,h+=d,u/=256,o-=8);for(s=s< 9007199254740992 || "+e+" < -9007199254740992)"},string:function(e){return"typeof "+e+' === "string"'}},L=function(e,w,x,t,O){function j(e){return e+(r[e]=(r[e]||0)+1)}function S(e){if(n[e])return n[e];var t=j("pattern");return P[t]=new RegExp(e),n[e]=t}function E(){var e=o.shift();return o.push(e+e[0]),e}var k=O?a(N,O.formats):N,P={unique:i,formats:k,isMultipleOf:s},A=!!O&&!!O.verbose,C=!(!O||void 0===O.greedy)&&O.greedy,r={},n={},o=["i","j","k","l","m","n","o","p","q","r","s","t","u","v","x","y","z"],R=function(n,r,o,i,s){var u=r.properties,a=r.type,t=!1;Array.isArray(r.items)&&(u={},r.items.forEach(function(e,t){u[t]=e}),a="array",t=!0);function c(e,t,r){M("errors++"),!0===o&&(M("if (validate.errors === null) validate.errors = []"),A?M("validate.errors.push({field:%s,message:%s,value:%s,type:%s,schemaPath:%s})",I(t||n),JSON.stringify(e),r||n,JSON.stringify(a),JSON.stringify(s)):M("validate.errors.push({field:%s,message:%s})",I(t||n),JSON.stringify(e)))}var e=0;!0===r.required?(e++,M("if (%s === undefined) {",n),c("is required"),M("} else {")):(e++,M("if (%s !== undefined) {",n));var l=[].concat(a).map(function(e){if(e&&!B.hasOwnProperty(e))throw new Error("Unknown type: "+e);return B[e||"any"](n)}).join(" || ")||"true";if("true"!==l&&(e++,M("if (!(%s)) {",l),c("is the wrong type"),M("} else {")),t)if(!1===r.additionalItems)M("if (%s.length > %d) {",n,r.items.length),c("has additional items"),M("}");else if(r.additionalItems){var f=E();M("for (var %s = %d; %s < %s.length; %s++) {",f,r.items.length,f,n,f),R(n+"["+f+"]",r.additionalItems,o,i,s.concat("additionalItems")),M("}")}if(r.format&&k[r.format]){"string"!==a&&N[r.format]&&M("if (%s) {",B.string(n));var p=j("format");P[p]=k[r.format],"function"==typeof P[p]?M("if (!%s(%s)) {",p,n):M("if (!%s.test(%s)) {",p,n),c("must be "+r.format+" format"),M("}"),"string"!==a&&N[r.format]&&M("}")}if(Array.isArray(r.required)){M("if ((%s)) {","object"!==a?B.object(n):"true"),M("var missing = 0"),r.required.map(function(e){var t=D(n,e);M("if (%s === undefined) {",t),c("is required",t),M("missing++"),M("}")}),M("}"),C||(M("if (missing === 0) {"),e++)}if(r.uniqueItems&&("array"!==a&&M("if (%s) {",B.array(n)),M("if (!(unique(%s))) {",n),c("must be unique"),M("}"),"array"!==a&&M("}")),r.enum){var h=r.enum.some(function(e){return"object"==typeof e})?function(e){return"JSON.stringify("+n+") !== JSON.stringify("+JSON.stringify(e)+")"}:function(e){return n+" !== "+JSON.stringify(e)};M("if (%s) {",r.enum.map(h).join(" && ")||"false"),c("must be an enum value"),M("}")}if(r.dependencies&&("object"!==a&&M("if (%s) {",B.object(n)),Object.keys(r.dependencies).forEach(function(e){var t=r.dependencies[e];"string"==typeof t&&(t=[t]);Array.isArray(t)&&(M("if (%s !== undefined && !(%s)) {",D(n,e),t.map(function(e){return D(n,e)+" !== undefined"}).join(" && ")||"true"),c("dependencies not set"),M("}")),"object"==typeof t&&(M("if (%s !== undefined) {",D(n,e)),R(n,t,o,i,s.concat(["dependencies",e])),M("}"))}),"object"!==a&&M("}")),r.additionalProperties||!1===r.additionalProperties){"object"!==a&&M("if (%s) {",B.object(n));f=E();var d=j("keys"),b=Object.keys(u||{}).map(function(e){return d+"["+f+"] !== "+JSON.stringify(e)}).concat(Object.keys(r.patternProperties||{}).map(function(e){return"!"+S(e)+".test("+d+"["+f+"])"})).join(" && ")||"true";M("var %s = Object.keys(%s)",d,n)("for (var %s = 0; %s < %s.length; %s++) {",f,f,d,f)("if (%s) {",b),!1===r.additionalProperties?(i&&M("delete %s",n+"["+d+"["+f+"]]"),c("has additional properties",null,JSON.stringify(n+".")+" + "+d+"["+f+"]")):R(n+"["+d+"["+f+"]]",r.additionalProperties,o,i,s.concat(["additionalProperties"])),M("}")("}"),"object"!==a&&M("}")}if(r.$ref){var y=function(e,t,n){var o=function(r){return r&&r.id===n?r:"object"==typeof r&&r?Object.keys(r).reduce(function(e,t){return e||o(r[t])},null):null},r=o(e);if(r)return r;n=(n=n.replace(/^#/,"")).replace(/\/$/,"");try{return T.get(e,decodeURI(n))}catch(e){var i,s=n.indexOf("#");if(0!==s)if(-1===s)i=t[n];else{i=t[n.slice(0,s)];var u=n.slice(s).replace(/^#/,"");try{return T.get(i,u)}catch(e){}}else i=t[n];return i||null}}(x,O&&O.schemas||{},r.$ref);if(y){var v=w[r.$ref];v||(w[r.$ref]=function(e){return v(e)},v=L(y,w,x,!1,O));p=j("ref");P[p]=v,M("if (!(%s(%s))) {",p,n),c("referenced schema does not match"),M("}")}}if(r.not){var _=j("prev");M("var %s = errors",_),R(n,r.not,!1,i,s.concat("not")),M("if (%s === errors) {",_),c("negative schema matches"),M("} else {")("errors = %s",_)("}")}if(r.items&&!t){"array"!==a&&M("if (%s) {",B.array(n));f=E();M("for (var %s = 0; %s < %s.length; %s++) {",f,f,n,f),R(n+"["+f+"]",r.items,o,i,s.concat("items")),M("}"),"array"!==a&&M("}")}if(r.patternProperties){"object"!==a&&M("if (%s) {",B.object(n));d=j("keys"),f=E();M("var %s = Object.keys(%s)",d,n)("for (var %s = 0; %s < %s.length; %s++) {",f,f,d,f),Object.keys(r.patternProperties).forEach(function(e){var t=S(e);M("if (%s.test(%s)) {",t,d+"["+f+"]"),R(n+"["+d+"["+f+"]]",r.patternProperties[e],o,i,s.concat(["patternProperties",e])),M("}")}),M("}"),"object"!==a&&M("}")}if(r.pattern){var m=S(r.pattern);"string"!==a&&M("if (%s) {",B.string(n)),M("if (!(%s.test(%s))) {",m,n),c("pattern mismatch"),M("}"),"string"!==a&&M("}")}if(r.allOf&&r.allOf.forEach(function(e,t){R(n,e,o,i,s.concat(["allOf",t]))}),r.anyOf&&r.anyOf.length){_=j("prev");r.anyOf.forEach(function(e,t){0===t?M("var %s = errors",_):M("if (errors !== %s) {",_)("errors = %s",_),R(n,e,!1,!1,s)}),r.anyOf.forEach(function(e,t){t&&M("}")}),M("if (%s !== errors) {",_),c("no schemas match"),M("}")}if(r.oneOf&&r.oneOf.length){_=j("prev");var g=j("passes");M("var %s = errors",_)("var %s = 0",g),r.oneOf.forEach(function(e,t){R(n,e,!1,!1,s),M("if (%s === errors) {",_)("%s++",g)("} else {")("errors = %s",_)("}")}),M("if (%s !== 1) {",g),c("no (or more than one) schemas match"),M("}")}for(void 0!==r.multipleOf&&("number"!==a&&"integer"!==a&&M("if (%s) {",B.number(n)),M("if (!isMultipleOf(%s, %d)) {",n,r.multipleOf),c("has a remainder"),M("}"),"number"!==a&&"integer"!==a&&M("}")),void 0!==r.maxProperties&&("object"!==a&&M("if (%s) {",B.object(n)),M("if (Object.keys(%s).length > %d) {",n,r.maxProperties),c("has more properties than allowed"),M("}"),"object"!==a&&M("}")),void 0!==r.minProperties&&("object"!==a&&M("if (%s) {",B.object(n)),M("if (Object.keys(%s).length < %d) {",n,r.minProperties),c("has less properties than allowed"),M("}"),"object"!==a&&M("}")),void 0!==r.maxItems&&("array"!==a&&M("if (%s) {",B.array(n)),M("if (%s.length > %d) {",n,r.maxItems),c("has more items than allowed"),M("}"),"array"!==a&&M("}")),void 0!==r.minItems&&("array"!==a&&M("if (%s) {",B.array(n)),M("if (%s.length < %d) {",n,r.minItems),c("has less items than allowed"),M("}"),"array"!==a&&M("}")),void 0!==r.maxLength&&("string"!==a&&M("if (%s) {",B.string(n)),M("if (%s.length > %d) {",n,r.maxLength),c("has longer length than allowed"),M("}"),"string"!==a&&M("}")),void 0!==r.minLength&&("string"!==a&&M("if (%s) {",B.string(n)),M("if (%s.length < %d) {",n,r.minLength),c("has less length than allowed"),M("}"),"string"!==a&&M("}")),void 0!==r.minimum&&("number"!==a&&"integer"!==a&&M("if (%s) {",B.number(n)),M("if (%s %s %d) {",n,r.exclusiveMinimum?"<=":"<",r.minimum),c("is less than minimum"),M("}"),"number"!==a&&"integer"!==a&&M("}")),void 0!==r.maximum&&("number"!==a&&"integer"!==a&&M("if (%s) {",B.number(n)),M("if (%s %s %d) {",n,r.exclusiveMaximum?">=":">",r.maximum),c("is more than maximum"),M("}"),"number"!==a&&"integer"!==a&&M("}")),u&&Object.keys(u).forEach(function(e){Array.isArray(a)&&-1!==a.indexOf("null")&&M("if (%s !== null) {",n),R(D(n,e),u[e],o,i,s.concat(t?e:["properties",e])),Array.isArray(a)&&-1!==a.indexOf("null")&&M("}")});e--;)M("}")},M=u("function validate(data) {")("if (data === undefined) data = null")("validate.errors = null")("var errors = 0");return R("data",e,t,O&&O.filter,[]),M("return errors === 0")("}"),(M=M.toFunction(P)).errors=null,Object.defineProperty&&Object.defineProperty(M,"error",{get:function(){return M.errors?M.errors.map(function(e){return e.field+" "+e.message}).join("\n"):""}}),M.toJSON=function(){return e},M};n.exports=function(e,t){return"string"==typeof e&&(e=JSON.parse(e)),L(e,{},e,!0,t)},n.exports.filter=function(e,t){var r=n.exports(e,a(t,{filter:!0}));return function(e){return r(e),e}}},{"./formats":427,"generate-function":413,"generate-object-property":414,jsonpointer:438,xtend:713}],429:[function(e,t,r){"use strict";var n=Number.prototype.toString,o=Object.prototype.toString,i="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;t.exports=function(e){return"number"==typeof e||"object"==typeof e&&(i?function(e){try{return n.call(e),!0}catch(e){return!1}}(e):"[object Number]"===o.call(e))}},{}],430:[function(e,t,r){"use strict";t.exports=function(e){return/^[$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc][$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc0-9\u0300-\u036f\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08e4-\u08fe\u0900-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c01-\u0c03\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c82\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d02\u0d03\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d82\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u1810-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19b0-\u19c0\u19c8\u19c9\u19d0-\u19d9\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf2-\u1cf4\u1dc0-\u1de6\u1dfc-\u1dff\u200c\u200d\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua880\ua881\ua8b4-\ua8c4\ua8d0-\ua8d9\ua8e0-\ua8f1\ua900-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f]*$/.test(e)}},{}],431:[function(e,t,r){"use strict";var n=e("has"),o=RegExp.prototype.exec,i=Object.getOwnPropertyDescriptor,s=Object.prototype.toString,u="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;t.exports=function(e){if(!e||"object"!=typeof e)return!1;if(!u)return"[object RegExp]"===s.call(e);var t=i(e,"lastIndex");return!(!t||!n(t,"value"))&&function(e){try{var t=e.lastIndex;return e.lastIndex=0,o.call(e),!0}catch(e){return!1}finally{e.lastIndex=t}}(e)}},{has:417}],432:[function(e,t,r){"use strict";var n,o="function"==typeof Map&&Map.prototype?Map:null,i="function"==typeof Set&&Set.prototype?Set:null;i||(n=function(){return!1});var s=o?Map.prototype.has:null,u=i?Set.prototype.has:null;n||u||(n=function(){return!1}),t.exports=n||function(e){if(!e||"object"!=typeof e)return!1;try{if(u.call(e),s)try{s.call(e)}catch(e){return!0}return e instanceof i}catch(e){}return!1}},{}],433:[function(e,t,r){"use strict";var n=String.prototype.valueOf,o=Object.prototype.toString,i="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;t.exports=function(e){return"string"==typeof e||"object"==typeof e&&(i?function(e){try{return n.call(e),!0}catch(e){return!1}}(e):"[object String]"===o.call(e))}},{}],434:[function(e,t,r){"use strict";var n=Object.prototype.toString;if(e("has-symbols")()){var o=Symbol.prototype.toString,i=/^Symbol\(.*\)$/;t.exports=function(e){if("symbol"==typeof e)return!0;if("[object Symbol]"!==n.call(e))return!1;try{return"symbol"==typeof(t=e).valueOf()&&i.test(o.call(t))}catch(e){return!1}var t}}else t.exports=function(){return!1}},{"has-symbols":415}],435:[function(e,t,r){"use strict";var n,o="function"==typeof WeakMap&&WeakMap.prototype?WeakMap:null,i="function"==typeof WeakSet&&WeakSet.prototype?WeakSet:null;o||(n=function(){return!1});var s=o?o.prototype.has:null,u=i?i.prototype.has:null;n||s||(n=function(){return!1}),t.exports=n||function(e){if(!e||"object"!=typeof e)return!1;try{if(s.call(e,s),u)try{u.call(e,u)}catch(e){return!0}return e instanceof o}catch(e){}return!1}},{}],436:[function(e,t,r){"use strict";var n,o="function"==typeof WeakMap&&WeakMap.prototype?WeakMap:null,i="function"==typeof WeakSet&&WeakSet.prototype?WeakSet:null;o||(n=function(){return!1});var s=o?o.prototype.has:null,u=i?i.prototype.has:null;n||u||(t.exports=function(){return!1}),t.exports=n||function(e){if(!e||"object"!=typeof e)return!1;try{if(u.call(e,u),s)try{s.call(e,s)}catch(e){return!0}return e instanceof i}catch(e){}return!1}},{}],437:[function(e,t,r){var n={}.toString;t.exports=Array.isArray||function(e){return"[object Array]"==n.call(e)}},{}],438:[function(e,t,r){var n=/~/,o=/~[01]/g;function i(e){switch(e){case"~1":return"/";case"~0":return"~"}throw new Error("Invalid tilde escape: "+e)}function a(e){return n.test(e)?e.replace(o,i):e}function s(e){if("string"==typeof e){if(""===(e=e.split("/"))[0])return e;throw new Error("Invalid JSON pointer.")}if(Array.isArray(e))return e;throw new Error("Invalid JSON pointer.")}function u(e,t){if("object"!=typeof e)throw new Error("Invalid input object.");var r=(t=s(t)).length;if(1===r)return e;for(var n=1;n=e.length)return;for(;e.lengthr&&(e[t]=r)}else e[t]=r},$max:function(e,t,r){if("number"!=typeof r)throw l("Modifier $max allowed for numbers only",{field:t});if(t in e){if("number"!=typeof e[t])throw l("Cannot apply $max modifier to non-number",{field:t});e[t]"}if(C(n))return 0===n.length?"[]":"[ "+L(n,c).join(", ")+" ]";if("[object Error]"===I(n)){var b=L(n,c);return 0===b.length?"["+String(n)+"]":"{ ["+String(n)+"] "+b.join(", ")+" }"}if("object"==typeof n){if(P&&"function"==typeof n[P])return n[P]();if("function"==typeof n.inspect)return n.inspect()}if(function(e){if(!m||!e||"object"!=typeof e)return!1;try{m.call(e);try{w.call(e)}catch(e){return!0}return e instanceof Map}catch(e){}return!1}(n)){var y=[];return g.call(n,function(e,t){y.push(c(t,n)+" => "+c(e,n))}),B("Map",m.call(n),y)}if(function(e){if(!w||!e||"object"!=typeof e)return!1;try{w.call(e);try{m.call(e)}catch(e){return!0}return e instanceof Set}catch(e){}return!1}(n)){var v=[];return x.call(n,function(e){v.push(c(e,n))}),B("Set",w.call(n),v)}if(function(e){if(!O||!e||"object"!=typeof e)return!1;try{O.call(e,O);try{j.call(e,j)}catch(e){return!0}return e instanceof WeakMap}catch(e){}return!1}(n))return N("WeakMap");if(function(e){if(!j||!e||"object"!=typeof e)return!1;try{j.call(e,j);try{O.call(e,O)}catch(e){return!0}return e instanceof WeakSet}catch(e){}return!1}(n))return N("WeakSet");if("[object Number]"===I(n))return T(c(Number(n)));if("[object BigInt]"===I(n))return T(c(k.call(n)));if("[object Boolean]"===I(n))return T(S.call(n));if("[object String]"===I(n))return T(c(String(n)));if("[object Date]"===I(n)||"[object RegExp]"===I(n))return String(n);var _=L(n,c);return 0===_.length?"{}":"{ "+_.join(", ")+" }"};var c=Object.prototype.hasOwnProperty||function(e){return e in this};function M(e,t){return c.call(e,t)}function I(e){return u.call(e)}function D(e){var t=e.charCodeAt(0),r={8:"b",9:"t",10:"n",12:"f",13:"r"}[t];return r?"\\"+r:"\\x"+(t<16?"0":"")+t.toString(16)}function T(e){return"Object("+e+")"}function N(e){return e+" { ? }"}function B(e,t,r){return e+" ("+t+") {"+r.join(", ")+"}"}function L(e,t){var r=C(e),n=[];if(r){n.length=e.length;for(var o=0;ot.length?1:-1}:function(e,t){for(var r=Object.keys(e),n=Object.keys(t),o=Math.min(r.length,n.length),i=0;in.length?1:-1})(e,t)}function s(e){switch(typeof e){case"undefined":return null;case"number":return e===1/0||e===-1/0||isNaN(e)?null:e;case"object":var t=e;if(Array.isArray(e)){var r=e.length;e=new Array(r);for(var n=0;nn.since&&!n.cancelled&&(n.since=e.seq,n.onChange(e))}).on("complete",function(){"waiting"===i&&a(s),i=!1}).on("error",function(){i=!1})}}},j.prototype.removeListener=function(e,t){t in this._listeners&&(i.EventEmitter.prototype.removeListener.call(this,e,this._listeners[t]),delete this._listeners[t])},j.prototype.notifyLocalWindows=function(e){O()&&(localStorage[e]="a"===localStorage[e]?"b":"a")},j.prototype.notify=function(e){this.emit(e),this.notifyLocalWindows(e)};var E="function"==typeof Object.assign?Object.assign:function(e){for(var t=Object(e),r=1;r=r.length)){var n,e=Math.min(s+6,r.length),t=r.slice(s,e);n=s,t.forEach(function(i,e){var s=n+e,t=c.get(i),r=m(t[0],["atts_since","attachments"]);r.open_revs=t.map(function(e){return e.rev}),r.open_revs=r.open_revs.filter(w);var u=w;0===r.open_revs.length&&(delete r.open_revs,u=x),["revs","attachments","binary","ajax","latest"].forEach(function(e){e in a&&(r[e]=a[e])}),o.get(i,r,function(e,t){var r,n,o;r=e?[{error:e}]:u(t),n=i,o=r,l[s]={id:n,docs:o},f(),p()})}),s+=t.length}}p()},r.changesHandler=j,r.clone=y,r.defaultBackOff=function(e){var t,r,n=0;return e||(n=2e3),t=e,r=n,t=parseInt(t,10)||0,(r=parseInt(r,10))!=r||r<=t?r=(t||1)<<1:r+=1,6e5c&&u.push(e)}),j.traverseRevTree(t,function(e,t,r,n,o){var i=t+"-"+r;"available"===o.status&&-1!==u.indexOf(i)&&a.push(i)}),f._doCompaction(o,a,l)})}),v.prototype.compact=l.adapterFun("compact",function(e,t){"function"==typeof e&&(t=e,e={});e=e||{},this._compactionQueue=this._compactionQueue||[],this._compactionQueue.push({opts:e,callback:t}),1===this._compactionQueue.length&&function r(n){var e=n._compactionQueue[0],t=e.opts,o=e.callback;n.get("_local/compaction").catch(function(){return!1}).then(function(e){e&&e.last_seq&&(t.last_seq=e.last_seq),n._compact(t,function(e,t){e?o(e):o(null,t),l.nextTick(function(){n._compactionQueue.shift(),n._compactionQueue.length&&r(n)})})})}(this)}),v.prototype._compact=function(e,r){var n=this,t={return_docs:!1,last_seq:e.last_seq||0},o=[];n.changes(t).on("change",function(e){o.push(n.compactDocument(e.id,0))}).on("complete",function(e){var t=e.last_seq;Promise.all(o).then(function(){return l.upsert(n,"_local/compaction",function(e){return(!e.last_seq||e.last_seqs.length)&&g(i,s)),o=g(r,e);return n&&o}var i,s;return function(e,t){e=e.slice();for(var r=0,n=t.length;r=s.length?i:s,0===s.length?{fields:o}:{fields:o=o.sort(function(e,t){var r=s.indexOf(e);-1===r&&(r=Number.MAX_VALUE);var n=s.indexOf(t);return-1===n&&(n=Number.MAX_VALUE),rt.length;)s.pop();if(0r.$gte&&(r.$gte=t):t>=r.$gte&&(delete r.$gte,r.$gt=t):void 0!==r.$gt?"$gte"===e?t>r.$gt&&(delete r.$gt,r.$gte=t):t>r.$gt&&(r.$gt=t):r[e]=t}(e,i,u):"$lt"===e||"$lte"===e?function(e,t,r){if(void 0!==r.$eq)return;void 0!==r.$lte?"$lte"===e?t>>1],t)<0?o=1+n:i=n;return o}(e,t,r);e.splice(n,0,t)}function b(e,t){for(var r,n,o=t,i=e.length;ot){n=n||{};var l=c.length-t;u={pos:a.pos+l,ids:b(c,l)};for(var f=0;f=t)&&(c.push(l),l={seq:0,changes:[],docs:[]},"pending"!==s.state&&"stopped"!==s.state||(s.state="active",s.emit("active")),E()):0!==c.length||a||((b&&x.live||p)&&(s.state="pending",s.emit("paused")),p&&A())}function P(e,t){h||(t.message||(t.message=e),u.ok=!1,u.status="aborting",c=[],l={seq:0,changes:[],docs:[]},A(t))}function A(e){if(!(h||s.cancelled&&(u.status="cancelled",f)))if(u.status=u.status||"complete",u.end_time=(new Date).toISOString(),u.last_seq=d,h=!0,e){(e=L.createError(e)).result=u;var t=(e.name||"").toLowerCase();"unauthorized"===t||"forbidden"===t?(s.emit("error",e),s.removeAllListeners()):function(e,t,r,n){if(!1===e.retry)return t.emit("error",r),t.removeAllListeners();if("function"!=typeof e.back_off_function&&(e.back_off_function=q.defaultBackOff),t.emit("requestError",r),"active"===t.state||"pending"===t.state){t.emit("paused",r),t.state="stopped";var o=function(){e.current_back_off=$};t.once("paused",function(){t.removeListener("active",o)}),t.once("active",o)}e.current_back_off=e.current_back_off||$,e.current_back_off=e.back_off_function(e.current_back_off),setTimeout(n,e.current_back_off)}(i,s,e,function(){U(n,o,i,s)})}else s.emit("complete",u),s.removeAllListeners()}function C(e,t,r){if(s.cancelled)return A();"number"==typeof t&&(l.pending=t),q.filterChange(i)(e)&&(l.seq=e.seq||r,l.changes.push(e),q.nextTick(function(){k(0===c.length&&x.live)}))}function R(e){if(v=!1,s.cancelled)return A();if(0r.$gte&&(r.$gte=t):t>=r.$gte&&(delete r.$gte,r.$gt=t):void 0!==r.$gt?"$gte"===e?t>r.$gt&&(delete r.$gt,r.$gte=t):t>r.$gt&&(r.$gt=t):r[e]=t}(e,i,u):"$lt"===e||"$lte"===e?function(e,t,r){if(void 0!==r.$eq)return;void 0!==r.$lte?"$lte"===e?tn.since&&!n.cancelled&&(n.since=e.seq,n.onChange(e))}).on("complete",function(){"waiting"===i&&a(s),i=!1}).on("error",function(){i=!1})}}},O.prototype.removeListener=function(e,t){t in this._listeners&&(c.EventEmitter.prototype.removeListener.call(this,e,this._listeners[t]),delete this._listeners[t])},O.prototype.notifyLocalWindows=function(e){x()&&(localStorage[e]="a"===localStorage[e]?"b":"a")},O.prototype.notify=function(e){this.emit(e),this.notifyLocalWindows(e)};var S="function"==typeof Object.assign?Object.assign:function(e){for(var t=Object(e),r=1;r=r.length)){var n,e=Math.min(s+6,r.length),t=r.slice(s,e);n=s,t.forEach(function(i,e){var s=n+e,t=c.get(i),r=_(t[0],["atts_since","attachments"]);r.open_revs=t.map(function(e){return e.rev}),r.open_revs=r.open_revs.filter(g);var u=g;0===r.open_revs.length&&(delete r.open_revs,u=w),["revs","attachments","binary","ajax","latest"].forEach(function(e){e in a&&(r[e]=a[e])}),o.get(i,r,function(e,t){var r,n,o;r=e?[{error:e}]:u(t),n=i,o=r,l[s]={id:n,docs:o},f(),p()})}),s+=t.length}}p()},r.changesHandler=O,r.clone=b,r.defaultBackOff=function(e){var t,r,n=0;return e||(n=2e3),t=e,r=n,t=parseInt(t,10)||0,(r=parseInt(r,10))!=r||r<=t?r=(t||1)<<1:r+=1,6e5this._bufferSize&&t.shift(),i.prototype.next.call(this,e)},h.prototype.nextTimeWindow=function(e){this._events.push(new d(this._getNow(),e)),this._trimBufferThenGetEvents(),i.prototype.next.call(this,e)},h.prototype._subscribe=function(e){var t,r=this._infiniteTimeWindow,n=r?this._events:this._trimBufferThenGetEvents(),o=this.scheduler,i=n.length;if(this.closed)throw new l.ObjectUnsubscribedError;if(t=this.isStopped||this.hasError?a.Subscription.EMPTY:(this.observers.push(e),new f.SubjectSubscription(this,e)),o&&e.add(e=new c.ObserveOnSubscriber(e,o)),r)for(var s=0;s=o){e.complete();break}if(e.next(r++),e.closed)break}})},r.dispatch=u},{"../Observable":507}],541:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("../Observable");function o(e){var t=e.error;e.subscriber.error(t)}r.throwError=function(t,r){return r?new n.Observable(function(e){return r.schedule(o,0,{error:t,subscriber:e})}):new n.Observable(function(e){return e.error(t)})}},{"../Observable":507}],542:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i=e("../Observable"),s=e("../scheduler/async"),u=e("../util/isNumeric"),a=e("../util/isScheduler");function c(e){var t=e.index,r=e.period,n=e.subscriber;if(n.next(t),!n.closed){if(-1===r)return n.complete();e.index=t+1,this.schedule(e,r)}}r.timer=function(r,e,n){void 0===r&&(r=0);var o=-1;return u.isNumeric(e)?o=Number(e)<1?1:Number(e):a.isScheduler(e)&&(n=e),a.isScheduler(n)||(n=s.async),new i.Observable(function(e){var t=u.isNumeric(r)?r:r-n.now();return n.schedule(c,t,{index:0,period:o,subscriber:e})})}},{"../Observable":507,"../scheduler/async":665,"../util/isNumeric":685,"../util/isScheduler":689}],543:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("../Observable"),s=e("./from"),u=e("./empty");r.using=function(o,i){return new n.Observable(function(t){var e,r;try{e=o()}catch(e){return void t.error(e)}try{r=i(e)}catch(e){return void t.error(e)}var n=(r?s.from(r):u.EMPTY).subscribe(t);return function(){n.unsubscribe(),e&&e.unsubscribe()}})}},{"../Observable":507,"./empty":524,"./from":526}],544:[function(e,t,r){"use strict";var n,o=this&&this.__extends||(n=function(e,t){return(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(e,t)},function(e,t){function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)});Object.defineProperty(r,"__esModule",{value:!0});var i=e("./fromArray"),s=e("../util/isArray"),u=e("../Subscriber"),a=e("../OuterSubscriber"),c=e("../util/subscribeToResult"),l=e("../../internal/symbol/iterator");r.zip=function(){for(var e=[],t=0;tthis.index},m.prototype.hasCompleted=function(){return this.array.length===this.index},m);function m(e){this.array=e,this.index=0,this.length=0,this.length=e.length}var g,w=(g=a.OuterSubscriber,o(x,g),x.prototype[l.iterator]=function(){return this},x.prototype.next=function(){var e=this.buffer;return 0===e.length&&this.isComplete?{value:null,done:!0}:{value:e.shift(),done:!1}},x.prototype.hasValue=function(){return 0this.total&&this.destination.next(e)},l);function l(e,t){var r=a.call(this,e)||this;return r.total=t,r.count=0,r}},{"../Subscriber":514}],619:[function(e,t,r){"use strict";var n,o=this&&this.__extends||(n=function(e,t){return(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(e,t)},function(e,t){function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)});Object.defineProperty(r,"__esModule",{value:!0});var i=e("../Subscriber"),s=e("../util/ArgumentOutOfRangeError");r.skipLast=function(t){return function(e){return e.lift(new u(t))}};var u=(a.prototype.call=function(e,t){return 0===this._skipCount?t.subscribe(new i.Subscriber(e)):t.subscribe(new l(e,this._skipCount))},a);function a(e){if(this._skipCount=e,this._skipCount<0)throw new s.ArgumentOutOfRangeError}var c,l=(c=i.Subscriber,o(f,c),f.prototype._next=function(e){var t=this._skipCount,r=this._count++;if(r=this.total?this.total:this.count,n=this.ring,o=0;o=this.maxWindowSize&&this.closeWindow(o))}},v.prototype._error=function(e){for(var t=this.windows;0t.index?1:-1:e.delay>t.delay?1:-1},p);function p(e,t,r){void 0===r&&(r=e.index+=1);var n=l.call(this,e,t)||this;return n.scheduler=e,n.work=t,n.index=r,n.active=!0,n.index=e.index=r,n}r.VirtualAction=f},{"./AsyncAction":658,"./AsyncScheduler":659}],663:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./AnimationFrameAction"),o=e("./AnimationFrameScheduler");r.animationFrame=new o.AnimationFrameScheduler(n.AnimationFrameAction)},{"./AnimationFrameAction":654,"./AnimationFrameScheduler":655}],664:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./AsapAction"),o=e("./AsapScheduler");r.asap=new o.AsapScheduler(n.AsapAction)},{"./AsapAction":656,"./AsapScheduler":657}],665:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./AsyncAction"),o=e("./AsyncScheduler");r.async=new o.AsyncScheduler(n.AsyncAction)},{"./AsyncAction":658,"./AsyncScheduler":659}],666:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./QueueAction"),o=e("./QueueScheduler");r.queue=new o.QueueScheduler(n.QueueAction)},{"./QueueAction":660,"./QueueScheduler":661}],667:[function(e,t,r){"use strict";function n(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}Object.defineProperty(r,"__esModule",{value:!0}),r.getSymbolIterator=n,r.iterator=n(),r.$$iterator=r.iterator},{}],668:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.observable="function"==typeof Symbol&&Symbol.observable||"@@observable"},{}],669:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.rxSubscriber="function"==typeof Symbol?Symbol("rxSubscriber"):"@@rxSubscriber_"+Math.random(),r.$$rxSubscriber=r.rxSubscriber},{}],670:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=(o.prototype=Object.create(Error.prototype),o);function o(){return Error.call(this),this.message="argument out of range",this.name="ArgumentOutOfRangeError",this}r.ArgumentOutOfRangeError=n},{}],671:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=(o.prototype=Object.create(Error.prototype),o);function o(){return Error.call(this),this.message="no elements in sequence",this.name="EmptyError",this}r.EmptyError=n},{}],672:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=1,o=Promise.resolve(),i={};function s(e){return e in i&&(delete i[e],!0)}r.Immediate={setImmediate:function(e){var t=n++;return i[t]=!0,o.then(function(){return s(t)&&e()}),t},clearImmediate:function(e){s(e)}},r.TestTools={pending:function(){return Object.keys(i).length}}},{}],673:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=(o.prototype=Object.create(Error.prototype),o);function o(){return Error.call(this),this.message="object unsubscribed",this.name="ObjectUnsubscribedError",this}r.ObjectUnsubscribedError=n},{}],674:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=(o.prototype=Object.create(Error.prototype),o);function o(){return Error.call(this),this.message="Timeout has occurred",this.name="TimeoutError",this}r.TimeoutError=n},{}],675:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=(o.prototype=Object.create(Error.prototype),o);function o(e){return Error.call(this),this.message=e?e.length+" errors occurred during unsubscription:\n"+e.map(function(e,t){return t+1+") "+e.toString()}).join("\n "):"",this.name="UnsubscriptionError",this.errors=e,this}r.UnsubscriptionError=n},{}],676:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=e("../Subscriber");r.canReportError=function(e){for(;e;){var t=e.closed,r=e.destination,n=e.isStopped;if(t||n)return!1;e=r&&r instanceof o.Subscriber?r:null}return!0}},{"../Subscriber":514}],677:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.hostReportError=function(e){setTimeout(function(){throw e},0)}},{}],678:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.identity=function(e){return e}},{}],679:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isArray=Array.isArray||function(e){return e&&"number"==typeof e.length}},{}],680:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isArrayLike=function(e){return e&&"number"==typeof e.length&&"function"!=typeof e}},{}],681:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isDate=function(e){return e instanceof Date&&!isNaN(+e)}},{}],682:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isFunction=function(e){return"function"==typeof e}},{}],683:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("../symbol/observable");r.isInteropObservable=function(e){return e&&"function"==typeof e[n.observable]}},{"../symbol/observable":668}],684:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("../symbol/iterator");r.isIterable=function(e){return e&&"function"==typeof e[n.iterator]}},{"../symbol/iterator":667}],685:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./isArray");r.isNumeric=function(e){return!n.isArray(e)&&0<=e-parseFloat(e)+1}},{"./isArray":679}],686:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isObject=function(e){return null!==e&&"object"==typeof e}},{}],687:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("../Observable");r.isObservable=function(e){return!!e&&(e instanceof n.Observable||"function"==typeof e.lift&&"function"==typeof e.subscribe)}},{"../Observable":507}],688:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isPromise=function(e){return!!e&&"function"!=typeof e.subscribe&&"function"==typeof e.then}},{}],689:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isScheduler=function(e){return e&&"function"==typeof e.schedule}},{}],690:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.noop=function(){}},{}],691:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.not=function(e,t){function r(){return!r.pred.apply(r.thisArg,arguments)}return r.pred=e,r.thisArg=t,r}},{}],692:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./noop");function o(t){return t?1===t.length?t[0]:function(e){return t.reduce(function(e,t){return t(e)},e)}:n.noop}r.pipe=function(){for(var e=[],t=0;t>>25)+n|0)&n|~r&o)+t[1]-389564586|0)<<12|i>>>20)+r|0)&r|~i&n)+t[2]+606105819|0)<<17|o>>>15)+i|0)&i|~o&r)+t[3]-1044525330|0)<<22|n>>>10)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&o|~n&i)+t[4]-176418897|0)<<7|r>>>25)+n|0)&n|~r&o)+t[5]+1200080426|0)<<12|i>>>20)+r|0)&r|~i&n)+t[6]-1473231341|0)<<17|o>>>15)+i|0)&i|~o&r)+t[7]-45705983|0)<<22|n>>>10)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&o|~n&i)+t[8]+1770035416|0)<<7|r>>>25)+n|0)&n|~r&o)+t[9]-1958414417|0)<<12|i>>>20)+r|0)&r|~i&n)+t[10]-42063|0)<<17|o>>>15)+i|0)&i|~o&r)+t[11]-1990404162|0)<<22|n>>>10)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&o|~n&i)+t[12]+1804603682|0)<<7|r>>>25)+n|0)&n|~r&o)+t[13]-40341101|0)<<12|i>>>20)+r|0)&r|~i&n)+t[14]-1502002290|0)<<17|o>>>15)+i|0)&i|~o&r)+t[15]+1236535329|0)<<22|n>>>10)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&i|o&~i)+t[1]-165796510|0)<<5|r>>>27)+n|0)&o|n&~o)+t[6]-1069501632|0)<<9|i>>>23)+r|0)&n|r&~n)+t[11]+643717713|0)<<14|o>>>18)+i|0)&r|i&~r)+t[0]-373897302|0)<<20|n>>>12)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&i|o&~i)+t[5]-701558691|0)<<5|r>>>27)+n|0)&o|n&~o)+t[10]+38016083|0)<<9|i>>>23)+r|0)&n|r&~n)+t[15]-660478335|0)<<14|o>>>18)+i|0)&r|i&~r)+t[4]-405537848|0)<<20|n>>>12)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&i|o&~i)+t[9]+568446438|0)<<5|r>>>27)+n|0)&o|n&~o)+t[14]-1019803690|0)<<9|i>>>23)+r|0)&n|r&~n)+t[3]-187363961|0)<<14|o>>>18)+i|0)&r|i&~r)+t[8]+1163531501|0)<<20|n>>>12)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n&i|o&~i)+t[13]-1444681467|0)<<5|r>>>27)+n|0)&o|n&~o)+t[2]-51403784|0)<<9|i>>>23)+r|0)&n|r&~n)+t[7]+1735328473|0)<<14|o>>>18)+i|0)&r|i&~r)+t[12]-1926607734|0)<<20|n>>>12)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n^o^i)+t[5]-378558|0)<<4|r>>>28)+n|0)^n^o)+t[8]-2022574463|0)<<11|i>>>21)+r|0)^r^n)+t[11]+1839030562|0)<<16|o>>>16)+i|0)^i^r)+t[14]-35309556|0)<<23|n>>>9)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n^o^i)+t[1]-1530992060|0)<<4|r>>>28)+n|0)^n^o)+t[4]+1272893353|0)<<11|i>>>21)+r|0)^r^n)+t[7]-155497632|0)<<16|o>>>16)+i|0)^i^r)+t[10]-1094730640|0)<<23|n>>>9)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n^o^i)+t[13]+681279174|0)<<4|r>>>28)+n|0)^n^o)+t[0]-358537222|0)<<11|i>>>21)+r|0)^r^n)+t[3]-722521979|0)<<16|o>>>16)+i|0)^i^r)+t[6]+76029189|0)<<23|n>>>9)+o|0,n=((n+=((o=((o+=((i=((i+=((r=((r+=(n^o^i)+t[9]-640364487|0)<<4|r>>>28)+n|0)^n^o)+t[12]-421815835|0)<<11|i>>>21)+r|0)^r^n)+t[15]+530742520|0)<<16|o>>>16)+i|0)^i^r)+t[2]-995338651|0)<<23|n>>>9)+o|0,n=((n+=((i=((i+=(n^((r=((r+=(o^(n|~i))+t[0]-198630844|0)<<6|r>>>26)+n|0)|~o))+t[7]+1126891415|0)<<10|i>>>22)+r|0)^((o=((o+=(r^(i|~n))+t[14]-1416354905|0)<<15|o>>>17)+i|0)|~r))+t[5]-57434055|0)<<21|n>>>11)+o|0,n=((n+=((i=((i+=(n^((r=((r+=(o^(n|~i))+t[12]+1700485571|0)<<6|r>>>26)+n|0)|~o))+t[3]-1894986606|0)<<10|i>>>22)+r|0)^((o=((o+=(r^(i|~n))+t[10]-1051523|0)<<15|o>>>17)+i|0)|~r))+t[1]-2054922799|0)<<21|n>>>11)+o|0,n=((n+=((i=((i+=(n^((r=((r+=(o^(n|~i))+t[8]+1873313359|0)<<6|r>>>26)+n|0)|~o))+t[15]-30611744|0)<<10|i>>>22)+r|0)^((o=((o+=(r^(i|~n))+t[6]-1560198380|0)<<15|o>>>17)+i|0)|~r))+t[13]+1309151649|0)<<21|n>>>11)+o|0,n=((n+=((i=((i+=(n^((r=((r+=(o^(n|~i))+t[4]-145523070|0)<<6|r>>>26)+n|0)|~o))+t[11]-1120210379|0)<<10|i>>>22)+r|0)^((o=((o+=(r^(i|~n))+t[2]+718787259|0)<<15|o>>>17)+i|0)|~r))+t[9]-343485551|0)<<21|n>>>11)+o|0,e[0]=r+e[0]|0,e[1]=n+e[1]|0,e[2]=o+e[2]|0,e[3]=i+e[3]|0}function f(e){var t,r=[];for(t=0;t<64;t+=4)r[t>>2]=e.charCodeAt(t)+(e.charCodeAt(t+1)<<8)+(e.charCodeAt(t+2)<<16)+(e.charCodeAt(t+3)<<24);return r}function p(e){var t,r=[];for(t=0;t<64;t+=4)r[t>>2]=e[t]+(e[t+1]<<8)+(e[t+2]<<16)+(e[t+3]<<24);return r}function o(e){var t,r,n,o,i,s,u=e.length,a=[1732584193,-271733879,-1732584194,271733878];for(t=64;t<=u;t+=64)l(a,f(e.substring(t-64,t)));for(r=(e=e.substring(t-64)).length,n=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],t=0;t>2]|=e.charCodeAt(t)<<(t%4<<3);if(n[t>>2]|=128<<(t%4<<3),55>8*t+4&15]+n[e>>8*t&15];return r}function s(e){var t;for(t=0;t>16)+(t>>16)+(r>>16)<<16|65535&r},"undefined"==typeof ArrayBuffer||ArrayBuffer.prototype.slice||(ArrayBuffer.prototype.slice=function(e,t){var r,n,o,i,s=this.byteLength,u=h(e,s),a=s;return t!==c&&(a=h(t,s)),a>2]|=n.charCodeAt(t)<<(t%4<<3);return this._finish(i,o),r=s(this._hash),e&&(r=u(r)),this.reset(),r},a.prototype.reset=function(){return this._buff="",this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},a.prototype.getState=function(){return{buff:this._buff,length:this._length,hash:this._hash}},a.prototype.setState=function(e){return this._buff=e.buff,this._length=e.length,this._hash=e.hash,this},a.prototype.destroy=function(){delete this._hash,delete this._buff,delete this._length},a.prototype._finish=function(e,t){var r,n,o,i=t;if(e[i>>2]|=128<<(i%4<<3),55>2]|=n[t]<<(t%4<<3);return this._finish(i,o),r=s(this._hash),e&&(r=u(r)),this.reset(),r},a.ArrayBuffer.prototype.reset=function(){return this._buff=new Uint8Array(0),this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},a.ArrayBuffer.prototype.getState=function(){var e,t=a.prototype.getState.call(this);return t.buff=(e=t.buff,String.fromCharCode.apply(null,new Uint8Array(e))),t},a.ArrayBuffer.prototype.setState=function(e){return e.buff=function(e,t){var r,n=e.length,o=new ArrayBuffer(n),i=new Uint8Array(o);for(r=0;r>2]|=e[t]<<(t%4<<3);if(n[t>>2]|=128<<(t%4<<3),55>>((3&t)<<3)&255;return i}}},{}],708:[function(e,t,r){var d,b,y=e("./lib/rng"),v=e("./lib/bytesToUuid"),_=0,m=0;t.exports=function(e,t,r){var n=t&&r||0,o=t||[],i=(e=e||{}).node||d,s=void 0!==e.clockseq?e.clockseq:b;if(null==i||null==s){var u=y();null==i&&(i=d=[1|u[0],u[1],u[2],u[3],u[4],u[5]]),null==s&&(s=b=16383&(u[6]<<8|u[7]))}var a=void 0!==e.msecs?e.msecs:(new Date).getTime(),c=void 0!==e.nsecs?e.nsecs:m+1,l=a-_+(c-m)/1e4;if(l<0&&void 0===e.clockseq&&(s=s+1&16383),(l<0||_>>24&255,o[n++]=f>>>16&255,o[n++]=f>>>8&255,o[n++]=255&f;var p=a/4294967296*1e4&268435455;o[n++]=p>>>8&255,o[n++]=255&p,o[n++]=p>>>24&15|16,o[n++]=p>>>16&255,o[n++]=s>>>8|128,o[n++]=255&s;for(var h=0;h<6;++h)o[n+h]=i[h];return t||v(o)}},{"./lib/bytesToUuid":706,"./lib/rng":707}],709:[function(e,t,r){var s=e("./lib/rng"),u=e("./lib/bytesToUuid");t.exports=function(e,t,r){var n=t&&r||0;"string"==typeof e&&(t="binary"===e?new Array(16):null,e=null);var o=(e=e||{}).random||(e.rng||s)();if(o[6]=15&o[6]|64,o[8]=63&o[8]|128,t)for(var i=0;i<16;++i)t[n+i]=o[i];return t||u(o)}},{"./lib/bytesToUuid":706,"./lib/rng":707}],710:[function(e,t,r){"use strict";function h(e,t,r){var n=r[r.length-1];e===n.element&&(r.pop(),n=r[r.length-1]);var o=n.element,i=n.index;if(Array.isArray(o))o.push(e);else if(i===t.length-2){o[t.pop()]=e}else t.push(e)}r.stringify=function(e){var t=[];t.push({obj:e});for(var r,n,o,i,s,u,a,c,l,f,p="";r=t.pop();)if(n=r.obj,p+=r.prefix||"",o=r.val||"")p+=o;else if("object"!=typeof n)p+=void 0===n?null:JSON.stringify(n);else if(null===n)p+="null";else if(Array.isArray(n)){for(t.push({val:"]"}),i=n.length-1;0<=i;i--)s=0===i?"":",",t.push({obj:n[i],prefix:s});t.push({val:"["})}else{for(a in u=[],n)n.hasOwnProperty(a)&&u.push(a);for(t.push({val:"}"}),i=u.length-1;0<=i;i--)l=n[c=u[i]],f=0leveldown name: 'mydatabase', adapter: leveldown // the full leveldown-module }); + +// or use a specific folder to store the data +const database = await RxDB.create({ + name: '/root/user/project/mydatabase', + adapter: leveldown // the full leveldown-module +});

Node-Websql

This adapter uses the node-websql-shim to store data on the filesystem. It's advantages are that it does not need a leveldb build and it can be used when multiple nodejs-processes use the same database-files.

@@ -1623,6 +1629,12 @@

Node-Websql

name: 'mydatabase', adapter: 'websql' // the name of your adapter }); + +// or use a specific folder to store the data +const database = await RxDB.create({ + name: '/root/user/project/mydatabase', + adapter: 'websql' // the name of your adapter +});

React-Native

asyncstorage

@@ -1739,7 +1751,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Adapters","level":"1.21","depth":1,"next":{"title":"Tutorials","level":"1.22","depth":1,"ref":"","articles":[{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"path":"tutorials/typescript.md","ref":"./tutorials/typescript.md","articles":[]},{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]}]},"previous":{"title":"Plugins","level":"1.20","depth":1,"path":"plugins.md","ref":"./plugins.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"adapters.md","mtime":"2019-12-02T16:25:27.598Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Adapters","level":"1.21","depth":1,"next":{"title":"Tutorials","level":"1.22","depth":1,"ref":"","articles":[{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"path":"tutorials/typescript.md","ref":"./tutorials/typescript.md","articles":[]},{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]}]},"previous":{"title":"Plugins","level":"1.20","depth":1,"path":"plugins.md","ref":"./plugins.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"adapters.md","mtime":"2019-12-19T20:40:37.258Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/contribute.html b/docs/contribute.html index ef1fec0baa3..2cd9d457a9c 100644 --- a/docs/contribute.html +++ b/docs/contribute.html @@ -1616,7 +1616,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Contribute","level":"1.24","depth":1,"previous":{"title":"Questions & Answers","level":"1.23","depth":1,"path":"questions-answers.md","ref":"./questions-answers.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"contribute.md","mtime":"2019-12-02T16:25:27.598Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Contribute","level":"1.24","depth":1,"previous":{"title":"Questions & Answers","level":"1.23","depth":1,"path":"questions-answers.md","ref":"./questions-answers.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"contribute.md","mtime":"2019-12-02T16:25:27.598Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/custom-build.html b/docs/custom-build.html index b0cc6696c46..1387ca2a8e6 100644 --- a/docs/custom-build.html +++ b/docs/custom-build.html @@ -1794,7 +1794,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Custom Build","level":"1.19","depth":1,"next":{"title":"Plugins","level":"1.20","depth":1,"path":"plugins.md","ref":"./plugins.md","articles":[]},"previous":{"title":"LocalDocuments","level":"1.18","depth":1,"path":"rx-local-document.md","ref":"./rx-local-document.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"custom-build.md","mtime":"2019-12-02T16:25:27.598Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Custom Build","level":"1.19","depth":1,"next":{"title":"Plugins","level":"1.20","depth":1,"path":"plugins.md","ref":"./plugins.md","articles":[]},"previous":{"title":"LocalDocuments","level":"1.18","depth":1,"path":"rx-local-document.md","ref":"./rx-local-document.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"custom-build.md","mtime":"2019-12-02T16:25:27.598Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/data-migration.html b/docs/data-migration.html index 10523717635..34f0c07a6d2 100644 --- a/docs/data-migration.html +++ b/docs/data-migration.html @@ -1706,7 +1706,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"DataMigration","level":"1.12","depth":1,"next":{"title":"LeaderElection","level":"1.13","depth":1,"path":"leader-election.md","ref":"./leader-election.md","articles":[]},"previous":{"title":"Population","level":"1.11","depth":1,"path":"population.md","ref":"./population.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"data-migration.md","mtime":"2019-12-02T16:25:27.598Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"DataMigration","level":"1.12","depth":1,"next":{"title":"LeaderElection","level":"1.13","depth":1,"path":"leader-election.md","ref":"./leader-election.md","articles":[]},"previous":{"title":"Population","level":"1.11","depth":1,"path":"population.md","ref":"./population.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"data-migration.md","mtime":"2019-12-02T16:25:27.598Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/in-memory.html b/docs/in-memory.html index 21afb1e8d6b..39054b7b751 100644 --- a/docs/in-memory.html +++ b/docs/in-memory.html @@ -1634,7 +1634,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"InMemory","level":"1.17","depth":1,"next":{"title":"LocalDocuments","level":"1.18","depth":1,"path":"rx-local-document.md","ref":"./rx-local-document.md","articles":[]},"previous":{"title":"QueryChangeDetection","level":"1.16","depth":1,"path":"query-change-detection.md","ref":"./query-change-detection.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"in-memory.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"InMemory","level":"1.17","depth":1,"next":{"title":"LocalDocuments","level":"1.18","depth":1,"path":"rx-local-document.md","ref":"./rx-local-document.md","articles":[]},"previous":{"title":"QueryChangeDetection","level":"1.16","depth":1,"path":"query-change-detection.md","ref":"./query-change-detection.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"in-memory.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/index.html b/docs/index.html index 60385e7caae..1835eb85a6b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1618,7 +1618,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"next":{"title":"Install","level":"1.2","depth":1,"path":"install.md","ref":"./install.md","articles":[{"title":"npm","level":"1.2.1","depth":2,"anchor":"#npm","path":"install.md","ref":"./install.md#npm","articles":[]},{"title":"import","level":"1.2.2","depth":2,"anchor":"#import","path":"install.md","ref":"./install.md#import","articles":[]}]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"README.md","mtime":"2019-12-02T16:25:27.598Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"next":{"title":"Install","level":"1.2","depth":1,"path":"install.md","ref":"./install.md","articles":[{"title":"npm","level":"1.2.1","depth":2,"anchor":"#npm","path":"install.md","ref":"./install.md#npm","articles":[]},{"title":"import","level":"1.2.2","depth":2,"anchor":"#import","path":"install.md","ref":"./install.md#import","articles":[]}]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"README.md","mtime":"2019-12-02T16:25:27.598Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/install.html b/docs/install.html index a7cbd03b0d5..bc416f90f61 100644 --- a/docs/install.html +++ b/docs/install.html @@ -1622,7 +1622,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Install","level":"1.2","depth":1,"next":{"title":"npm","level":"1.2.1","depth":2,"anchor":"#npm","path":"install.md","ref":"./install.md#npm","articles":[]},"previous":{"title":"Introduction","level":"1.1","depth":1,"path":"README.md","ref":"README.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"install.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Install","level":"1.2","depth":1,"next":{"title":"npm","level":"1.2.1","depth":2,"anchor":"#npm","path":"install.md","ref":"./install.md#npm","articles":[]},"previous":{"title":"Introduction","level":"1.1","depth":1,"path":"README.md","ref":"README.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"install.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/leader-election.html b/docs/leader-election.html index b57d73b5e98..9b2a22983f4 100644 --- a/docs/leader-election.html +++ b/docs/leader-election.html @@ -1637,7 +1637,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"LeaderElection","level":"1.13","depth":1,"next":{"title":"Replication CouchDB","level":"1.14","depth":1,"path":"replication.md","ref":"./replication.md","articles":[]},"previous":{"title":"DataMigration","level":"1.12","depth":1,"path":"data-migration.md","ref":"./data-migration.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"leader-election.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"LeaderElection","level":"1.13","depth":1,"next":{"title":"Replication CouchDB","level":"1.14","depth":1,"path":"replication.md","ref":"./replication.md","articles":[]},"previous":{"title":"DataMigration","level":"1.12","depth":1,"path":"data-migration.md","ref":"./data-migration.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"leader-election.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/middleware.html b/docs/middleware.html index e46275895a8..fe4d8d178e4 100644 --- a/docs/middleware.html +++ b/docs/middleware.html @@ -1796,7 +1796,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Middleware-hooks","level":"1.9","depth":1,"next":{"title":"ORM/DRM","level":"1.10","depth":1,"path":"orm.md","ref":"./orm.md","articles":[]},"previous":{"title":"RxAttachment","level":"1.8","depth":1,"path":"rx-attachment.md","ref":"./rx-attachment.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"middleware.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Middleware-hooks","level":"1.9","depth":1,"next":{"title":"ORM/DRM","level":"1.10","depth":1,"path":"orm.md","ref":"./orm.md","articles":[]},"previous":{"title":"RxAttachment","level":"1.8","depth":1,"path":"rx-attachment.md","ref":"./rx-attachment.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"middleware.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/orm.html b/docs/orm.html index e85e2238781..5bac543cfeb 100644 --- a/docs/orm.html +++ b/docs/orm.html @@ -1679,7 +1679,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"ORM/DRM","level":"1.10","depth":1,"next":{"title":"Population","level":"1.11","depth":1,"path":"population.md","ref":"./population.md","articles":[]},"previous":{"title":"Middleware-hooks","level":"1.9","depth":1,"path":"middleware.md","ref":"./middleware.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"orm.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"ORM/DRM","level":"1.10","depth":1,"next":{"title":"Population","level":"1.11","depth":1,"path":"population.md","ref":"./population.md","articles":[]},"previous":{"title":"Middleware-hooks","level":"1.9","depth":1,"path":"middleware.md","ref":"./middleware.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"orm.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/plugins.html b/docs/plugins.html index d2097221219..b1707f0042c 100644 --- a/docs/plugins.html +++ b/docs/plugins.html @@ -1665,7 +1665,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Plugins","level":"1.20","depth":1,"next":{"title":"Adapters","level":"1.21","depth":1,"path":"adapters.md","ref":"./adapters.md","articles":[]},"previous":{"title":"Custom Build","level":"1.19","depth":1,"path":"custom-build.md","ref":"./custom-build.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"plugins.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Plugins","level":"1.20","depth":1,"next":{"title":"Adapters","level":"1.21","depth":1,"path":"adapters.md","ref":"./adapters.md","articles":[]},"previous":{"title":"Custom Build","level":"1.19","depth":1,"path":"custom-build.md","ref":"./custom-build.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"plugins.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/population.html b/docs/population.html index 0ed306fb85f..8ed39ea9820 100644 --- a/docs/population.html +++ b/docs/population.html @@ -1727,7 +1727,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Population","level":"1.11","depth":1,"next":{"title":"DataMigration","level":"1.12","depth":1,"path":"data-migration.md","ref":"./data-migration.md","articles":[]},"previous":{"title":"ORM/DRM","level":"1.10","depth":1,"path":"orm.md","ref":"./orm.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"population.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Population","level":"1.11","depth":1,"next":{"title":"DataMigration","level":"1.12","depth":1,"path":"data-migration.md","ref":"./data-migration.md","articles":[]},"previous":{"title":"ORM/DRM","level":"1.10","depth":1,"path":"orm.md","ref":"./orm.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"population.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/query-change-detection.html b/docs/query-change-detection.html index 048bc5fb233..21cec8816da 100644 --- a/docs/query-change-detection.html +++ b/docs/query-change-detection.html @@ -1622,7 +1622,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"QueryChangeDetection","level":"1.16","depth":1,"next":{"title":"InMemory","level":"1.17","depth":1,"path":"in-memory.md","ref":"./in-memory.md","articles":[]},"previous":{"title":"Replication GraphQL","level":"1.15","depth":1,"path":"replication-graphql.md","ref":"./replication-graphql.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"query-change-detection.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"QueryChangeDetection","level":"1.16","depth":1,"next":{"title":"InMemory","level":"1.17","depth":1,"path":"in-memory.md","ref":"./in-memory.md","articles":[]},"previous":{"title":"Replication GraphQL","level":"1.15","depth":1,"path":"replication-graphql.md","ref":"./replication-graphql.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"query-change-detection.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/questions-answers.html b/docs/questions-answers.html index f439616d4e3..1f09a6cb82b 100644 --- a/docs/questions-answers.html +++ b/docs/questions-answers.html @@ -1610,7 +1610,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Questions & Answers","level":"1.23","depth":1,"next":{"title":"Contribute","level":"1.24","depth":1,"path":"contribute.md","ref":"./contribute.md","articles":[]},"previous":{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"questions-answers.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Questions & Answers","level":"1.23","depth":1,"next":{"title":"Contribute","level":"1.24","depth":1,"path":"contribute.md","ref":"./contribute.md","articles":[]},"previous":{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"questions-answers.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/replication-graphql.html b/docs/replication-graphql.html index b553b8cba48..46bf11d26a0 100644 --- a/docs/replication-graphql.html +++ b/docs/replication-graphql.html @@ -1852,7 +1852,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Replication GraphQL","level":"1.15","depth":1,"next":{"title":"QueryChangeDetection","level":"1.16","depth":1,"path":"query-change-detection.md","ref":"./query-change-detection.md","articles":[]},"previous":{"title":"Replication CouchDB","level":"1.14","depth":1,"path":"replication.md","ref":"./replication.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"replication-graphql.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Replication GraphQL","level":"1.15","depth":1,"next":{"title":"QueryChangeDetection","level":"1.16","depth":1,"path":"query-change-detection.md","ref":"./query-change-detection.md","articles":[]},"previous":{"title":"Replication CouchDB","level":"1.14","depth":1,"path":"replication.md","ref":"./replication.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"replication-graphql.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/replication.html b/docs/replication.html index 152047cea2d..71b2240d1e8 100644 --- a/docs/replication.html +++ b/docs/replication.html @@ -1654,7 +1654,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Replication CouchDB","level":"1.14","depth":1,"next":{"title":"Replication GraphQL","level":"1.15","depth":1,"path":"replication-graphql.md","ref":"./replication-graphql.md","articles":[]},"previous":{"title":"LeaderElection","level":"1.13","depth":1,"path":"leader-election.md","ref":"./leader-election.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"replication.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Replication CouchDB","level":"1.14","depth":1,"next":{"title":"Replication GraphQL","level":"1.15","depth":1,"path":"replication-graphql.md","ref":"./replication-graphql.md","articles":[]},"previous":{"title":"LeaderElection","level":"1.13","depth":1,"path":"leader-election.md","ref":"./leader-election.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"replication.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-attachment.html b/docs/rx-attachment.html index a367575e83c..2446983ef85 100644 --- a/docs/rx-attachment.html +++ b/docs/rx-attachment.html @@ -1669,7 +1669,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxAttachment","level":"1.8","depth":1,"next":{"title":"Middleware-hooks","level":"1.9","depth":1,"path":"middleware.md","ref":"./middleware.md","articles":[]},"previous":{"title":"isRxQuery()","level":"1.7.9","depth":2,"anchor":"#isrxquery","path":"rx-query.md","ref":"./rx-query.md#isrxquery","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-attachment.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxAttachment","level":"1.8","depth":1,"next":{"title":"Middleware-hooks","level":"1.9","depth":1,"path":"middleware.md","ref":"./middleware.md","articles":[]},"previous":{"title":"isRxQuery()","level":"1.7.9","depth":2,"anchor":"#isrxquery","path":"rx-query.md","ref":"./rx-query.md#isrxquery","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-attachment.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-collection.html b/docs/rx-collection.html index 8c2d7b84b16..f210d1c41c4 100644 --- a/docs/rx-collection.html +++ b/docs/rx-collection.html @@ -1766,7 +1766,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxCollection","level":"1.5","depth":1,"next":{"title":"Creation","level":"1.5.1","depth":2,"anchor":"#creating-a-collection","path":"rx-collection.md","ref":"./rx-collection.md#creating-a-collection","articles":[{"title":"name","level":"1.5.1.1","depth":3,"anchor":"#name","path":"rx-collection.md","ref":"./rx-collection.md#name","articles":[]},{"title":"schema","level":"1.5.1.2","depth":3,"anchor":"#schema","path":"rx-collection.md","ref":"./rx-collection.md#schema","articles":[]},{"title":"pouchSettings","level":"1.5.1.3","depth":3,"anchor":"#pouchSettings","path":"rx-collection.md","ref":"./rx-collection.md#pouchSettings","articles":[]},{"title":"ORM-functions","level":"1.5.1.4","depth":3,"anchor":"#orm-functions","path":"rx-collection.md","ref":"./rx-collection.md#orm-functions","articles":[]},{"title":"Migration","level":"1.5.1.5","depth":3,"anchor":"#Migration","path":"rx-collection.md","ref":"./rx-collection.md#Migration","articles":[]}]},"previous":{"title":"encryption","level":"1.4.9","depth":2,"anchor":"#encryption","path":"rx-schema.md","ref":"./rx-schema.md#encryption","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-collection.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxCollection","level":"1.5","depth":1,"next":{"title":"Creation","level":"1.5.1","depth":2,"anchor":"#creating-a-collection","path":"rx-collection.md","ref":"./rx-collection.md#creating-a-collection","articles":[{"title":"name","level":"1.5.1.1","depth":3,"anchor":"#name","path":"rx-collection.md","ref":"./rx-collection.md#name","articles":[]},{"title":"schema","level":"1.5.1.2","depth":3,"anchor":"#schema","path":"rx-collection.md","ref":"./rx-collection.md#schema","articles":[]},{"title":"pouchSettings","level":"1.5.1.3","depth":3,"anchor":"#pouchSettings","path":"rx-collection.md","ref":"./rx-collection.md#pouchSettings","articles":[]},{"title":"ORM-functions","level":"1.5.1.4","depth":3,"anchor":"#orm-functions","path":"rx-collection.md","ref":"./rx-collection.md#orm-functions","articles":[]},{"title":"Migration","level":"1.5.1.5","depth":3,"anchor":"#Migration","path":"rx-collection.md","ref":"./rx-collection.md#Migration","articles":[]}]},"previous":{"title":"encryption","level":"1.4.9","depth":2,"anchor":"#encryption","path":"rx-schema.md","ref":"./rx-schema.md#encryption","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-collection.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-database.html b/docs/rx-database.html index ee49935a8ff..f9ff3321a09 100644 --- a/docs/rx-database.html +++ b/docs/rx-database.html @@ -1714,7 +1714,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxDatabase","level":"1.3","depth":1,"next":{"title":"Creation","level":"1.3.1","depth":2,"anchor":"#creation","path":"rx-database.md","ref":"./rx-database.md#creation","articles":[{"title":"name","level":"1.3.1.1","depth":3,"anchor":"#name","path":"rx-database.md","ref":"./rx-database.md#name","articles":[]},{"title":"adapter","level":"1.3.1.2","depth":3,"anchor":"#adapter","path":"rx-database.md","ref":"./rx-database.md#adapter","articles":[]},{"title":"password","level":"1.3.1.3","depth":3,"anchor":"#password","path":"rx-database.md","ref":"./rx-database.md#password","articles":[]},{"title":"multiInstance","level":"1.3.1.4","depth":3,"anchor":"#multiinstance","path":"rx-database.md","ref":"./rx-database.md#multiinstance","articles":[]},{"title":"queryChangeDetection","level":"1.3.1.5","depth":3,"anchor":"#queryChangeDetection","path":"rx-database.md","ref":"./rx-database.md#queryChangeDetection","articles":[]},{"title":"ignoreDuplicate","level":"1.3.1.6","depth":3,"anchor":"#ignoreduplicate","path":"rx-database.md","ref":"./rx-database.md#ignoreduplicate","articles":[]},{"title":"pouchSettings","level":"1.3.1.7","depth":3,"anchor":"#pouchSettings","path":"rx-database.md","ref":"./rx-database.md#pouchSettings","articles":[]}]},"previous":{"title":"import","level":"1.2.2","depth":2,"anchor":"#import","path":"install.md","ref":"./install.md#import","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-database.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxDatabase","level":"1.3","depth":1,"next":{"title":"Creation","level":"1.3.1","depth":2,"anchor":"#creation","path":"rx-database.md","ref":"./rx-database.md#creation","articles":[{"title":"name","level":"1.3.1.1","depth":3,"anchor":"#name","path":"rx-database.md","ref":"./rx-database.md#name","articles":[]},{"title":"adapter","level":"1.3.1.2","depth":3,"anchor":"#adapter","path":"rx-database.md","ref":"./rx-database.md#adapter","articles":[]},{"title":"password","level":"1.3.1.3","depth":3,"anchor":"#password","path":"rx-database.md","ref":"./rx-database.md#password","articles":[]},{"title":"multiInstance","level":"1.3.1.4","depth":3,"anchor":"#multiinstance","path":"rx-database.md","ref":"./rx-database.md#multiinstance","articles":[]},{"title":"queryChangeDetection","level":"1.3.1.5","depth":3,"anchor":"#queryChangeDetection","path":"rx-database.md","ref":"./rx-database.md#queryChangeDetection","articles":[]},{"title":"ignoreDuplicate","level":"1.3.1.6","depth":3,"anchor":"#ignoreduplicate","path":"rx-database.md","ref":"./rx-database.md#ignoreduplicate","articles":[]},{"title":"pouchSettings","level":"1.3.1.7","depth":3,"anchor":"#pouchSettings","path":"rx-database.md","ref":"./rx-database.md#pouchSettings","articles":[]}]},"previous":{"title":"import","level":"1.2.2","depth":2,"anchor":"#import","path":"install.md","ref":"./install.md#import","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-database.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-document.html b/docs/rx-document.html index 9c20f6ff610..4b2961e1f67 100644 --- a/docs/rx-document.html +++ b/docs/rx-document.html @@ -1733,7 +1733,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxDocument","level":"1.6","depth":1,"next":{"title":"Insert","level":"1.6.1","depth":2,"anchor":"#insert","path":"rx-document.md","ref":"./rx-document.md#insert","articles":[]},"previous":{"title":"isRxCollection()","level":"1.5.2.13","depth":3,"anchor":"#isrxcollection","path":"rx-collection.md","ref":"./rx-collection.md#isrxcollection","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-document.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxDocument","level":"1.6","depth":1,"next":{"title":"Insert","level":"1.6.1","depth":2,"anchor":"#insert","path":"rx-document.md","ref":"./rx-document.md#insert","articles":[]},"previous":{"title":"isRxCollection()","level":"1.5.2.13","depth":3,"anchor":"#isrxcollection","path":"rx-collection.md","ref":"./rx-collection.md#isrxcollection","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-document.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-local-document.html b/docs/rx-local-document.html index 7858e21f652..6cb8db1d7d1 100644 --- a/docs/rx-local-document.html +++ b/docs/rx-local-document.html @@ -1659,7 +1659,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"LocalDocuments","level":"1.18","depth":1,"next":{"title":"Custom Build","level":"1.19","depth":1,"path":"custom-build.md","ref":"./custom-build.md","articles":[]},"previous":{"title":"InMemory","level":"1.17","depth":1,"path":"in-memory.md","ref":"./in-memory.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-local-document.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"LocalDocuments","level":"1.18","depth":1,"next":{"title":"Custom Build","level":"1.19","depth":1,"path":"custom-build.md","ref":"./custom-build.md","articles":[]},"previous":{"title":"InMemory","level":"1.17","depth":1,"path":"in-memory.md","ref":"./in-memory.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-local-document.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-query.html b/docs/rx-query.html index 8159654cffb..227f50a2614 100644 --- a/docs/rx-query.html +++ b/docs/rx-query.html @@ -1705,7 +1705,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxQuery","level":"1.7","depth":1,"next":{"title":"find()","level":"1.7.1","depth":2,"anchor":"#find","path":"rx-query.md","ref":"./rx-query.md#find","articles":[]},"previous":{"title":"isRxDocument()","level":"1.6.3.13","depth":3,"anchor":"#isrxdocument","path":"rx-document.md","ref":"./rx-document.md#isrxdocument","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-query.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxQuery","level":"1.7","depth":1,"next":{"title":"find()","level":"1.7.1","depth":2,"anchor":"#find","path":"rx-query.md","ref":"./rx-query.md#find","articles":[]},"previous":{"title":"isRxDocument()","level":"1.6.3.13","depth":3,"anchor":"#isrxdocument","path":"rx-document.md","ref":"./rx-document.md#isrxdocument","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-query.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-schema.html b/docs/rx-schema.html index 50f25855a40..3ad404f0fd9 100644 --- a/docs/rx-schema.html +++ b/docs/rx-schema.html @@ -1776,7 +1776,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxSchema","level":"1.4","depth":1,"next":{"title":"Example","level":"1.4.1","depth":2,"anchor":"#example","path":"rx-schema.md","ref":"./rx-schema.md#example","articles":[]},"previous":{"title":"isRxDatabase()","level":"1.3.2.10","depth":3,"anchor":"#isrxdatabase","path":"rx-database.md","ref":"./rx-database.md#isrxdatabase","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-schema.md","mtime":"2019-12-02T19:56:23.499Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxSchema","level":"1.4","depth":1,"next":{"title":"Example","level":"1.4.1","depth":2,"anchor":"#example","path":"rx-schema.md","ref":"./rx-schema.md#example","articles":[]},"previous":{"title":"isRxDatabase()","level":"1.3.2.10","depth":3,"anchor":"#isrxdatabase","path":"rx-database.md","ref":"./rx-database.md#isrxdatabase","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"rx-schema.md","mtime":"2019-12-02T19:56:23.499Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/search_index.json b/docs/search_index.json index 242cca6bec3..014eba7a3f8 100644 --- a/docs/search_index.json +++ b/docs/search_index.json @@ -1 +1 @@ -{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["(short",">","alway","app","applic","apps,","base","chang","compliant","couchdb","current","databas","database)","display","document.","electron","endpoint","endpoints.","even","field","graphql","here.","hybrid","introduct","javascript","mean","new","nodejs.","nosql","queri","reactiv","realtim","replic","result","rxdb","rxdb,","singl","start","state","state,","subscrib","ui","us","user.","websites,"],"install.html":["\"dependencies\":","\"git+https://git@github.com/pubkey/rxdb.git#commithash\"","\"rxdb\":","'rxdb';","//","=","@babel/polyfil","add","babel","before.","browsers.","build","code","code.","commit.","commithash","commonj","continu","depend","develop","es5.","es6","es8","exampl","file:","git","hash","here","import","instal","javascript","latest","mean","need","new","npm","older","package.json,","package.json.","peer","polyfil","polyfills,","releas","replac","require('@babel/polyfill');","require('rxdb');","run:","rxdb","rxdb,","rxj","save","state","support","transpil","us","var","with:","{","}"],"rx-database.html":["$","'heroesdb',","'idb'","'localstorage');","'mydatabase',","'websql',","(optional)","(optional=false)","(optional=true)","*/).then(()",".create()",".then(()",".then(json","/*","//","12","=","=>","actual","ad","adapt","adapter,","adapter.","adapter:","advantag","affect","allow","app","app,","app.","assum","asynchron","at.","await","becom","befor","between","browsers,","browsers:","call","case","chang","characters.","check","checkadapter()","cleanup","code","collect","common","compat","console.dir(changeevent));","console.dir(json));","console.dir(ok);","console.log('done'));","const","contain","continu","cordova","couchdb","cpu.","creat","creation","current","data","data.","databas","database,","database.","db","db1","db2","decrypt","defin","depend","destroy","destroy()","destroyed.","differ","directli","document.","done","dump","dump()","each","elect","electron","emptydatabase.importdump(json)","enabl","encrypt","environ","environment.","equal","error","event","events.","exampl","explicitli","export","fals","field","folder","follow","free","function","function.","given","gone","handl","here","idb'));","identifi","idl","idle.","ignoredupl","ignoreduplicate:","import","importdump()","in.","indexeddb","instanc","instance.","instead","intent","isrxdatabas","it'","it.","javascript","json","leader.","learn","list","localstorage'));","main","memori","mistake,","module.","moment","more","ms","multiinst","multipl","mycollection.customcleanupfunction();","mydatabase.destroy();","mydatabase.dump()","mydatabase.dump(true)","mydatabase.remove();","mydatabase.requestidlepromise().then(()","mydatabase.requestidlepromise(1000","mydb.$.subscribe(changeev","name","name:","nativ","ness","new","nodej","not.","noth","notice:","now","object","observ","ok","on","option","other.","out","paramet","parameters:","pass","password","piec","pouchdb","pouchset","prevent","process,","promis","property.","querychangedetect","rare","react","read","remov","remove()","replications.","requestidlecallback","requestidlepromise()","resolv","return","run","runtime,","rxdatabas","rxdatabase.","rxdb","rxdb,","rxdb.checkadapter('localstorage');","rxdb.create({","rxdb.isrxdatabase(myobj);","rxdb.plugin(require('pouchdb","rxdb.removedatabase('mydatabasename',","rxj","same","semi","server","server()","serverless.","set","share","similar","singl","someth","spawn","speed","stop","storag","storage.","store","stream","string","switch","synchronis","task","tasks.","tests,","this.","through","throw","time","timeout","track","true","true,","true.","two","uniqu","unit","up","us","use.","veri","waitforleadership()","want","window","wipe","without","work","wrong.","{","});"],"rx-schema.html":["\"array\",","\"attachments\":","\"birthyear\":","\"color\":","\"damage\":","\"describ","\"description\":","\"encrypted\":","\"final\":","\"healthpoints\":","\"hero","\"items\":","\"max\":","\"maxitems\":","\"min\":","\"mysecretfield\":","\"name\":","\"number\"","\"number\",","\"object\",","\"primary\":","\"properties\":","\"required\":","\"secret\":","\"skills\":","\"string\"","\"string\",","\"title\":","\"type\":","\"uniqueitems\":","\"version\":","'heroes',","'human","'integer',","'lastname']","'object',","'string'","'string',","//","0","0,","0.","100","1900,","20","2050","5","5,","8.0.0,","9]$","9_]*]?[a","=","[\"color\"],","['firstname',","^[a","access","accident","ad","add","additionalproperti","advantages:","age:","allow","alway","amount","anyway","array","attach","attribut","attribute.","await","befor","between","birthyear","chang","change.","collect","collection,","collection.","color","compound","compoundindex","compression',","conform","console.dir(mydatabase.heroes.name);","const","contain","continu","creat","damag","data","database,","default","default.","default:","defin","definit","definition.","detection,","dev","disabl","disk","document","document,","document.","don't","done","enabl","encrypt","encrypted,","encrypted.","encrypted:","ensur","error","even","everyth","exampl","example,","false.","field","fieldnam","fieldnames,","fields.","fill","final","final,","final:","find","first","firstname:","follow","getter","greater","healthpoint","here","hero","hero\",","hero.","huge","improv","index","index,","index:","indexed,","indexes,","insert","insid","instantli","integ","internally,","invalid","it.","json","jsonschema","keycompress","keycompression:","know","lastname:","later.","level","looks.","make","map","match","maximum","mean","migrationstrategi","modifi","mydatabase.collection({","myheroschema","myschema","name","name:","nest","new","notic","notice:","number","number,","object","objects.","observ","options.","over","pass","per","perform","popul","primary,","primary.","projects.","properti","properties:","provid","queri","regex","requir","required.","required:","run","rxattachment.","rxdb","rxdb,","rxdocument,","rxschema","save","schema","schema\",","schema.","schema.org.","schema:","schemawithdefaultag","schemawithfinalag","schemawithindex","secondari","secret","see","sens","set","settings:","simpl","singl","skill","space.","spec","standard","start","store","store.","string","string,","support","sure","team","temporari","therefor","things.","throw","title:","top","true","true,","type","type:","unencrypt","unique,","unset","us","valid","valu","value.","values.","version","version:","whenev","within","worry,","written","z0","z][[a","za","{","}","});","},","};"],"rx-collection.html":["$","'bar'","'bar1'","'bar2'","'bob'","'bob',","'foo',","'foo1',","'foo2',","'heroes',","'humans',","'kelso'","'kelso';","(optional)",".collection()",".exec().then(doc",".exec();",".find()",".gt(18)",".insert()",".then(()",".then(collect",".then(json",".upsert()",".where('age')","//","18","409","77;","9]*$.","=","==","=>",">","[]","[rxdocument,","^[a","abov","allow","appli","array.","atom","atomicupsert()","attach","attachments,","attachments:","attribut","automat","automigr","automigrate:","await","basic","befor","behavior","belong","between","bulk","bulkinsert","bulkinsert()","call","chang","collect","collection'","collection,","collection.","collection2","collection2);","conflict","console.dir(changeevent));","console.dir(collection));","console.dir(doc));","console.dir(json));","console.log('done'));","console.log(collect","const","continu","couchdb","creat","custom","data","data.","databas","database,","database.","database:","db.collection({","db.heroes;","db['heroes']","decrypt","defin","destroy","destroy()","differ","directli","doc","docdata","document","document,","document.","documents,","documents.","does,","done.","dump","dump()","each","easily.","encrypt","error","error.","error:","errors,","especi","event","execut","exist","expect","export","fail","failur","fals","faster","field","fields.","fill","find","find()","findone()","finish","firstname:","follow","form","free","full","function","function.","generated.","given","handled.","help","here","here.","ident","identifi","import","importdump()","insert","insert$","insert()","insert.","inserted.","instanc","instance.","isrxcollect","it.","javascript","json","known","last","lastname:","later","look","mani","match","mean","memori","method","method.","methods:","migrat","migration.","migrationstrategi","migrationstrategies:","mirgrat","more","much","multipl","mycollect","mycollection.$.subscribe(changeev","mycollection.atomicupsert(docdata);","mycollection.bulkinsert([{","mycollection.destroy();","mycollection.dump()","mycollection.dump(true)","mycollection.findone('foo')","mycollection.findone().where('name').eq('foo')","mycollection.importdump(json)","mycollection.insert$.subscribe(changeev","mycollection.insert({","mycollection.newdocument({","mycollection.remove$.subscribe(changeev","mycollection.remove();","mycollection.update$.subscribe(changeev","mycollection.upsert(docdata);","mycollection.upsert({","mydatabase.collection({","myschema","myschema,","name","name.","name:","name:foobar","need","never","new","newdocument()","newli","not.","notice:","now","object","observ","older","olderdocu","once,","oper","operations.","option","optional.","options:","orm","orm/drm.","otherwis","overwrit","overwritten","paramet","paramt","parrallel","pass","plugin","pouchdb","pouchset","pouchsettings:","prefil","prevent","previou","primari","primary,","property.","protocol.","queri","re","refind","regex:","remot","remov","remove$","remove()","replic","replications.","result","return","run","running.","rxcollect","rxcollection.","rxcollection.newdocument(initaldata).","rxcollections,","rxdatabas","rxdb,","rxdb.isrxcollection(myobj);","rxdocument","rxdocument.","rxdocument.atomicupdate.","rxdocument],","rxj","rxquery.find().","rxschema","rxschema.","same","save","schema","schema:","schemas,","schemaversions.","see","server","set","short","similar","simpl","singl","sometim","spawn","specifi","standard","statics,","statics:","still","stop","store","stream","success","success:","support","sync","sync()","tempdoc","tempdoc.ag","tempdoc.lastnam","tempdoc.save();","temporari","through","throw","times.","timespan,","transform","tri","true","true,","two","type","type.","uniqu","until","up","updat","update$","upsert","upsert()","us","valid","valu","veri","version","versions.","wait","want","within","work","z0","z][a","{","{}","{},","}","})","});","},","};","}]);"],"rx-document.html":["$","$inc:","$set:","'","'bar'","'carolina',","'foo',","'foobar'","'foobar');","'foobar';","'foobar2'","'foobar2');","'foobar2';","'foooobarnew'","'foooobarnew';","'gibson',","'h1rg9ugdd30o',","'name","'name'","'steve');","(olddata)","(via","*/","+","...",".find()",".insert()",".save()",".subscribe(changeev",".subscribe(newnam","/*","//","1","1;","3.","33","=","=>",">","_deleted:tru","access","ag","age:","anyth","assign","atomicset()","atomicupd","atomicupdate()","attribute.","automat","await","base","befor","belong","boolean","bound","call","chang","changed.","changeev","changefunct","changes.","collection'","collection,","collection.","compar","console.dir(changeevent));","console.dir(documents));","console.dir(isname);","console.dir(json);","console.log('nam","console.log(laststate);","console.log(mydocument.deleted);","console.log(mydocument.get('firstname'));","console.log(mydocument.name);","console.log(mydocument.nested.attribute);","const","continu","current","data","databas","decrypt","delet","deleted$","deleted$.","depend","describ","directli","directly.","doc","document","document'","document,","document.","each","emit","encrypted,","event","fals","field","find","firstnam","firstname:","fistname:","foobar","function","function.","get$()","get()","getter","given","here","ident","increas","insert","inserts,","instanc","instance.","instead","is:","isnam","isname;","isrxdocu","json","jsx.","lastname:","laststat","life","mean","method","modifi","modifyjs.","mongo","mycollection.find().exec()","mycollection.insert({","mydocument.$","mydocument.atomicset('firstname',","mydocument.atomicset('name',","mydocument.atomicset('nested.attribute',","mydocument.atomicupdate(changefunction);","mydocument.deleted$.subscribe(st","mydocument.firstnam","mydocument.firstname$.subscribe(newnam","mydocument.get$('name')","mydocument.get('name');","mydocument.nam","mydocument.name;","mydocument.remove();","mydocument.save();","mydocument.set('firstname',","mydocument.tojson();","mydocument.update({","mydocument.whatever.nestedfield","mydocument.whatever.nestedfield;","mymethod.bind(mydocument)","name","name:","nest","nestedvalu","new","newname));","newname;","not.","note","notic","notice:","now","null;","object","object.","observ","observables:","olddata.ag","olddata.nam","olddata;","option","parameter.","passportid:","path","plain","pouchdb","properti","proxi","purg","queries.","record","relat","remov","remove()","result","return","returning.","rxdb,","rxdb.isrxdocument(myobj);","rxdocument","rxdocument,","rxdocument.","rxj","rxquery.","save()","see","set","set()","set).","setter","singl","state);","stefe'","steve'","storag","store","submit","syntax,","table.","take","temporari","thing","time","tojson()","transform","true","updat","update()","us","useabl","valu","value,","value.","values.","var","whether","work","{","}","});","},"],"rx-query.html":["$","$.subscribe()","$eq:","$exists:","$inc:","$or","'","'%like%'","'.*foo.*'}})","'fifoo'","'fifoofa'","'foo'","'foo'}})","'foobar',","'foofa'","'got","'i');","*/});","+","...",".exec().then(docu",".find()",".findone()",".gt(18);",".sort('age')",".where('age')",".where()","//","1","18","19","5'","6'","=","=>",">","[","[rxdocument,rxdocument,rxdocument..]","afterwards.","ag","again","age:","allow","alway","array","await","basic","behaviorsubject","call","case","chain","chang","changed.","check","collect","collection.","composit","console.dir(documents));","console.dir(results);","console.log('got","const","continu","creat","current","data","database,","database.","databases,","delet","directli","doc","docs.","document","documentdata","documents.","doesdocumentdatamatch()","eg:","emit","equival","etc...","exampl","example:","exec()","exist","extrem","fals","fast","fe:","field.","find","find()","findon","findone()","foo","found","function","given","heavi","helpful","here","id:","immut","immutable.","increas","insensit","insert","instanc","instead","isrxqueri","it,","keep","learn","less","mango","match","means,","methods.","mind","modifi","mqueri","mycollect","mycollection.find().where('age').gt(18).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').gt(18);","mycollection.find().where('age').gt(20).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').lt(18);","mycollection.find().where('name').eq('foo')","mycollection.find();","mycollection.find({$or:","mycollection.find({name:","mycollection.insert({/*","name","name:","new","normal","nosql","not.","notice:","now","null","object","object,","observ","older","on","optimis","origin","over","pass","perform","possibl","pouch","previou","promis","queri","query.","query.$.subscribe(result","query.exec();","query.remove();","query.update({","queryobject","queryobject.exec();","queryobject.sort('name');","queryobjectsort","queryobjectsort.exec();","reactiv","read","regexp","regexp('^foo$',","regexp}})","remov","remove()","removeddoc","resolv","result","result.","results.length);","results:","return","run","rxdb","rxdb,","rxdb.isrxquery(myobj);","rxdocument","rxqueri","rxquery'","rxquery,","rxquery.","same","search","see","selectors.","set","set.","shell","show","singl","sort","sql","state","statement","subscript","syntax","syntax.","this,","time.","togeth","true","ui","updat","update()","us","value.","var","without","write","written","youngest","{","{$eq:","{$regex:","}","});","},","};","}})"],"rx-attachment.html":["'cat.jpg'","'humans',","'image/jpeg'","'object',","(async)","(string)","(string|blob|buffer)",");",".","//","0,","=","=>","[];","ad","add","allattachments$","allattachments()","array","assign","attach","attachment'","attachment.","attachment.getdata();","attachment.getstringdata();","attachment.remove();","attachments,","attachments:","attributes/methods.","await","befor","better","binari","blob","blobbuff","buffer.","const","continu","data","data,","data.","db","digest","doc","document.","documents.","done.","each","emit","encrypt","encrypted:","ensur","exist.","files,","follow","get","getattachment()","getdata()","getstringdata()","here","higher","id","id,","id.","imag","length","limit","md5","mycollect","mydatabase.collection({","mydocument.allattachments$.subscribe(","mydocument.allattachments();","mydocument.getattachment('cat.jpg');","mydocument.putattachment({","myschema","name","name:","new","null","number","number.","object","observ","password","perform","pouchdb,","promis","properties:","putattachment()","quota","re","regular","remov","remove()","repres","resolv","return","rev","revis","rxattach","rxcollection.","rxdb","rxdb,","rxdocument","rxdocument.","schema","schema:","set","side","store","stream","string","string,","string.","sum","time","to.","true","true,","type","type:","us","version:","want","whatev","{","}","});","},","};"],"middleware.html":["'anyvalue';","'foobar'","'foobar',","'myfield',","()","(also","//","100));","50","50;","=","=>","action","add","ag","alreadi","another.","anyfield","async","asynchron","asynchronous.","atom","attribut","avoid","await","befor","behavior","bind","block","cach","call","case","certain","chang","clear","code.","collection.","complex","console.log(doc.myfield);","const","constructed.","continu","control","creat","custom","data","databas","database.","default","defin","delet","depend","differ","doc","document","document.","documents.","dure","emit","error('stop');","error.","event","execut","false);","field","field,","first","flexibl","follow","function","functions.","get:","getter/sett","happen","help","here","hook","hook,","hook?","hooks)","hooks:","ideas:","insert","instanc","instance.","interact","lastnam","level","lifecycl","list","logic","make","mean","middlewar","model","modifi","mongoose,","mongoose.","mycollection.findone().exec();","mycollection.postcreate(function(plaindata,","mycollection.postinsert(function(plaindata,","mycollection.postremove(function(plaindata,","mycollection.postsave(function(plaindata,","mycollection.preinsert(function(plaindata){","mycollection.preremove(function(plaindata,","mycollection.presave(function(plaindata,","nest","new","notice:","notif","object","object.defineproperty(rxdocument,","on","oper","parallel","parameter,","parameter.","pass","plain","plaindata.ag","plaindata.anyfield","post","postcreat","postinsert","postremov","postsav","pre","preinsert","preremov","presav","promise(r","promise.","receiv","remov","removed.","return","run","rxcollect","rxcollection.insert","rxdatabas","rxdb","rxdb,","rxdocument","rxdocument){","rxdocument,","rxdocument.remov","rxdocument.sav","save","saved.","schema","second","seri","set","settimeout(res,","specif","specifi","stop","structur","support","sure","synchron","task","therefor","throw","trigger","true);","updat","us","usag","valid","valu","want","way","whenev","whole","written","{","});","},"],"orm.html":["'","'!!';","'aaah!!'","'aaah!!';","'cat.txt',","'heroes'","'heroes',","'i","'meow","'skeletor'","'text/plain'","+","//","=","add","attach","attachments:","await","behavior","call","capabl","collect","collection.","collection:","collections.","console.log(attachment.scream());","console.log(doc.scream());","console.log(doc.whoami());","console.log(heroes.scream());","console.log(heroes.whoami());","const","contain","continu","creat","data","data:","defin","doc","doc.putattachment({","document","function","function(){","functions,","here","hero","heroes.findone().exec();","heroes.insert({","id:","instanc","keyword","keyword:","kitty',","map","method","methods:","mongoose,","mydatabase.collection({","myschema,","name:","names.","new","object","orm","orm/drm","pass","relat","resolv","return","rxattachemnt","rxdb","rxdb,","rxdocument","schema:","scream:","skeletor!!'","specif","static","statics:","this.nam","this.name;","type:","us","whoami:","wide","wide.","{","}","});"],"population.html":["'alice'","'alice',","'array',","'bob',","'carol'","'carol',","'dave'","'human","'human'","'human',","'object',","'string'","'string',","(primari","//","//>","//[insert","0,","=","[","]","_","add","alway","anoth","array","array.","attribut","await","belong","bestfriend","bestfriend:","collect","collections.","come","console.dir(bestfriend);","console.dir(friends);","console.dir(mother);","const","continu","database.","describ","direct","doc","doc.bestfriend_;","doc.populate('bestfriend');","document","exactli","exampl","export","family:","field","fieldname.","foreign","found.","friend","friends:","getter","getter.","here","here]","human","human',","humanscollection.findone('alice').exec();","humanscollection.findone('bob').exec();","humanscollection.insert({","in.","items:","join","keyword","method","method.","mongoose.","mother","mother:","mycollect","mycollection.insert({","mydatabase.collection({","mydocument.family.mother_;","mydocument.friends_;","name:","nest","new","notic","null","on","path","popul","populate()","primary:","promis","properties:","ref","ref:","refer","referenc","refhuman","relat","resolv","return","rxcollect","rxdb","rxdb,","rxdocument","rxdocument)","rxdocument,","rxdocument[alice]","same","schema","schema:","schemawithonetomanyrefer","sometim","specifi","still","string","suffix","take","therefor","title:","to.","true","true,","type:","underscor","underscore_","us","valu","values.","version:","via","want","work","{","}","});","},","};"],"data-migration.html":["'bi","'messages',","'sendercountry'","(or","(string)","(version:",");","*","*/",".migratepromise():",".then(respons","/**","//","0","0,","0.","02","1","12","12t23:03:05+00:00","1486940585","1:","2","2)","2017","2:","50,","=","=>","accomplish","add","alreadi","alway","amount","app","appear","assigned.","assur","asynchron","automat","automigr","automigrate:","await","awesom","bar.","better","call)","chang","client'","code","collect","collection,","collection.","combin","compar","console.dir(state),","console.error(error),","console.log('done')","const","continu","coordin","countri","created.","creation","data","data.","datamigr","date","date(olddoc.time).gettime();","dates.","decid","default,","defin","delet","deleted:","devic","distribut","doc","document","don't","done","done:","easier","emit","error","exist","false,","fetch('http://myserver.com/api/countrybycoordinates/'+coordinates+'/')","field","filter","finish","function","function(olddoc){","get","greater","hand'","handl","handled:","happen","here","hint","if(olddoc.tim","imagin","incom","increas","instead","leaderelect","load","long","look","lot","make","mani","match","means,","messag","messagecol","messagecol.migratepromise(10);","messages.","messageschemav1,","messeng","migrat","migrated.","migrated:","migratepromise;","migrationpromis","migrationstrategi","migrationstrategies:","mydatabase.collection({","name:","new","new,","newer","newest","null,","number","object","old","olddoc.coordinates;","olddoc.sendercountry=response;","olddoc.tim","olddoc;","older","on","open","paramet","percent:","percentag","problem","promis","properti","provid","remains:","remov","requir","resolv","resourc","respons","response.json();","return","run","rxdb","rxdb,","save","schema","schema'","schema:","schema?","schemas.","sender","server","show","start","state","strategi","string","succeed","success:","sure","tabs.","take","this,","this:","time,","timestamp","total:","transform","true","unix","upon","us","used:","user","user'","user,","users'","users.","version","version,","version.","want","wast","while,","{","}","});","},"],"leader-election.html":["'dies'.","'localstorage',","'mypassword',","'temperature',","'weatherdb',","*",".then(()","//","10","10);","1000","5","6*5=30","=","=>","access.","adapter:","algorithm","alway","api","await","becom","befor","between","broadcast","browser","build,","case","channel","charts,","check","client","closed,","closed.","code","collection.","come","conflict","connections.","console.log('long","const","continu","corner.","count","crown","current","data","data,","date().gettime()","db","db.collection({","db.temperature.insert({","db.waitforleadership()","degrees:","device,","differ","display","easy,","elect","exact","exactli","exampl","fetch('https://example.com/api/temp/');","hand","heatmaps.","here","imagin","implement","inspect","instanc","instances.","javascript","king!');","lead","leader","leader,","leader.","leaderelect","live","locat","machine.","make","manag","mani","mark","matter","messag","minute.","module.","moment","more","multiinstance:","multipl","mupltipl","myschema","name:","new","nodej","notic","now","number","old","on","once.","open","out","over","password:","per","pleas","polling.","power","process","produce,","pull","read","reassign","redund","remot","replic","resourc","right","run","runtime.","rxdb","rxdb,","rxdb.create({","same","save","schema:","second","seconds.","see","send","sent","server","site","solut","solv","start","stay","sure","system","tab","tab.","tabs,","temp","temp,","temperatur","ten","them,","these","thing","this,","time","time:","top","traffic","tri","true","until","us","usag","vanillaj","variou","via","visitor","wait..","wast","way","websit","websocket","wire","you.","{","});","},","♛"],"replication.html":["'http://localhost:10102/db/',","(default)","(e.g.","(optional)","(remot","//","=","=>","[default=true]","active$","adapt","add","aliv","alive$","anoth","async","await","basic","between","call","cancel","cancel()","chang","change$","collect","complete$","complete.","completed.","completes.","connect","console.dir(active));","console.dir(alive));","console.dir(change));","console.dir(completed));","console.dir(docdata));","console.dir(error));","const","continu","couchdb","couchdb,","couldn't","data","data.","database)","database,","database.","databases.","db.","default=tru","denied$","depend","di","died.","dies.","direct","direction:","docs$","document","due","dure","each","emit","enabl","error","error$","event","example.","fail","fals","featur","handler","here","here.","http","http'));","https://pouchdb.com/api.html#repl","immedi","impli","instanc","instance,","intern","leader","live:","make","match","method","mycollection.find().where('age').gt(18)","mycollection.sync({","need","never","new","observ","occur","on","option","options:","over","pend","performance,","permissions).","plugin","pouch/couch","pouchdb","power","properli","pull:","push:","queri","query:","recogn","remot","remote:","replic","replicated.","replication,","replication.","replicationst","replicationstate.active$.subscribe(act","replicationstate.alive$.subscribe(al","replicationstate.cancel();","replicationstate.change$.subscribe(chang","replicationstate.complete$.subscribe(complet","replicationstate.denied$.subscribe(docdata","replicationstate.docs$.subscribe(docdata","replicationstate.error$.subscribe(error","retry:","return","rx.collection.sync()","rxcollect","rxcollection,","rxcollection.sync()","rxcollection.sync().","rxdb","rxdb,","rxdb.plugin(require('pouchdb","rxj","rxreplicationst","same","save","serverurl,","specifi","start","stream.","sure","sync","sync.","synchronis","time","transmit","true","true,","us","valu","via","waitforleadership:","won't","you'r","{","});","},"],"replication-graphql.html":["!==","\"${doc.name}\",","\"alice\",","\"deleted\":","\"foobar\",","\"id\":","\"lastname\":","\"name\":","\"updatedat\":","\"wilson\",","$human)","${doc.updatedat},","'',","'deleted',","'http://example.com/graphql',","'new'","'rxdb/plugins/repl","'subscript","'ws://example.com/subscriptions',","(!doc)","(a.id","(a.updatedat","(beta)","(doc.id","(doc.updatedat","(optional)",");","*","*/",".active$",".awaitinitialreplication()",".cancel()",".canceled$",".error$",".isstopped()",".recieved$",".run()",".send$","/","/**","//","0","10","1000","1000);","1564783474,","1;","5)","5,","60","=","===","=>",">","[human!]!","`","`;","`subscript","`{","abov","again","allow","alway","amount","arg","args.human;","args.lastid)","args.limit);","args.minupdatedat)","around,","assum","autmat","automat","automatically,","await","b)","b.id)","b.updatedat)","back","batch","batchsize:","befor","boolean!","build","builder","call","called.","cancel","canceled,","canceled.","case,","caus","chang","changeobserv","changeobservable.subscribe({","changes,","check","client","client.","compar","comparison","compliant","conflict","conflict,","conflicts,","cons:","console.dir(error);","console.log('initi","console.log('someth","const","construct","continu","couchdb","cours","creat","createhuman($human:","cycl","d","d.id","data","data');","data.","databas","date","date().gettime()","debug","debugging.","default","delet","deleted,","deleted:","deletedflag:","design","destroyed.","developer.","do","doc","doc.id);","doc.updatedat","doc;","document","documents,","documents.","documents.filter(d","documents.push(doc);","documents.sort((a,","done","done,","done.","down","download","dure","each","emit","endpoint","endpoint,","endpoint.","ensur","equal","equal,","error","es5","es6","even","event","events,","exampl","exist","fals","false,","false;","faster","feedforrxdbrepl","feedforrxdbreplication(lastid:","feedforrxdbreplication:","fetch","filterforminupdatedatandid.slice(0,","finish","first","flag","flags.","full","function","functions.","get","given","graphql","graphql'));","graphql';","handel","handl","handler","happen","happens,","height","here","here,","human","human:","humanchang","humaninput","humaninput)","humaninput):","id","id!,","id,","id:","import","improv","indic","initi","input","input.","int!):","int!,","internally.","interv","it'","it.","known","last","lastname,","lastname:","later","latest","less","let","like:","limit","limit:","limited;","list","live","live:","liveinterv","liveinterval:","logic","look","mani","math.round(new","mean","minupdatedat:","modifi","modifier:","multipl","mutat","mycollection.syncgraphql()","mycollection.syncgraphql().","mycollection.syncgraphql({","name,","name:","need","network","never","new","newer","next(data)","non","not.","notice:","notifiers,","object","observ","offlin","offline,","on","one,","ongo","onhumanchang","onlin","out","part","play","plugin","problem","promis","pros:","pull","pull:","pullquerybuild","pullquerybuilder,","pullquerybuilder.","push","push:","pushquerybuild","queri","query,","querybuild","querybuilder,","querybuilder.","queu","realtime.","reciev","recommend","reconnect:","relat","reli","replic","replication,","replication.","replicationst","replicationstate.","replicationstate.awaitinitialreplication();","replicationstate.cancel();","replicationstate.error$.subscribe(error","replicationstate.isstopped();","replicationstate.run();","requir","resolut","resolv","resourc","result","return","revis","rootvalu","row","run","run()","rxcollect","rxdatabas","rxdb","rxdb,","rxdb.","rxdb.plugin(require('rxdb/plugins/repl","rxdb.plugin(rxdbreplicationgraphql);","rxdbreplicationgraphql","rxgraphqlreplicationst","second","send","server","server,","server.","set","set.","sethuman(human:","sethuman:","setup","side","side,","side.","singl","solv","someth","something,","soon","sort","sortabl","sorteddocu","sourc","start","state","still","stopped.","string!,","subscrib","subscript","subscriptioncli","subscriptionclient(","sync","systems.","take","them,","thing","this,","time","transport","trigger","true","true,","true/fals","true;","truth","two","type","until","updat","updatedat","updatedat.","updatedat:","url","url:","us","usag","user","value.","variabl","variables.","variables:","veri","watch","way","will,","work","worst","wrong');","ws';","wsclient","wsclient.request({","{","{}","}","});","},","};","}`;"],"query-change-detection.html":["'');","'',","'heroesdb',","'memory',","+",".exec()'",".reduce((prev,","//","=","=>","adapter:","again.","anyuser.loggedin","anyuser.save();","await","beta","big","calcul","case","collect","collection.","const","continu","cost.","creat","cur)","cur.username+","current","databas","database.","db","default.","detect,","disabl","display","document.queryselector('body').innerhtml","documents,","documents.","done","driver,","enabl","enabled.","engine.","events.","exampl","false;","field","gain","here","huge","imagin","in.","io","it.","log","long","make","mani","memori","meteor","multipl","name:","new","notice:","now,","observ","off,","on","oplog","optim","over","page","pass","perform","plu","point","prev","queri","queries,","queries.","query.","query.$.subscribe(us","querychangedetect","querychangedetection:","re","realli","request","result","reus","run","rxchangeevent.","rxdb","rxdb,","rxdb.create({","same","similar","storag","subscrib","sure","take","then,","thousand","time","toplist","true","update/insert/remov","us","user","userscollection.find().where('loggedin').eq(true).sort('points');","veri","want","whole","without","work","zero","{","});"],"in-memory.html":["'bar'});","'npm","'pouchdb","(all","//","=","adapt","add","amount","anoth","apply.","attach","automat","await","awaitpersistence()","befor","behav","both.","call","case","chang","collect","collection,","collection.","collections.","comput","cons:","const","continu","creation","data","decrypt","disc","doc","document","drive.","encrypt","enough","equal","event","everyth","faster","field","fields.","fire","fit","hard","heavi","here","hook","import","important:","inherit","initi","inmemori","inmemorycollection,","insid","instal","instead","it'","know","load","longer","mean","memcol","memcol.awaitpersistence();","memcol.find().exec();","memcol.insert({foo:","memori","memory';","memory)","mycollect","mycollection.inmemory();","new","now","on","oper","optim","origin","over","parent","pouchadaptermemori","pouchdb","promis","pros:","queri","regist","replic","replicated,","resolv","result","return","run","rxcollect","rxcollection().awaitpersistence()","rxcollection().inmemory();","rxcollection,","rxdb,","rxdb.plugin(pouchadaptermemory);","same","save'","separ","share","small","static","store","stream.","support","sure","take","them,","time","two","u","until","updat","us","version","want","way","work","write","you'd"],"rx-local-document.html":["'bar'","'bar');","'bar';","'bar2');","'foobar',",");","*/","..","/*","//","=","=>","access","addit","alreadi","attach","await","behav","chang","class","collect","collection.","come","const","continu","creat","data","databas","document","documents.","exist","exists.","field","find","foo","foo:","found","getlocal()","handi","handl","here","id","id.","insertlocal()","it'","local","localdoc","localdoc.foo","localdoc.foo;","localdoc.get$('foo').subscribe(valu","localdoc.get('foo');","localdoc.remove();","localdoc.save();","localdoc.set('foo',","localdocu","match","metadata.","migrat","mycollection.getlocal('foobar');","mycollection.insertlocal(","mycollection.upsertlocal(","mydatabase.insertlocal(","new","next","normal","notice:","null","observ","overwrit","promis","proxi","pseudo","queri","remov","replic","resolv","return","rxcollect","rxdatabas","rxdb,","rxdocument.","rxlocaldocu","rxlocaldocument.","same","schema","schema,","set","special","store","throw","undefin","upsertlocal()","us","via","want","work","work!","work.","works!","{","}","});"],"custom-build.html":["'npm","'rxdb/plugins/adapt","'rxdb/plugins/ajv","'rxdb/plugins/attachments';","'rxdb/plugins/core';","'rxdb/plugins/encryption';","'rxdb/plugins/error","'rxdb/plugins/in","'rxdb/plugins/json","'rxdb/plugins/key","'rxdb/plugins/lead","'rxdb/plugins/loc","'rxdb/plugins/no","'rxdb/plugins/repl","'rxdb/plugins/replication';","'rxdb/plugins/schema","'rxdb/plugins/server';","'rxdb/plugins/update';","'rxdb/plugins/valid","'rxdb/plugins/validate';","'rxdb/plugins/watch","'unsaf","*/});","...","//","=","activ","adapt","add","addit","advantag","ajv","allow","altern","alway","anoth","attach","bandwidth","basic","batteri","befor","better","bigger","bit","both","browser","build","build,","build.","builds.","call","chang","changeev","changes'));","changes';","changestream.","check","check'));","check';","checkadapt","cherri","choos","code","collect","collection,","collections.","compat","compliant","compress","compress,","compression'));","compression';","const","content","continu","core","core,","correctli","couchdb","creat","crypto","custom","data","databas","database.","databases.","default","default,","default.","dev","develop","disablekeycompress","disadvantag","document","documents'));","documents';","doesn't","don't","done","dump","dump'));","dump';","elect","election'));","election';","electron","emit","enabl","enabled.","encrypt","endpoint.","ensur","environment.","error","es5","es6","eval'","eval()","eval.","expos","express","fast","faster.","full","function","functionality.","graphql","graphql'));","graphql';","handl","hard","here","import","import/export","imported.","includ","input","insert","instal","instanc","instead.","intern","internet,","it.","javascript,","js","json","jsonschema","key","keycompress","keycompressor","leader","leaderelect","leaderelection.","let","local","lot","make","manual","mean","meant","memori","memory'));","memory';","messag","messages'));","messages';","mode.","modul","module,","module.","myrxcollection.pouch.put({/*","myrxcollection.watchforchanges();","need","need.","never","new","node","normal","not.","noth","now","on","onc","option","origin","overwrit","part","password.","perform","pick","plugin","plugin.","policies.","pouchdb","pouchdb'","product","production.","provid","realli","reduc","reli","replic","requir","require('rxdb/plugins/core');","required.","run","rxcollection.","rxdatabase.","rxdb","rxdb'","rxdb,","rxdb.","rxdb.plugin(require('rxdb/plugins/adapt","rxdb.plugin(require('rxdb/plugins/ajv","rxdb.plugin(require('rxdb/plugins/attachments'));","rxdb.plugin(require('rxdb/plugins/encryption'));","rxdb.plugin(require('rxdb/plugins/error","rxdb.plugin(require('rxdb/plugins/in","rxdb.plugin(require('rxdb/plugins/json","rxdb.plugin(require('rxdb/plugins/key","rxdb.plugin(require('rxdb/plugins/lead","rxdb.plugin(require('rxdb/plugins/loc","rxdb.plugin(require('rxdb/plugins/no","rxdb.plugin(require('rxdb/plugins/repl","rxdb.plugin(require('rxdb/plugins/replication'));","rxdb.plugin(require('rxdb/plugins/schema","rxdb.plugin(require('rxdb/plugins/server'));","rxdb.plugin(require('rxdb/plugins/update'));","rxdb.plugin(require('rxdb/plugins/valid","rxdb.plugin(require('rxdb/plugins/validate'));","rxdb.plugin(require('rxdb/plugins/watch","rxdb.plugin(rxdbadaptercheckmodule);","rxdb.plugin(rxdbajvvalidatemodule);","rxdb.plugin(rxdbattachmentsmodule);","rxdb.plugin(rxdbencryptionmodule);","rxdb.plugin(rxdberrormessagesmodule);","rxdb.plugin(rxdbinmemorymodule);","rxdb.plugin(rxdbjsondumpmodule);","rxdb.plugin(rxdbkeycompressionmodule);","rxdb.plugin(rxdbleaderelectionmodule);","rxdb.plugin(rxdblocaldocumentsmodule);","rxdb.plugin(rxdbnovalidatemodule);","rxdb.plugin(rxdbreplicationgraphql);","rxdb.plugin(rxdbreplicationmodule);","rxdb.plugin(rxdbschemacheckmodule);","rxdb.plugin(rxdbservermodule);","rxdb.plugin(rxdbupdatemodule);","rxdb.plugin(rxdbvalidatemodule);","rxdb.plugin(rxdbwatchforchangesmodule);","rxdb.plugin(rxdbzschemavalidatemodule);","rxdbadaptercheckmodul","rxdbajvvalidatemodul","rxdbattachmentsmodul","rxdbencryptionmodul","rxdberrormessagesmodul","rxdbinmemorymodul","rxdbjsondumpmodul","rxdbkeycompressionmodul","rxdbleaderelectionmodul","rxdblocaldocumentsmodul","rxdbnovalidatemodul","rxdbreplicationgraphql","rxdbreplicationmodul","rxdbschemacheckmodul","rxdbservermodul","rxdbupdatemodul","rxdbvalidatemodul","rxdbwatchforchangesmodul","rxdbzschemavalidatemodul","rxdocument.","rxdocument.upd","rxquery.update.","save","schema","schema'));","schema';","schemacheck","secur","see:","server","set","setup","size,","size.","spawn","standart","start","sth","support","sure","tell","thing","this,","this:","throw","thrown.","true","tutorial:","updat","us","valid","valid.","validate'));","validate';","validation.","want","watch","whose","window.","work","write","z"],"plugins.html":["!==","&&","'bar'","'foo'.","'mycollection.hello()'","'string'","'world';","()=>'bar'","(password","(proto)","*","*/","/**","//","=","=>","@link","@param","ad","add","addit","afterward","alway","anyth","avail","basic","call","call.","class","classes,","code","collect","collection.options.foo();","const","contain","continu","correspond","creat","data","don't","each","exist","extend","fill","find","foo:","function","function(){","function(password)","get","here","here.","hook","hooks.","https://github.com/pubkey/rxdb/blob/master/src/plugin.ts#l22","insid","intern","it.","javascript","jump","keynam","know","list","list:","manipul","manipulate.","method","method,","modifi","mydatabase.collection({","myplugin","myschema,","name:","new","object","object.","option","options:","overwrit","overwritable:","overwritten","paramet","parameter,","pass","password","password.length","plugin","plugin.","plugins:","pouchdb","properti","proto.hello","prototyp","prototypes:","requir","return","rxcollect","rxcollection:","rxdatabas","rxdb","rxdb'","rxdb,","rxdb:","schema:","see","set","signal","simple.","sometim","static","static.","these","time","true","true,","true.","typeof","us","validatepassword:","valu","veri","want","{","{object}","||","}","})","},","};"],"adapters.html":["'base","'idb'","'memory'","'mydatabase',","'node","'pouchdb","'react","'rxdb';","'websql'","(!global.atob)","(!global.btoa)","*","/","//","2","2'","2.","64","64'","=","abstract","access","adapt","adapter.","adapter:","adapters.","add","advantag","alway","asyncstorag","asyncstorage'","asyncstorage'));","asyncstorage.","asyncstoragedown","avoid","await","base","behavior.","best","between","bind","browser","build","c++","choos","claim","code.","compar","const","contain","continu","cordova","cordova'","cordova.sqliteplugin.","core","data","databas","database.","decode;","default.","defin","depend","deprecated.","differ","down","down');","encode;","encode}","ensur","environ","environment,","event","exampl","faster","files.","filesystem","filesystem.","first","folder","full","global","global.atob","global.btoa","good","here","http'));","idb","idb'));","implement","import","in,","includ","indexeddb","insid","instal","it'","it,","itself","javascript","leveldb","leveldb'));","leveldown","library.","link","lost","mean","memdown","memori","memory'));","memory.","modul","much","multipl","name","name:","nativ","native'","native.","need","new","node","nodej","npm","otherwis","over","overview","package.json.","page","perform","persist","phonegap","pleas","plugin","polyfil","pouchdb","problem","process","process.brows","react","reactn","realli","reason.","recommend","require('asyncstorag","require('leveldown');","require('memdown');","runtim","rxdb","rxdb,","rxdb.create({","rxdb.plugin(require('pouchdb","rxdb.plugin(sqliteadapter);","same","save","self","shim","sqlite","sqlite'","sqlite'));","sqliteadapt","sqliteadapterfactori","sqliteadapterfactory(sqlite)","state,","step","storage.","store","stored.","strang","suit","terminates.","test","true;","tutorial.","unless","us","version","want","websql","websql'));","websql.","when:","where.","work","{","{decode,","}","});"],"tutorials/typescript.html":["'","'describ","'heroes',","'human","'integer'","'lastname']","'memory'","'mydb',","'myid',","'object',","'piotr',","'potter',","'rxdb';","'string'","'string',","()","(v:",")",");","*","*/","+","/**","//","0,","5","=","=>","['firstname',","access","adapter:","add","age:","age?:","alldoc","alldocs.length;","amount:","anyth","async","await","base","basic","befor","being',","bound","clean","collect","collection.","collection:","collections,","come","console.log('insert","console.log(amount);","console.log(doc.firstname);","const","contain","continu","countalldocuments:","creat","data","databas","database,","database.","declar","defin","description:","directli","doc","doc.firstname);","doc.scream('aah!');","doc:","docdata,","document","document.","documents.","else.","fals","first","firstname:","fulli","function","function(this:","gener","go","helper","here","herocollect","herocollection)","herocollection,","herocollectionmethod","herocollectionmethods:","herodocmethod","herodocmethods,","herodocmethods:","herodoctyp","herodocu","herodocument,","herodocument.","heroes:","heroschema,","heroschema:","hook","human","import","insert","instal","it'","it.","json","jsonschema","keycompression:","lastname:","learn","look","make","mani","merg","method","methods,","methods:","mydatabas","mydatabase.collection({","mydatabase.destroy();","mydatabase.heroes.countalldocuments();","mydatabase.heroes.insert({","mydatabase.heroes.postinsert(","mydatabase:","mydatabasecollect","mypostinserthook(","name:","new","now","number","number;","on","option","orm","passportid:","preinsert","primary:","promise;","properti","properties:","represent","required:","return","rxcollection,","rxcollection;","rxdatabase,","rxdatabase;","rxdb","rxdb,","rxdb.","rxdb.create({","rxdocument","rxdocument;","rxjsonschema","rxjsonschema,","schema","schema',","schema:","scope","scream:","screams:","sever","static","statics:","string)","string;","them.","this.find().exec();","this.firstnam","this.nam","this:","title:","true","true,","tutori","type","type:","typed!","types,","typescript","typescript.","up","us","version:","way","what.touppercase();","what:","{","}","});","},","};"],"tutorials/server.html":["'/',","'/db',","'bar'","'clientdb',","'foo',","'http://localhost:3000/db/items'","'items',","'memory'","'mydb',","'object',","'pouchdb","'rxdb';","'rxdb/plugins/server';","'string'","'string',","()","(default)","(optional)","(optional),","(req,","*","/","//","0,","3000,","3000`));","=","=>","access","adapt","adapter:","add","allow","api","app","app);","app.","await","befor","between","bigger","build.","client","client.","clientdb","clientdb.collection({","clientdb.items.find().exec();","clientdb.items.sync({","collect","collection.","come","configur","console.log(`serv","const","continu","cor","cors,","cors:","couchdb","creat","data","databas","db","db.collection({","db.items.insert({","db.server({","default","defin","develop","disabl","doc","document","document.","electron","enabl","ensur","everyth","express","express();","fals","false,","fast","forc","have","header","here","http","http';","http://localhost:3000/db","http://localhost:3000/db/item","import","info","insert","instal","instanc","internet,","it.","key:","learn","listen","main","mainapp","mainapp.listen(3000,","mainapp.use('/',","mainapp.use('/db',","memori","memory';","memoryadapt","middlewares...","mode","modul","mount","myschema","name:","need","never","new","node","node,","nodej","now","npm","ok,","omit","on","open","over","part","path:","plugin","port","port:","pouchdb","pouchhttpplugin","primary:","probabl","process","production.","properties:","prototyp","real","relic","remote:","render","replic","res)","res.send('hello'));","rxdb","rxdb,","rxdb.","rxdb.create({","rxdb.plugin(memoryadapter);","rxdb.plugin(pouchhttpplugin);","rxdb.plugin(rxdbserverplugin);","rxdbserverplugin","same","save","schema:","server","server.","server}","set","shell","simul","spawn","spin","start","startserv","startserver:","true","true,","tutori","type:","up","us","useful","value:","version:","want","without","work","worked,","{","{app,","}","});","},","};"],"questions-answers.html":["&","'adapter');","'heroesdb'","+","1","ad","adapt","add","anoth","answer","appropri","befor","bug","call","can't","caus","chang","check'","collect","collection():","collection,","collection.","creat","data","databas","date().gettime()","db","debug,","develop","differ","document","each","error","error.","error:","follow","hard","increas","insid","instanc","it.","make","match","mean","memori","migrationstrategi","mode,","modifi","name","name:","new","now","on","perman","product","question","reset","restart","run","rxdatabas","rxdb","rxdb.removedatabase('mydatabasename',","safe","save","schema","schema,","schema.","simplifi","sometim","strang","strategies:","suffix","throw","timestamp","us","version"],"contribute.html":["&&","(anyth","7","ad","add","ask","befor","bug,","bugfix","build","cd","change.","changes,","check","clone","commit","community.","console.","contribut","contributing!","contribution,","creat","depend","dev","develop","developing,","device,","discuss","dist","doc","docs:instal","docs:serv","document","don't","ensur","everyth","expect","expected.","featur","feature,","file","file.","flow","folder)","folder.","following:","for,","get","git","gitter.","grate","help","higher","http://localhost:4000/","https://github.com/pubkey/rxdb.git","instal","integr","issu","it.","leav","locally,","made","make","manual","merg","modifi","need","nodej","non","npm","open","pr","pull","read","repositori","reproduc","request,","requir","run","rxdb","slow","sourc","src","start","sure","test","test/unit","test:nod","tests,","thank","time","time.","to,","togeth","trivial","unit","version","want","wast","work","work."]},"length":25},"tokenStore":{"root":{"0":{"2":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.012987012987012988},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.012232415902140673},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"1":{"0":{"0":{"0":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}},")":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}}}},"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"2":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"t":{"2":{"3":{"docs":{},":":{"0":{"3":{"docs":{},":":{"0":{"5":{"docs":{},"+":{"0":{"0":{"docs":{},":":{"0":{"0":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"4":{"8":{"6":{"9":{"4":{"0":{"5":{"8":{"5":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"5":{"6":{"4":{"7":{"8":{"3":{"4":{"7":{"4":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"8":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}},"9":{"0":{"0":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},"docs":{}},"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}},"2":{"0":{"1":{"7":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"docs":{}},"5":{"0":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"docs":{}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}},"3":{"0":{"0":{"0":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}},"`":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}},"docs":{}},"docs":{}},"3":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"4":{"0":{"9":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"docs":{}},"docs":{}},"5":{"0":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"6":{"0":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"4":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}},"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"*":{"5":{"docs":{},"=":{"3":{"0":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"docs":{}},"docs":{}}},"docs":{}}},"7":{"7":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"8":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},"docs":{}}},"docs":{}}},"9":{"docs":{},"]":{"docs":{},"$":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"*":{"docs":{},"$":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}},"_":{"docs":{},"]":{"docs":{},"*":{"docs":{},"]":{"docs":{},"?":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}},"docs":{},"(":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"|":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"|":{"docs":{},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01129032258064516},"replication.html":{"ref":"replication.html","tf":0.01556420233463035},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}}}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}}}},"n":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},")":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"=":{"docs":{},">":{"docs":{},"'":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}}}}}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}},"q":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"!":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"b":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}},"b":{"docs":{},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},">":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.01152073732718894},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},"a":{"docs":{},"l":{"docs":{},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.007739938080495356},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"$":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"m":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}},"i":{"docs":{},"v":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"p":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.015873015873015872}},"l":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"c":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}}},"y":{"docs":{},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}},"i":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.021739130434782608},"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"orm.html":{"ref":"orm.html","tf":0.01834862385321101},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.01393188854489164},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"i":{"docs":{},"t":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.026030368763557483},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":10.076923076923077},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128}}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"adapters.html":{"ref":"adapters.html","tf":0.017094017094017096},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}},"s":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.014112903225806451},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.008547008547008548}},"e":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}}}}}}}}}}}}}}}},"k":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.10504201680672269},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"s":{"docs":{},"/":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.015184381778741865},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.014516129032258065},"rx-document.html":{"ref":"rx-document.html","tf":0.018604651162790697},"rx-query.html":{"ref":"rx-query.html","tf":0.013824884792626729},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.025210084033613446},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.045871559633027525},"population.html":{"ref":"population.html","tf":0.04281345565749235},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.025906735751295335},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.03225806451612903},"adapters.html":{"ref":"adapters.html","tf":0.017094017094017096},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.015873015873015872}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}},"?":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}},"n":{"docs":{},"y":{"docs":{},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"t":{"docs":{},"h":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":3.3429487179487176}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}},"j":{"docs":{},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}}},"i":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}},"r":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"c":{"docs":{},"k":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"e":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"a":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}}}}}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.01529051987767584}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128}},"s":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}},"a":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":5.007739938080495},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"e":{"docs":{},"r":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"l":{"docs":{},"k":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"g":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"!":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}},"t":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"c":{"docs":{},"k":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"questions-answers.html":{"ref":"questions-answers.html","tf":0.057692307692307696}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"d":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"e":{"docs":{},"v":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},"o":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}},"'":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}}},"e":{"docs":{},"x":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"s":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}},"a":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},"i":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"u":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}}},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}},"j":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}},"e":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":5},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"r":{"docs":{},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}}}}}}}}}}}}}}}},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"r":{"docs":{},"s":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"d":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":10.012422360248447}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"o":{"docs":{},"k":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.01152073732718894}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"g":{"docs":{},"o":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}}}}},"`":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-collection.html":{"ref":"rx-collection.html","tf":0.016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.03225806451612903},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.046218487394957986},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.04128440366972477},"population.html":{"ref":"population.html","tf":0.03363914373088685},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.015789473684210527},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.03686635944700461},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.023931623931623933},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.01881720430107527},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.021164021164021163}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"s":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.011673151750972763}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"rx-collection.html":{"ref":"rx-collection.html","tf":0.02903225806451613},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.03626943005181347},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.021505376344086023},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.013227513227513227},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"i":{"docs":{},"o":{"docs":{},"n":{"2":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.01834862385321101},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.02072538860103627},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"s":{"docs":{},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"(":{"docs":{},")":{"docs":{},":":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.008547008547008548}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}}}}}}}}},"s":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"s":{"docs":{},"t":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517}}}}}},")":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"+":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"custom-build.html":{"ref":"custom-build.html","tf":5.004643962848297}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.013953488372093023},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}}}},"s":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"c":{"docs":{},"h":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"'":{"docs":{},"t":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"u":{"docs":{},"s":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"u":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.010526315789473684},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"d":{"docs":{},"b":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"n":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}},"i":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}},"p":{"docs":{},"u":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.015184381778741865},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.018518518518518517},"questions-answers.html":{"ref":"questions-answers.html","tf":0.038461538461538464},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"$":{"docs":{},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"o":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}},"+":{"docs":{},"+":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.015184381778741865},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-collection.html":{"ref":"rx-collection.html","tf":0.00967741935483871},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.03361344537815126},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.008421052631578947},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.041474654377880185},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.015384615384615385},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"rx-database.html":{"ref":"rx-database.html","tf":0.03253796095444685},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"adapters.html":{"ref":"adapters.html","tf":0.018803418803418803},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010752688172043012},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.015873015873015872},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"s":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":10.00257731958763}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"e":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"(":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"e":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"k":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"c":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication.html":{"ref":"replication.html","tf":0.007782101167315175}},"l":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"y":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"s":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"o":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"population.html":{"ref":"population.html","tf":0.009174311926605505},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007368421052631579},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"contribute.html":{"ref":"contribute.html","tf":0.024844720496894408}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-collection.html":{"ref":"rx-collection.html","tf":0.027419354838709678},"rx-document.html":{"ref":"rx-document.html","tf":0.03255813953488372},"rx-query.html":{"ref":"rx-query.html","tf":0.018433179723502304},"middleware.html":{"ref":"middleware.html","tf":0.016129032258064516},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.009174311926605505},"data-migration.html":{"ref":"data-migration.html","tf":0.01804123711340206},"replication.html":{"ref":"replication.html","tf":0.01556420233463035},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.023157894736842106},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06912442396313365},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"(":{"docs":{},"a":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},":":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"a":{"docs":{},"h":{"docs":{},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"n":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"'":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"w":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.043478260869565216},"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"i":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010752688172043012}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"i":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.006191950464396285},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007368421052631579}},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},",":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"b":{"1":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"2":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}}}}}}}}}},"[":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},"]":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"r":{"docs":{},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"e":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"leader-election.html":{"ref":"leader-election.html","tf":0.02413793103448276},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}},"n":{"docs":{},"d":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00631578947368421}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.011131725417439703},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"in-memory.html":{"ref":"in-memory.html","tf":0.02072538860103627},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}},"}":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"replication.html":{"ref":"replication.html","tf":0.019455252918287938},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"(":{"docs":{},")":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"s":{"5":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.030959752321981424}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}},"6":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.029411764705882353}}},"8":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-query.html":{"ref":"rx-query.html","tf":0.01152073732718894},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"leader-election.html":{"ref":"leader-election.html","tf":0.020689655172413793},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}},"e":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"c":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"l":{"docs":{},"i":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.021164021164021163}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"s":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"s":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"y":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.03501945525291829},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"i":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"g":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"t":{"docs":{},"c":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.03153988868274583},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},"l":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},"s":{"docs":{},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128}}}}}}}}},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},".":{"docs":{},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"0":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.013824884792626729},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"o":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}}}}}}}}},"e":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"replication.html":{"ref":"replication.html","tf":0.023346303501945526},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.03024193548387097}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"u":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}},"s":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},")":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}}}}},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}},"c":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"o":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},":":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"s":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.009174311926605505}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-collection.html":{"ref":"rx-collection.html","tf":0.012903225806451613},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.007739938080495356},"plugins.html":{"ref":"plugins.html","tf":0.018433179723502304},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.011627906976744186}}},"s":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}}},"(":{"docs":{},")":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128}},"i":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}},"e":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"'":{"docs":{},"+":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"+":{"docs":{},"'":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"a":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842}},"s":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"o":{"docs":{},"w":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"replication-graphql.html":{"ref":"replication-graphql.html","tf":5.018947368421053},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}},"t":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"i":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"o":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"n":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"o":{"docs":{},"d":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}}}}},"e":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}},"$":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"b":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}},"b":{"docs":{},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},".":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}}},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"o":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"orm.html":{"ref":"orm.html","tf":0.022935779816513763}},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"s":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}},"u":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}},"v":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}},"l":{"docs":{},"p":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"e":{"docs":{},"r":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"y":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}}}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"i":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474}},"s":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"r":{"docs":{},"d":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"v":{"docs":{},"e":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"u":{"docs":{},"g":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"'":{"docs":{},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"population.html":{"ref":"population.html","tf":0.012232415902140673}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"n":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"middleware.html":{"ref":"middleware.html","tf":5.05241935483871},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.018433179723502304},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129}}},"?":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"s":{"docs":{},")":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"#":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"t":{"docs":{},"s":{"docs":{},"#":{"docs":{},"l":{"2":{"2":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"/":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"4":{"0":{"0":{"0":{"docs":{},"/":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}},"r":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"r":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"e":{"docs":{},"t":{"docs":{},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"!":{"docs":{},")":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":10.054347826086957},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.023931623931623933},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}},"n":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.015184381778741865},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"$":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"s":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.006837606837606838},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642}},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.006837606837606838}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},"s":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}},"i":{"docs":{},"c":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"o":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":10.010362694300518}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}},"f":{"docs":{},"o":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.043478260869565216},"rx-database.html":{"ref":"rx-database.html","tf":0.008676789587852495},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.06346749226006192},"adapters.html":{"ref":"adapters.html","tf":0.006837606837606838},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.015873015873015872}},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"a":{"docs":{},"g":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"d":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}},"b":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}},"a":{"docs":{},"s":{"docs":{},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"!":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}}}}}}}}}}}}}}}}},"s":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"s":{"docs":{},"u":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"t":{"docs":{},"'":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}},"f":{"docs":{},"(":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"o":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"custom-build.html":{"ref":"custom-build.html","tf":0.006191950464396285},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}},"x":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}},"m":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"s":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.05181347150259067},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"y":{"docs":{},"'":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202}},".":{"docs":{},"a":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},":":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.008547008547008548}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010752688172043012}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}},"e":{"docs":{},"o":{"docs":{},"r":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"v":{"1":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}},"docs":{}}}}}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"r":{"docs":{},"g":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"3":{"0":{"0":{"0":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"/":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.024844720496894408}}}},"p":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}},"h":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"n":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}},"g":{"docs":{},"o":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}},"a":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"r":{"docs":{},"k":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"d":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}}}}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},"r":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}},"n":{"docs":{},"d":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}}}}},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":5.008064516129032}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.021671826625386997},"adapters.html":{"ref":"adapters.html","tf":0.006837606837606838},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}},"y":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"e":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}},",":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}}}}}}},"c":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}},"p":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}}}}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"l":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"[":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}}},"docs":{}},"2":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"l":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"docs":{}},"docs":{}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}},"{":{"docs":{},"$":{"docs":{},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"/":{"docs":{},"*":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}}}}}}}}}}},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"0":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}},"b":{"docs":{},".":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},".":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{},"/":{"docs":{},"*":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"(":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"d":{"5":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"docs":{}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.01152073732718894},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.024193548387096774},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.04807692307692308}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}},"s":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"e":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.03260869565217391},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"custom-build.html":{"ref":"custom-build.html","tf":0.01238390092879257},"adapters.html":{"ref":"adapters.html","tf":0.008547008547008548},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}},"s":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0061162079510703364}},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"x":{"docs":{},"t":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"(":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.008547008547008548},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"j":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"adapters.html":{"ref":"adapters.html","tf":0.006837606837606838},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}}}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"i":{"docs":{},"c":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"f":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"p":{"docs":{},"m":{"docs":{"install.html":{"ref":"install.html","tf":0.043478260869565216},"adapters.html":{"ref":"adapters.html","tf":0.022222222222222223},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"contribute.html":{"ref":"contribute.html","tf":0.043478260869565216}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.010845986984815618},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008064516129032258},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"adapters.html":{"ref":"adapters.html","tf":0.011965811965811967},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.008676789587852495},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.027522935779816515},"population.html":{"ref":"population.html","tf":0.03363914373088685},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.017094017094017096},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"s":{"docs":{},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.018803418803418803}},"e":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"l":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.03686635944700461},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.030864197530864196},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"y":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"query-change-detection.html":{"ref":"query-change-detection.html","tf":10.037037037037036}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}},"u":{"docs":{},"s":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}},"u":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":3.3429487179487176}}}}}}}},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"r":{"docs":{},"e":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.018803418803418803}},"i":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.05555555555555555}},"e":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"l":{"docs":{},"i":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}}}}},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":5.042801556420233},"replication-graphql.html":{"ref":"replication-graphql.html","tf":5.026315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.03626943005181347},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.01393188854489164},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.013227513227513227}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}}}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},",":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}},"a":{"docs":{},"c":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.02534562211981567},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645}}}}}}},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}},"u":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},")":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"c":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.034055727554179564},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"@":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}}}}},"d":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},"$":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.011673151750972763}},"e":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.020930232558139535},"rx-query.html":{"ref":"rx-query.html","tf":0.013824884792626729},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.029411764705882353},"middleware.html":{"ref":"middleware.html","tf":0.014112903225806451},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.018947368421052633},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"r":{"docs":{},"y":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"p":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"(":{"docs":{},"'":{"docs":{},"^":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"$":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}},"}":{"docs":{},"}":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"f":{"docs":{"population.html":{"ref":"population.html","tf":0.009174311926605505}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.012232415902140673}}},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.01529051987767584}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"g":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}},"v":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"i":{"docs":{},"s":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"u":{"docs":{},"s":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"install.html":{"ref":"install.html","tf":0.05434782608695652},"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.015789473684210527},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.018575851393188854},"plugins.html":{"ref":"plugins.html","tf":0.027649769585253458},"adapters.html":{"ref":"adapters.html","tf":0.006837606837606838},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":3.3413978494623655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"install.html":{"ref":"install.html","tf":0.03260869565217391},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.007739938080495356},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.008676789587852495},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"adapters.html":{"ref":"adapters.html","tf":0.017094017094017096},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"adapters.html":{"ref":"adapters.html","tf":0.017094017094017096}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"j":{"docs":{},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"o":{"docs":{},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"n":{"docs":{},"o":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"v":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}},"'":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}},"j":{"docs":{},"v":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":10.010845986984815},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":10.013953488372094},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"population.html":{"ref":"population.html","tf":0.012232415902140673},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"]":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},")":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.036290322580645164}}}},"[":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}}}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}},"j":{"docs":{"install.html":{"ref":"install.html","tf":0.021739130434782608},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":10.012605042016807}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"e":{"docs":{},"m":{"docs":{},"n":{"docs":{},"t":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":10.001855287569573},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":10.001612903225807},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":10.011520737327189}}}}}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.06832298136645963}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}}}},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"w":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.008676789587852495},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"p":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"e":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"u":{"docs":{},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"d":{"docs":{},"e":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"t":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"z":{"docs":{},"e":{"docs":{},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},",":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"i":{"docs":{},"c":{"docs":{"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"y":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"o":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}}}}}},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.013675213675213675}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"d":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},"!":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842}}}},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010752688172043012}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}},"n":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"p":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}},"p":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"r":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"e":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"m":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"i":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.043478260869565216},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.018803418803418803},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"d":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"'":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008064516129032258},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"leader-election.html":{"ref":"leader-election.html","tf":0.020689655172413793},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"f":{"docs":{},"e":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.01368421052631579},"custom-build.html":{"ref":"custom-build.html","tf":0.006191950464396285},"tutorials/server.html":{"ref":"tutorials/server.html","tf":3.3624338624338623}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}},"}":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}}}}},"i":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.02620967741935484}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.015184381778741865},"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.01627906976744186},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}}}},")":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"u":{"docs":{},"p":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"u":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}},":":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}},"n":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.008421052631578947}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},"f":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"w":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"i":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"i":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"r":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"v":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"o":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"p":{"docs":{},"a":{"docs":{},"w":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"c":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}},"i":{"docs":{},"f":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"i":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":0.0311284046692607},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007368421052631579}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"i":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"s":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.02411873840445269},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008064516129032258},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.009287925696594427},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"questions-answers.html":{"ref":"questions-answers.html","tf":0.07692307692307693}},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"?":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"q":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.018803418803418803}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128}},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}},"y":{"docs":{},"(":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"r":{"docs":{},"c":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"u":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"s":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.021691973969631236},"rx-schema.html":{"ref":"rx-schema.html","tf":0.014842300556586271},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01935483870967742},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.011578947368421053},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.02786377708978328},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.03076923076923077},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":3.3521505376344085},"tutorials/server.html":{"ref":"tutorials/server.html","tf":3.349206349206349},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.037037037037037035}},".":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"s":{"docs":{},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"d":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"a":{"docs":{},"g":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"e":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}},"x":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"e":{"docs":{},"_":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.011627906976744186},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135}},"e":{"docs":{},"$":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00631578947368421}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"r":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}}}}}}},"q":{"docs":{},"l":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.011965811965811967}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}}}}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}}}},"i":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"p":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"d":{"docs":{},"e":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}}}},"r":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"l":{"docs":{},"l":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.006837606837606838},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"y":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"s":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.006837606837606838},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"!":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"s":{"docs":{},"!":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"s":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}},"e":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135}}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},":":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}}}}},"s":{"docs":{},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"s":{"docs":{},"'":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"+":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"@":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"#":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"\"":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}}},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.02040816326530612}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}},"$":{"docs":{},"{":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"}":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"j":{"docs":{},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"o":{"docs":{},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"n":{"docs":{},"o":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}}}}}}},"h":{"1":{"docs":{},"r":{"docs":{},"g":{"9":{"docs":{},"u":{"docs":{},"g":{"docs":{},"d":{"docs":{},"d":{"3":{"0":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}}}},"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.01529051987767584}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"1":{"0":{"1":{"0":{"2":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"'":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"'":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"/":{"docs":{},"j":{"docs":{},"p":{"docs":{},"e":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},"]":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.017094017094017096}}}}}}}}}}},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},")":{"docs":{},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"e":{"docs":{},"o":{"docs":{},"w":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}}}}}}}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},";":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.012232415902140673},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.011131725417439703},"population.html":{"ref":"population.html","tf":0.01834862385321101},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"1":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"2":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"}":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"s":{"docs":{},"e":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}},"o":{"docs":{},"b":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"population.html":{"ref":"population.html","tf":0.009174311926605505}}}}}},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"f":{"docs":{},"o":{"docs":{},"o":{"1":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"2":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.01152073732718894}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"}":{"docs":{},"}":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"b":{"docs":{},"a":{"docs":{},"r":{"2":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}}}}}},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"i":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"f":{"docs":{},"a":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"b":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"o":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"e":{"docs":{},"w":{"docs":{},"'":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"p":{"docs":{},"m":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}}}}}},"%":{"docs":{},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{},"e":{"docs":{},"%":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},".":{"docs":{},"*":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"*":{"docs":{},"'":{"docs":{},"}":{"docs":{},"}":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}},"a":{"docs":{},"a":{"docs":{},"h":{"docs":{},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258}},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.009174311926605505}}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}}}},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"t":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"/":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}},"/":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"/":{"docs":{"install.html":{"ref":"install.html","tf":0.021739130434782608},"rx-database.html":{"ref":"rx-database.html","tf":0.03036876355748373},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-collection.html":{"ref":"rx-collection.html","tf":0.04838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.046511627906976744},"rx-query.html":{"ref":"rx-query.html","tf":0.055299539170506916},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.029411764705882353},"middleware.html":{"ref":"middleware.html","tf":0.04838709677419355},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.009174311926605505},"data-migration.html":{"ref":"data-migration.html","tf":0.03865979381443299},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.024210526315789474},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.025906735751295335},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06912442396313365},"custom-build.html":{"ref":"custom-build.html","tf":0.06656346749226007},"plugins.html":{"ref":"plugins.html","tf":0.018433179723502304},"adapters.html":{"ref":"adapters.html","tf":0.042735042735042736},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.03225806451612903},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.042328042328042326}},">":{"docs":{"population.html":{"ref":"population.html","tf":0.012232415902140673}}},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}},"*":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"*":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}}}}},"=":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01935483870967742},"rx-document.html":{"ref":"rx-document.html","tf":0.03255813953488372},"rx-query.html":{"ref":"rx-query.html","tf":0.03456221198156682},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.05042016806722689},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"orm.html":{"ref":"orm.html","tf":0.04128440366972477},"population.html":{"ref":"population.html","tf":0.03363914373088685},"data-migration.html":{"ref":"data-migration.html","tf":0.01804123711340206},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.018947368421052633},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.024691358024691357},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.041474654377880185},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729},"adapters.html":{"ref":"adapters.html","tf":0.02905982905982906},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.03763440860215054},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.021164021164021163}},">":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-collection.html":{"ref":"rx-collection.html","tf":0.016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.011627906976744186},"rx-query.html":{"ref":"rx-query.html","tf":0.013824884792626729},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.014112903225806451},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.027237354085603113},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.009473684210526316},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}},"=":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"=":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"@":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.043478260869565216},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"s":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008064516129032258},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.03103448275862069},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":10},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"v":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129}},"d":{"docs":{},"b":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.011965811965811967}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.020512820512820513}}}}}}}}},"s":{"docs":{},"s":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}}}}},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}},"e":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"f":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},"e":{"docs":{},"d":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"v":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}},"n":{"docs":{},"k":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06451612903225806},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.02304147465437788}},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":10}}}}}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"o":{"docs":{},"k":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517}},"i":{"docs":{},"c":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"a":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"n":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}},"e":{"docs":{},"r":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.009216589861751152},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"plugins.html":{"ref":"plugins.html","tf":0.018433179723502304}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"(":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.006191950464396285},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"e":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"e":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"g":{"docs":{},"o":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"plugins.html":{"ref":"plugins.html","tf":0.018433179723502304},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"a":{"docs":{},"l":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}},"m":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{},"s":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.013227513227513227},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.03225806451612903}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.00967741935483871},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764}},"/":{"docs":{},"d":{"docs":{},"r":{"docs":{},"m":{"docs":{"orm.html":{"ref":"orm.html","tf":10}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"in-memory.html":{"ref":"in-memory.html","tf":0.031088082901554404},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"f":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"e":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.02620967741935484}}}}}}},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135}}}}}},"s":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}},"g":{"docs":{},"e":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.021739130434782608}}}},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"a":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419}}}}}}},"n":{"docs":{},"d":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.03260869565217391},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}},"l":{"docs":{},"s":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"replication.html":{"ref":"replication.html","tf":0.01556420233463035},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.006191950464396285},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.022222222222222223},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"'":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"population.html":{"ref":"population.html","tf":10.015290519877675}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"r":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"c":{"docs":{},"k":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"r":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"v":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},".":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.01529051987767584},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}},"l":{"docs":{},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.04608294930875576},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}},"x":{"docs":{},"i":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}},"s":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}}}}}}}},"l":{"docs":{},"u":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.01238390092879257},"plugins.html":{"ref":"plugins.html","tf":10.03225806451613},"adapters.html":{"ref":"adapters.html","tf":0.005128205128205128},"tutorials/server.html":{"ref":"tutorials/server.html","tf":3.349206349206349}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729}}},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"n":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}}}},"y":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}},"u":{"docs":{},"r":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.01368421052631579},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00631578947368421}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"u":{"docs":{},"d":{"docs":{},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}}}},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"u":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.010845986984815618},"rx-schema.html":{"ref":"rx-schema.html","tf":0.014842300556586271},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.023346303501945526},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00631578947368421},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}},"/":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}},"t":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}},"b":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.03103448275862069}},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"k":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"contribute.html":{"ref":"contribute.html","tf":0.062111801242236024}},"s":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"/":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},":":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"a":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},"m":{"docs":{},"p":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}}}}}}}}}},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"l":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"e":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"n":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"m":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"s":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"n":{"docs":{},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}}}}},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"w":{"docs":{},"o":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"o":{"docs":{},"p":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.02100840336134454},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0456989247311828}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.02411873840445269},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.04281345565749235},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"o":{"docs":{},"f":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"d":{"docs":{},"!":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"s":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":3.3413978494623655}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387},"custom-build.html":{"ref":"custom-build.html","tf":0.02786377708978328}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"u":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.01627906976744186},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"j":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.023195876288659795},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.012232415902140673},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"i":{"docs":{},"a":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}},"{":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0575139146567718},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.011627906976744186},"rx-query.html":{"ref":"rx-query.html","tf":0.016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.06116207951070336},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.031578947368421054},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304},"plugins.html":{"ref":"plugins.html","tf":0.027649769585253458},"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.043010752688172046},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581}},"}":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.008064516129032258}}}},"$":{"docs":{},"e":{"docs":{},"q":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"}":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}}}}}},"}":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-schema.html":{"ref":"rx-schema.html","tf":0.014842300556586271},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.045871559633027525},"population.html":{"ref":"population.html","tf":0.04281345565749235},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.015789473684210527},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.003418803418803419},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.016129032258064516},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.010845986984815618},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.03211009174311927},"population.html":{"ref":"population.html","tf":0.021406727828746176},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007368421052631579},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.017094017094017096},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.023809523809523808}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.027829313543599257},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.04233870967741935},"population.html":{"ref":"population.html","tf":0.012232415902140673},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},";":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00631578947368421},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"]":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"}":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"`":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"$":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}},"e":{"docs":{},"q":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},"o":{"docs":{},"r":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"{":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"}":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}},"*":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"plugins.html":{"ref":"plugins.html","tf":0.03225806451612903},"adapters.html":{"ref":"adapters.html","tf":0.0017094017094017094},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"/":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}},"}":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}},"u":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.01152073732718894}}}}}}}}}}}},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"'":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}},"g":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"docs":{}},"docs":{}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}},"[":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"]":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}},"]":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},".":{"docs":{},"]":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"]":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"!":{"docs":{},"]":{"docs":{},"!":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"^":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.011131725417439703},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}},"o":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}},"e":{"docs":{},"p":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}},"z":{"0":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.006191950464396285}},"]":{"docs":{},"[":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514}}},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"+":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"_":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},":":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"'":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},"d":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}},"♛":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"!":{"docs":{},"=":{"docs":{},"=":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}},"`":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"&":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":3.333333333333333}},"&":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"|":{"docs":{},"|":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}},"length":4435},"corpusTokens":["!==","\"${doc.name}\",","\"alice\",","\"array\",","\"attachments\":","\"birthyear\":","\"color\":","\"damage\":","\"deleted\":","\"dependencies\":","\"describ","\"description\":","\"encrypted\":","\"final\":","\"foobar\",","\"git+https://git@github.com/pubkey/rxdb.git#commithash\"","\"healthpoints\":","\"hero","\"id\":","\"items\":","\"lastname\":","\"max\":","\"maxitems\":","\"min\":","\"mysecretfield\":","\"name\":","\"number\"","\"number\",","\"object\",","\"primary\":","\"properties\":","\"required\":","\"rxdb\":","\"secret\":","\"skills\":","\"string\"","\"string\",","\"title\":","\"type\":","\"uniqueitems\":","\"updatedat\":","\"version\":","\"wilson\",","$","$.subscribe()","$eq:","$exists:","$human)","$inc:","$or","$set:","${doc.updatedat},","&","&&","'","'!!';","'%like%'","'');","'',","'.*foo.*'}})","'/',","'/db',","'aaah!!'","'aaah!!';","'adapter');","'alice'","'alice',","'anyvalue';","'array',","'bar'","'bar');","'bar';","'bar'});","'bar1'","'bar2'","'bar2');","'base","'bi","'bob'","'bob',","'carol'","'carol',","'carolina',","'cat.jpg'","'cat.txt',","'clientdb',","'dave'","'deleted',","'describ","'dies'.","'fifoo'","'fifoofa'","'foo'","'foo',","'foo'.","'foo'}})","'foo1',","'foo2',","'foobar'","'foobar');","'foobar',","'foobar';","'foobar2'","'foobar2');","'foobar2';","'foofa'","'foooobarnew'","'foooobarnew';","'gibson',","'got","'h1rg9ugdd30o',","'heroes'","'heroes',","'heroesdb'","'heroesdb',","'http://example.com/graphql',","'http://localhost:10102/db/',","'http://localhost:3000/db/items'","'human","'human'","'human',","'humans',","'i","'i');","'idb'","'image/jpeg'","'integer'","'integer',","'items',","'kelso'","'kelso';","'lastname']","'localstorage');","'localstorage',","'memory'","'memory',","'meow","'messages',","'mycollection.hello()'","'mydatabase',","'mydb',","'myfield',","'myid',","'mypassword',","'name","'name'","'new'","'node","'npm","'object',","'piotr',","'potter',","'pouchdb","'react","'rxdb';","'rxdb/plugins/adapt","'rxdb/plugins/ajv","'rxdb/plugins/attachments';","'rxdb/plugins/core';","'rxdb/plugins/encryption';","'rxdb/plugins/error","'rxdb/plugins/in","'rxdb/plugins/json","'rxdb/plugins/key","'rxdb/plugins/lead","'rxdb/plugins/loc","'rxdb/plugins/no","'rxdb/plugins/repl","'rxdb/plugins/replication';","'rxdb/plugins/schema","'rxdb/plugins/server';","'rxdb/plugins/update';","'rxdb/plugins/valid","'rxdb/plugins/validate';","'rxdb/plugins/watch","'sendercountry'","'skeletor'","'steve');","'string'","'string',","'subscript","'temperature',","'text/plain'","'unsaf","'weatherdb',","'websql'","'websql',","'world';","'ws://example.com/subscriptions',","(!doc)","(!global.atob)","(!global.btoa)","()","()=>'bar'","(a.id","(a.updatedat","(all","(also","(anyth","(async)","(beta)","(default)","(doc.id","(doc.updatedat","(e.g.","(olddata)","(optional)","(optional),","(optional=false)","(optional=true)","(or","(password","(primari","(proto)","(remot","(req,","(short","(string)","(string|blob|buffer)","(v:","(version:","(via",")",");","*","*/","*/).then(()","*/});","+",".","..","...",".active$",".awaitinitialreplication()",".cancel()",".canceled$",".collection()",".create()",".error$",".exec()'",".exec().then(doc",".exec().then(docu",".exec();",".find()",".findone()",".gt(18)",".gt(18);",".insert()",".isstopped()",".migratepromise():",".recieved$",".reduce((prev,",".run()",".save()",".send$",".sort('age')",".subscribe(changeev",".subscribe(newnam",".then(()",".then(collect",".then(json",".then(respons",".upsert()",".where('age')",".where()","/","/*","/**","//","//>","//[insert","0","0,","0.","02","1","10","10);","100","100));","1000","1000);","12","12t23:03:05+00:00","1486940585","1564783474,","18","19","1900,","1:","1;","2","2'","2)","2.","20","2017","2050","2:","3.","3000,","3000`));","33","409","5","5'","5)","5,","50","50,","50;","6'","6*5=30","60","64","64'","7","77;","8.0.0,","9]$","9]*$.","9_]*]?[a","=","==","===","=>",">","@babel/polyfil","@link","@param","[","[\"color\"],","['firstname',","[]","[];","[default=true]","[human!]!","[rxdocument,","[rxdocument,rxdocument,rxdocument..]","]","^[a","_","_deleted:tru","`","`;","`subscript","`{","abov","abstract","access","access.","accident","accomplish","action","activ","active$","actual","ad","adapt","adapter,","adapter.","adapter:","adapters.","add","addit","additionalproperti","advantag","advantages:","affect","afterward","afterwards.","ag","again","again.","age:","age?:","ajv","algorithm","aliv","alive$","allattachments$","allattachments()","alldoc","alldocs.length;","allow","alreadi","altern","alway","amount","amount:","anoth","another.","answer","anyfield","anyth","anyuser.loggedin","anyuser.save();","anyway","api","app","app);","app,","app.","appear","appli","applic","apply.","appropri","apps,","arg","args.human;","args.lastid)","args.limit);","args.minupdatedat)","around,","array","array.","ask","assign","assigned.","assum","assur","async","asynchron","asynchronous.","asyncstorag","asyncstorage'","asyncstorage'));","asyncstorage.","asyncstoragedown","at.","atom","atomicset()","atomicupd","atomicupdate()","atomicupsert()","attach","attachment'","attachment.","attachment.getdata();","attachment.getstringdata();","attachment.remove();","attachments,","attachments:","attribut","attribute.","attributes/methods.","autmat","automat","automatically,","automigr","automigrate:","avail","avoid","await","awaitpersistence()","awesom","b)","b.id)","b.updatedat)","babel","back","bandwidth","bar.","base","basic","batch","batchsize:","batteri","becom","befor","before.","behav","behavior","behavior.","behaviorsubject","being',","belong","best","bestfriend","bestfriend:","beta","better","between","big","bigger","binari","bind","birthyear","bit","blob","blobbuff","block","boolean","boolean!","both","both.","bound","broadcast","browser","browsers,","browsers.","browsers:","buffer.","bug","bug,","bugfix","build","build,","build.","builder","builds.","bulk","bulkinsert","bulkinsert()","c++","cach","calcul","call","call)","call.","called.","can't","cancel","cancel()","canceled,","canceled.","capabl","case","case,","caus","cd","certain","chain","chang","change$","change.","changed.","changeev","changefunct","changeobserv","changeobservable.subscribe({","changes'));","changes';","changes,","changes.","changestream.","channel","characters.","charts,","check","check'","check'));","check';","checkadapt","checkadapter()","cherri","choos","claim","class","classes,","clean","cleanup","clear","client","client'","client.","clientdb","clientdb.collection({","clientdb.items.find().exec();","clientdb.items.sync({","clone","closed,","closed.","code","code.","collect","collection'","collection():","collection,","collection.","collection.options.foo();","collection2","collection2);","collection:","collections,","collections.","color","combin","come","commit","commit.","commithash","common","commonj","community.","compar","comparison","compat","complete$","complete.","completed.","completes.","complex","compliant","composit","compound","compoundindex","compress","compress,","compression'));","compression',","compression';","comput","configur","conflict","conflict,","conflicts,","conform","connect","connections.","cons:","console.","console.dir(active));","console.dir(alive));","console.dir(bestfriend);","console.dir(change));","console.dir(changeevent));","console.dir(collection));","console.dir(completed));","console.dir(doc));","console.dir(docdata));","console.dir(documents));","console.dir(error));","console.dir(error);","console.dir(friends);","console.dir(isname);","console.dir(json));","console.dir(json);","console.dir(mother);","console.dir(mydatabase.heroes.name);","console.dir(ok);","console.dir(results);","console.dir(state),","console.error(error),","console.log('done')","console.log('done'));","console.log('got","console.log('initi","console.log('insert","console.log('long","console.log('nam","console.log('someth","console.log(`serv","console.log(amount);","console.log(attachment.scream());","console.log(collect","console.log(doc.firstname);","console.log(doc.myfield);","console.log(doc.scream());","console.log(doc.whoami());","console.log(heroes.scream());","console.log(heroes.whoami());","console.log(laststate);","console.log(mydocument.deleted);","console.log(mydocument.get('firstname'));","console.log(mydocument.name);","console.log(mydocument.nested.attribute);","const","construct","constructed.","contain","content","continu","contribut","contributing!","contribution,","control","coordin","cor","cordova","cordova'","cordova.sqliteplugin.","core","core,","corner.","correctli","correspond","cors,","cors:","cost.","couchdb","couchdb,","couldn't","count","countalldocuments:","countri","cours","cpu.","creat","created.","createhuman($human:","creation","crown","crypto","cur)","cur.username+","current","custom","cycl","d","d.id","damag","data","data');","data,","data.","data:","databas","database)","database,","database.","database:","databases,","databases.","datamigr","date","date().gettime()","date(olddoc.time).gettime();","dates.","db","db.","db.collection({","db.heroes;","db.items.insert({","db.server({","db.temperature.insert({","db.waitforleadership()","db1","db2","db['heroes']","debug","debug,","debugging.","decid","declar","decode;","decrypt","default","default,","default.","default:","default=tru","defin","definit","definition.","degrees:","delet","deleted$","deleted$.","deleted,","deleted:","deletedflag:","denied$","depend","deprecated.","describ","description:","design","destroy","destroy()","destroyed.","detect,","detection,","dev","develop","developer.","developing,","devic","device,","di","died.","dies.","differ","digest","direct","direction:","directli","directly.","disabl","disablekeycompress","disadvantag","disc","discuss","disk","display","dist","distribut","do","doc","doc.bestfriend_;","doc.firstname);","doc.id);","doc.populate('bestfriend');","doc.putattachment({","doc.scream('aah!');","doc.updatedat","doc:","doc;","docdata","docdata,","docs$","docs.","docs:instal","docs:serv","document","document'","document,","document.","document.queryselector('body').innerhtml","documentdata","documents'));","documents';","documents,","documents.","documents.filter(d","documents.push(doc);","documents.sort((a,","does,","doesdocumentdatamatch()","doesn't","don't","done","done,","done.","done:","down","down');","download","drive.","driver,","due","dump","dump'));","dump';","dump()","dure","each","easier","easily.","easy,","eg:","elect","election'));","election';","electron","else.","emit","emptydatabase.importdump(json)","enabl","enabled.","encode;","encode}","encrypt","encrypted,","encrypted.","encrypted:","endpoint","endpoint,","endpoint.","endpoints.","engine.","enough","ensur","environ","environment,","environment.","equal","equal,","equival","error","error$","error('stop');","error.","error:","errors,","es5","es5.","es6","es8","especi","etc...","eval'","eval()","eval.","even","event","events,","events.","everyth","exact","exactli","exampl","example,","example.","example:","exec()","execut","exist","exist.","exists.","expect","expected.","explicitli","export","expos","express","express();","extend","extrem","fail","failur","fals","false);","false,","false.","false;","family:","fast","faster","faster.","fe:","featur","feature,","feedforrxdbrepl","feedforrxdbreplication(lastid:","feedforrxdbreplication:","fetch","fetch('http://myserver.com/api/countrybycoordinates/'+coordinates+'/')","fetch('https://example.com/api/temp/');","field","field,","field.","fieldnam","fieldname.","fieldnames,","fields.","file","file.","file:","files,","files.","filesystem","filesystem.","fill","filter","filterforminupdatedatandid.slice(0,","final","final,","final:","find","find()","findon","findone()","finish","fire","first","firstnam","firstname:","fistname:","fit","flag","flags.","flexibl","flow","folder","folder)","folder.","follow","following:","foo","foo:","foobar","for,","forc","foreign","form","found","found.","free","friend","friends:","full","fulli","function","function(){","function(olddoc){","function(password)","function(this:","function.","functionality.","functions,","functions.","gain","gener","generated.","get","get$()","get()","get:","getattachment()","getdata()","getlocal()","getstringdata()","getter","getter.","getter/sett","git","gitter.","given","global","global.atob","global.btoa","go","gone","good","graphql","graphql'));","graphql';","grate","greater","hand","hand'","handel","handi","handl","handled.","handled:","handler","happen","happens,","hard","hash","have","header","healthpoint","heatmaps.","heavi","height","help","helper","helpful","here","here,","here.","here]","hero","hero\",","hero.","herocollect","herocollection)","herocollection,","herocollectionmethod","herocollectionmethods:","herodocmethod","herodocmethods,","herodocmethods:","herodoctyp","herodocu","herodocument,","herodocument.","heroes.findone().exec();","heroes.insert({","heroes:","heroschema,","heroschema:","higher","hint","hook","hook,","hook?","hooks)","hooks.","hooks:","http","http'));","http';","http://localhost:3000/db","http://localhost:3000/db/item","http://localhost:4000/","https://github.com/pubkey/rxdb.git","https://github.com/pubkey/rxdb/blob/master/src/plugin.ts#l22","https://pouchdb.com/api.html#repl","huge","human","human',","human:","humanchang","humaninput","humaninput)","humaninput):","humanscollection.findone('alice').exec();","humanscollection.findone('bob').exec();","humanscollection.insert({","hybrid","id","id!,","id,","id.","id:","idb","idb'));","ideas:","ident","identifi","idl","idle.","if(olddoc.tim","ignoredupl","ignoreduplicate:","imag","imagin","immedi","immut","immutable.","implement","impli","import","import/export","important:","importdump()","imported.","improv","in,","in.","includ","incom","increas","index","index,","index:","indexed,","indexeddb","indexes,","indic","info","inherit","initi","inmemori","inmemorycollection,","input","input.","insensit","insert","insert$","insert()","insert.","inserted.","insertlocal()","inserts,","insid","inspect","instal","instanc","instance,","instance.","instances.","instantli","instead","instead.","int!):","int!,","integ","integr","intent","interact","intern","internally,","internally.","internet,","interv","introduct","invalid","io","is:","isnam","isname;","isrxcollect","isrxdatabas","isrxdocu","isrxqueri","issu","it'","it,","it.","items:","itself","javascript","javascript,","join","js","json","jsonschema","jsx.","jump","keep","key","key:","keycompress","keycompression:","keycompressor","keynam","keyword","keyword:","king!');","kitty',","know","known","last","lastnam","lastname,","lastname:","laststat","later","later.","latest","lead","leader","leader,","leader.","leaderelect","leaderelection.","learn","leav","length","less","let","level","leveldb","leveldb'));","leveldown","library.","life","lifecycl","like:","limit","limit:","limited;","link","list","list:","listen","live","live:","liveinterv","liveinterval:","load","local","localdoc","localdoc.foo","localdoc.foo;","localdoc.get$('foo').subscribe(valu","localdoc.get('foo');","localdoc.remove();","localdoc.save();","localdoc.set('foo',","localdocu","locally,","localstorage'));","locat","log","logic","long","longer","look","looks.","lost","lot","machine.","made","main","mainapp","mainapp.listen(3000,","mainapp.use('/',","mainapp.use('/db',","make","manag","mango","mani","manipul","manipulate.","manual","map","mark","match","math.round(new","matter","maximum","md5","mean","means,","meant","memcol","memcol.awaitpersistence();","memcol.find().exec();","memcol.insert({foo:","memdown","memori","memory'));","memory';","memory)","memory.","memoryadapt","merg","messag","messagecol","messagecol.migratepromise(10);","messages'));","messages';","messages.","messageschemav1,","messeng","metadata.","meteor","method","method,","method.","methods,","methods.","methods:","middlewar","middlewares...","migrat","migrated.","migrated:","migratepromise;","migration.","migrationpromis","migrationstrategi","migrationstrategies:","mind","minupdatedat:","minute.","mirgrat","mistake,","mode","mode,","mode.","model","modifi","modifier:","modifyjs.","modul","module,","module.","moment","mongo","mongoose,","mongoose.","more","mother","mother:","mount","mqueri","ms","much","multiinst","multiinstance:","multipl","mupltipl","mutat","mycollect","mycollection.$.subscribe(changeev","mycollection.atomicupsert(docdata);","mycollection.bulkinsert([{","mycollection.customcleanupfunction();","mycollection.destroy();","mycollection.dump()","mycollection.dump(true)","mycollection.find().exec()","mycollection.find().where('age').gt(18)","mycollection.find().where('age').gt(18).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').gt(18);","mycollection.find().where('age').gt(20).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').lt(18);","mycollection.find().where('name').eq('foo')","mycollection.find();","mycollection.find({$or:","mycollection.find({name:","mycollection.findone('foo')","mycollection.findone().exec();","mycollection.findone().where('name').eq('foo')","mycollection.getlocal('foobar');","mycollection.importdump(json)","mycollection.inmemory();","mycollection.insert$.subscribe(changeev","mycollection.insert({","mycollection.insert({/*","mycollection.insertlocal(","mycollection.newdocument({","mycollection.postcreate(function(plaindata,","mycollection.postinsert(function(plaindata,","mycollection.postremove(function(plaindata,","mycollection.postsave(function(plaindata,","mycollection.preinsert(function(plaindata){","mycollection.preremove(function(plaindata,","mycollection.presave(function(plaindata,","mycollection.remove$.subscribe(changeev","mycollection.remove();","mycollection.sync({","mycollection.syncgraphql()","mycollection.syncgraphql().","mycollection.syncgraphql({","mycollection.update$.subscribe(changeev","mycollection.upsert(docdata);","mycollection.upsert({","mycollection.upsertlocal(","mydatabas","mydatabase.collection({","mydatabase.destroy();","mydatabase.dump()","mydatabase.dump(true)","mydatabase.heroes.countalldocuments();","mydatabase.heroes.insert({","mydatabase.heroes.postinsert(","mydatabase.insertlocal(","mydatabase.remove();","mydatabase.requestidlepromise().then(()","mydatabase.requestidlepromise(1000","mydatabase:","mydatabasecollect","mydb.$.subscribe(changeev","mydocument.$","mydocument.allattachments$.subscribe(","mydocument.allattachments();","mydocument.atomicset('firstname',","mydocument.atomicset('name',","mydocument.atomicset('nested.attribute',","mydocument.atomicupdate(changefunction);","mydocument.deleted$.subscribe(st","mydocument.family.mother_;","mydocument.firstnam","mydocument.firstname$.subscribe(newnam","mydocument.friends_;","mydocument.get$('name')","mydocument.get('name');","mydocument.getattachment('cat.jpg');","mydocument.nam","mydocument.name;","mydocument.putattachment({","mydocument.remove();","mydocument.save();","mydocument.set('firstname',","mydocument.tojson();","mydocument.update({","mydocument.whatever.nestedfield","mydocument.whatever.nestedfield;","myheroschema","mymethod.bind(mydocument)","myplugin","mypostinserthook(","myrxcollection.pouch.put({/*","myrxcollection.watchforchanges();","myschema","myschema,","name","name,","name.","name:","name:foobar","names.","nativ","native'","native.","need","need.","ness","nest","nestedvalu","network","never","new","new,","newdocument()","newer","newest","newli","newname));","newname;","next","next(data)","node","node,","nodej","nodejs.","non","normal","nosql","not.","note","noth","notic","notice:","notif","notifiers,","now","now,","npm","null","null,","null;","number","number,","number.","number;","object","object,","object.","object.defineproperty(rxdocument,","objects.","observ","observables:","occur","off,","offlin","offline,","ok","ok,","old","olddata.ag","olddata.nam","olddata;","olddoc.coordinates;","olddoc.sendercountry=response;","olddoc.tim","olddoc;","older","olderdocu","omit","on","onc","once,","once.","one,","ongo","onhumanchang","onlin","open","oper","operations.","oplog","optim","optimis","option","optional.","options.","options:","origin","orm","orm/drm","orm/drm.","other.","otherwis","out","over","overview","overwrit","overwritable:","overwritten","package.json,","package.json.","page","parallel","paramet","parameter,","parameter.","parameters:","paramt","parent","parrallel","part","pass","passportid:","password","password.","password.length","password:","path","path:","peer","pend","per","percent:","percentag","perform","performance,","perman","permissions).","persist","phonegap","pick","piec","plain","plaindata.ag","plaindata.anyfield","play","pleas","plu","plugin","plugin.","plugins:","point","policies.","polling.","polyfil","polyfills,","popul","populate()","port","port:","possibl","post","postcreat","postinsert","postremov","postsav","pouch","pouch/couch","pouchadaptermemori","pouchdb","pouchdb'","pouchdb,","pouchhttpplugin","pouchset","pouchsettings:","power","pr","pre","prefil","preinsert","preremov","presav","prev","prevent","previou","primari","primary,","primary.","primary:","probabl","problem","process","process,","process.brows","produce,","product","production.","projects.","promis","promise(r","promise.","promise;","properli","properti","properties:","property.","pros:","proto.hello","protocol.","prototyp","prototypes:","provid","proxi","pseudo","pull","pull:","pullquerybuild","pullquerybuilder,","pullquerybuilder.","purg","push","push:","pushquerybuild","putattachment()","queri","queries,","queries.","query,","query.","query.$.subscribe(result","query.$.subscribe(us","query.exec();","query.remove();","query.update({","query:","querybuild","querybuilder,","querybuilder.","querychangedetect","querychangedetection:","queryobject","queryobject.exec();","queryobject.sort('name');","queryobjectsort","queryobjectsort.exec();","question","queu","quota","rare","re","react","reactiv","reactn","read","real","realli","realtim","realtime.","reason.","reassign","receiv","reciev","recogn","recommend","reconnect:","record","reduc","redund","ref","ref:","refer","referenc","refhuman","refind","regex","regex:","regexp","regexp('^foo$',","regexp}})","regist","regular","relat","releas","reli","relic","remains:","remot","remote:","remov","remove$","remove()","removed.","removeddoc","render","replac","replic","replicated,","replicated.","replication,","replication.","replications.","replicationst","replicationstate.","replicationstate.active$.subscribe(act","replicationstate.alive$.subscribe(al","replicationstate.awaitinitialreplication();","replicationstate.cancel();","replicationstate.change$.subscribe(chang","replicationstate.complete$.subscribe(complet","replicationstate.denied$.subscribe(docdata","replicationstate.docs$.subscribe(docdata","replicationstate.error$.subscribe(error","replicationstate.isstopped();","replicationstate.run();","repositori","repres","represent","reproduc","request","request,","requestidlecallback","requestidlepromise()","requir","require('@babel/polyfill');","require('asyncstorag","require('leveldown');","require('memdown');","require('rxdb');","require('rxdb/plugins/core');","required.","required:","res)","res.send('hello'));","reset","resolut","resolv","resourc","respons","response.json();","restart","result","result.","results.length);","results:","retry:","return","returning.","reus","rev","revis","right","rootvalu","row","run","run()","run:","running.","runtim","runtime,","runtime.","rx.collection.sync()","rxattach","rxattachemnt","rxattachment.","rxchangeevent.","rxcollect","rxcollection().awaitpersistence()","rxcollection().inmemory();","rxcollection,","rxcollection.","rxcollection.insert","rxcollection.newdocument(initaldata).","rxcollection.sync()","rxcollection.sync().","rxcollection:","rxcollection;","rxcollections,","rxdatabas","rxdatabase,","rxdatabase.","rxdatabase;","rxdb","rxdb'","rxdb,","rxdb.","rxdb.checkadapter('localstorage');","rxdb.create({","rxdb.isrxcollection(myobj);","rxdb.isrxdatabase(myobj);","rxdb.isrxdocument(myobj);","rxdb.isrxquery(myobj);","rxdb.plugin(memoryadapter);","rxdb.plugin(pouchadaptermemory);","rxdb.plugin(pouchhttpplugin);","rxdb.plugin(require('pouchdb","rxdb.plugin(require('rxdb/plugins/adapt","rxdb.plugin(require('rxdb/plugins/ajv","rxdb.plugin(require('rxdb/plugins/attachments'));","rxdb.plugin(require('rxdb/plugins/encryption'));","rxdb.plugin(require('rxdb/plugins/error","rxdb.plugin(require('rxdb/plugins/in","rxdb.plugin(require('rxdb/plugins/json","rxdb.plugin(require('rxdb/plugins/key","rxdb.plugin(require('rxdb/plugins/lead","rxdb.plugin(require('rxdb/plugins/loc","rxdb.plugin(require('rxdb/plugins/no","rxdb.plugin(require('rxdb/plugins/repl","rxdb.plugin(require('rxdb/plugins/replication'));","rxdb.plugin(require('rxdb/plugins/schema","rxdb.plugin(require('rxdb/plugins/server'));","rxdb.plugin(require('rxdb/plugins/update'));","rxdb.plugin(require('rxdb/plugins/valid","rxdb.plugin(require('rxdb/plugins/validate'));","rxdb.plugin(require('rxdb/plugins/watch","rxdb.plugin(rxdbadaptercheckmodule);","rxdb.plugin(rxdbajvvalidatemodule);","rxdb.plugin(rxdbattachmentsmodule);","rxdb.plugin(rxdbencryptionmodule);","rxdb.plugin(rxdberrormessagesmodule);","rxdb.plugin(rxdbinmemorymodule);","rxdb.plugin(rxdbjsondumpmodule);","rxdb.plugin(rxdbkeycompressionmodule);","rxdb.plugin(rxdbleaderelectionmodule);","rxdb.plugin(rxdblocaldocumentsmodule);","rxdb.plugin(rxdbnovalidatemodule);","rxdb.plugin(rxdbreplicationgraphql);","rxdb.plugin(rxdbreplicationmodule);","rxdb.plugin(rxdbschemacheckmodule);","rxdb.plugin(rxdbservermodule);","rxdb.plugin(rxdbserverplugin);","rxdb.plugin(rxdbupdatemodule);","rxdb.plugin(rxdbvalidatemodule);","rxdb.plugin(rxdbwatchforchangesmodule);","rxdb.plugin(rxdbzschemavalidatemodule);","rxdb.plugin(sqliteadapter);","rxdb.removedatabase('mydatabasename',","rxdb:","rxdbadaptercheckmodul","rxdbajvvalidatemodul","rxdbattachmentsmodul","rxdbencryptionmodul","rxdberrormessagesmodul","rxdbinmemorymodul","rxdbjsondumpmodul","rxdbkeycompressionmodul","rxdbleaderelectionmodul","rxdblocaldocumentsmodul","rxdbnovalidatemodul","rxdbreplicationgraphql","rxdbreplicationmodul","rxdbschemacheckmodul","rxdbservermodul","rxdbserverplugin","rxdbupdatemodul","rxdbvalidatemodul","rxdbwatchforchangesmodul","rxdbzschemavalidatemodul","rxdocument","rxdocument)","rxdocument){","rxdocument,","rxdocument.","rxdocument.atomicupdate.","rxdocument.remov","rxdocument.sav","rxdocument.upd","rxdocument;","rxdocument[alice]","rxdocument],","rxgraphqlreplicationst","rxj","rxjsonschema","rxjsonschema,","rxlocaldocu","rxlocaldocument.","rxqueri","rxquery'","rxquery,","rxquery.","rxquery.find().","rxquery.update.","rxreplicationst","rxschema","rxschema.","safe","same","save","save'","save()","saved.","schema","schema\",","schema'","schema'));","schema',","schema';","schema,","schema.","schema.org.","schema:","schema?","schemacheck","schemas,","schemas.","schemaversions.","schemawithdefaultag","schemawithfinalag","schemawithindex","schemawithonetomanyrefer","scope","scream:","screams:","search","second","secondari","seconds.","secret","secur","see","see:","selectors.","self","semi","send","sender","sens","sent","separ","seri","server","server()","server,","server.","serverless.","serverurl,","server}","set","set()","set).","set.","sethuman(human:","sethuman:","setter","settimeout(res,","settings:","setup","sever","share","shell","shim","short","show","side","side,","side.","signal","similar","simpl","simple.","simplifi","simul","singl","site","size,","size.","skeletor!!'","skill","slow","small","solut","solv","someth","something,","sometim","soon","sort","sortabl","sorteddocu","sourc","space.","spawn","spec","special","specif","specifi","speed","spin","sql","sqlite","sqlite'","sqlite'));","sqliteadapt","sqliteadapterfactori","sqliteadapterfactory(sqlite)","src","standard","standart","start","startserv","startserver:","state","state);","state,","statement","static","static.","statics,","statics:","stay","stefe'","step","steve'","sth","still","stop","stopped.","storag","storage.","store","store.","stored.","strang","strategi","strategies:","stream","stream.","string","string!,","string)","string,","string.","string;","structur","submit","subscrib","subscript","subscriptioncli","subscriptionclient(","succeed","success","success:","suffix","suit","sum","support","sure","switch","sync","sync()","sync.","synchron","synchronis","syntax","syntax,","syntax.","system","systems.","tab","tab.","table.","tabs,","tabs.","take","task","tasks.","team","tell","temp","temp,","tempdoc","tempdoc.ag","tempdoc.lastnam","tempdoc.save();","temperatur","temporari","ten","terminates.","test","test/unit","test:nod","tests,","thank","them,","them.","then,","therefor","these","thing","things.","this,","this.","this.find().exec();","this.firstnam","this.nam","this.name;","this:","thousand","through","throw","thrown.","time","time,","time.","time:","timeout","times.","timespan,","timestamp","title:","to,","to.","togeth","tojson()","top","toplist","total:","track","traffic","transform","transmit","transpil","transport","tri","trigger","trivial","true","true);","true,","true.","true/fals","true;","truth","tutori","tutorial.","tutorial:","two","type","type.","type:","typed!","typeof","types,","typescript","typescript.","u","ui","undefin","underscor","underscore_","unencrypt","uniqu","unique,","unit","unix","unless","unset","until","up","updat","update$","update()","update/insert/remov","updatedat","updatedat.","updatedat:","upon","upsert","upsert()","upsertlocal()","url","url:","us","usag","use.","useabl","used:","useful","user","user'","user,","user.","users'","users.","userscollection.find().where('loggedin').eq(true).sort('points');","valid","valid.","validate'));","validate';","validatepassword:","validation.","valu","value,","value.","value:","values.","vanillaj","var","variabl","variables.","variables:","variou","veri","version","version,","version.","version:","versions.","via","visitor","wait","wait..","waitforleadership()","waitforleadership:","want","wast","watch","way","websit","websites,","websocket","websql","websql'));","websql.","what.touppercase();","what:","whatev","when:","whenev","where.","whether","while,","whoami:","whole","whose","wide","wide.","will,","window","window.","wipe","wire","with:","within","without","won't","work","work!","work.","worked,","works!","worry,","worst","write","written","wrong');","wrong.","ws';","wsclient","wsclient.request({","you'd","you'r","you.","youngest","z","z0","z][[a","z][a","za","zero","{","{$eq:","{$regex:","{app,","{decode,","{object}","{}","{},","||","}","})","});","},","};","}]);","}`;","}})","♛"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"\n \n \n \n\n\n\n A realtime Database for JavaScript Applications\n\n\n RxDB (short for Reactive Database) is a NoSQL-database for JavaScript Applications like Websites, hybrid Apps, Electron-Apps and NodeJs.\n Reactive means that you can not only query the current state, but subscribe to all state-changes like the result of a query or even a single field of a document.\n This is useful for UI-based apps that always display the realtime state to the user.\n RxDB can do a realtime replication with any CouchDB compliant endpoint and also with GraphQL endpoints.\n\n\n\n \n \n \n \n \n \n\n \n -->\n\n\n\n\n If you are new to RxDB, you should start here.\n\n"},"install.html":{"url":"install.html","title":"Install","keywords":"","body":"Install\nnpm\nTo install the latest release of rxdb and its dependencies and save it to your package.json, run:\nnpm i rxdb --save\npeer-dependency\nYou also need to install the peer-dependency rxjs if you have not installed it before.\nnpm i rxjs --save\npolyfills\nRxDB is coded with es8 and transpiled to es5. This means you have to install polyfills to support older browsers. For example you can use the babel-polyfills with:\nnpm i @babel/polyfill --save\nIf you need polyfills, you have to import them in your code.\nrequire('@babel/polyfill');\n\nLatest\nIf you need the latest development state of RxDB, add it as git-dependency into your package.json.\n \"dependencies\": {\n \"rxdb\": \"git+https://git@github.com/pubkey/rxdb.git#commitHash\"\n }\n\nReplace commitHash with the hash of the latest build-commit.\nImport\nTo import rxdb, add this to your javascript file:\n// es6\nimport RxDB from 'rxdb';\n\n// CommonJS\nvar RxDB = require('rxdb');\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-database.html":{"url":"rx-database.html","title":"RxDatabase","keywords":"","body":"RxDatabase\nA RxDatabase-Object contains your collections and handles the synchronisation of change-events.\nCreation\nThe database is created by the asynchronous .create()-function of the main RxDB-module. It has the following parameters:\nconst db = await RxDB.create({\n name: 'heroesdb', // \nname\nThe database-name is a string which uniquely identifies the database. When two RxDatabases have the same name and use the same storage-adapter, their data can be assumed as equal and they will share change-events between each other.\nDepending on the adapter this can also be used to define the storage-folder of your data.\nadapter\nRxDB uses adapters to define where the data is actually stored at. You can use different adapters depending on which environment your database runs in. This has the advantage that you can use the same RxDB code in different environments and just switch out the adapter.\nExample for browsers:\n\n// this adapter stores the data in indexeddb\nRxDB.plugin(require('pouchdb-adapter-idb'));\n\nconst db = await RxDB.create({\n name: 'mydatabase',\n adapter: 'idb' // name of the adapter\n});\n\n Check out the List of adapters for RxDB to learn which adapter you should use. \npassword\n(optional)\nIf you want to use encrypted fields in the collections of a database, you have to set a password for it. The password must be a string with at least 12 characters.\nmultiInstance\n(optional=true)\nWhen you create more than one instance of the same database in a single javascript-runtime, you should set multiInstance to true. This will enable the event-sharing between the two instances serverless. This should be set to false when you have single-instances like a single nodejs-process, a react-native-app, a cordova-app or a single-window electron-app.\nqueryChangeDetection\n(optional=false)\nIf set to true, this enables the QueryChangeDetection for the database.\nignoreDuplicate\n(optional=false)\nIf you create multiple RxDatabase-instances with the same name and same adapter, it's very likely that you have done something wrong.\nTo prevent this common mistake, RxDB will throw an error when you do this.\nIn some rare cases like unit-tests, you want to do this intentional by setting ignoreDuplicate to true.\nconst db1 = await RxDB.create({\n name: 'heroesdb',\n adapter: 'websql',\n ignoreDuplicate: true\n});\nconst db2 = await RxDB.create({\n name: 'heroesdb',\n adapter: 'websql',\n ignoreDuplicate: true // this create-call will not throw because you explicitly allow it\n});\n\npouchSettings\nYou can pass settings directly to the pouchdb database create options through this property. This settings will be added to all pouchdb-instances that are created for this database.\nFunctions\nObserve with $\nCalling this will return an rxjs-Observable which streams every change to data of this database.\nmyDb.$.subscribe(changeEvent => console.dir(changeEvent));\n\ndump()\nUse this function to create a json-export from every piece of data in every collection of this database. You can pass true as a parameter to decrypt the encrypted data-fields of your document.\nmyDatabase.dump()\n .then(json => console.dir(json));\n\n// decrypted dump\nmyDatabase.dump(true)\n .then(json => console.dir(json));\n\nimportDump()\nTo import the json-dumps into your database, use this function.\n// import the dump to the database\nemptyDatabase.importDump(json)\n .then(() => console.log('done'));\n\nserver()\nSpawns a couchdb-compatible server from the database. Read more\nwaitForLeadership()\nReturns a Promise which resolves when the RxDatabase becomes elected leader.\nrequestIdlePromise()\nReturns a promise which resolves when the database is in idle. This works similar to requestIdleCallback but tracks the idle-ness of the database instead of the CPU.\nUse this for semi-important tasks like cleanups which should not affect the speed of important tasks.\n\nmyDatabase.requestIdlePromise().then(() => {\n // this will run at the moment the database has nothing else to do\n myCollection.customCleanupFunction();\n});\n\n// with timeout\nmyDatabase.requestIdlePromise(1000 /* time in ms */).then(() => {\n // this will run at the moment the database has nothing else to do\n // or the timeout has passed\n myCollection.customCleanupFunction();\n});\n\ndestroy()\nDestroys the databases object-instance. This is to free up memory and stop all observings and replications.\nReturns a Promise that resolves when the database is destroyed.\nawait myDatabase.destroy();\n\nremove()\nRemoves the database and wipes all data of it from the storage.\nawait myDatabase.remove();\n// database is now gone\n\n// NOTICE: You can also remove a database without its instance\nRxDB.removeDatabase('mydatabasename', 'localstorage');\n\ncheckAdapter()\nChecks if the given adapter can be used with RxDB in the current environment.\nRxDB.plugin(require('pouchdb-adapter-localstorage')); // adapter must be added before\n\nconst ok = await RxDB.checkAdapter('localstorage');\nconsole.dir(ok); // true on most browsers, false on nodejs\n\nisRxDatabase\nReturns true if the given object is an instance of RxDatabase. Returns false if not.\nconst is = RxDB.isRxDatabase(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-schema.html":{"url":"rx-schema.html","title":"RxSchema","keywords":"","body":"RxSchema\nSchemas define how your data looks. Which field should be used as primary, which fields should be used as indexes and what should be encrypted. The schema also validates that every inserted document of your collections conforms to the schema. Every collection has its own schema. With RxDB, schemas are defined with the jsonschema-standard which you might know from other projects.\nExample\nIn this example-schema we define a hero-collection with the following settings:\n\nthe version-number of the schema is 0\nthe name-property is the primary. This means its an unique, indexed, required string which can be used to definitely find a single document.\nthe color-field is required for every document\nthe healthpoints-field must be a number between 0 and 100\nthe secret-field stores an encrypted value\nthe birthyear-field is final which means it is required and cannot be changed\nthe skills-attribute must be an array with objects which contain the name and the damage-attribute. There is a maximum of 5 skills per hero.\nAllows adding attachments and store them encrypted\n{\n \"title\": \"hero schema\",\n \"version\": 0,\n \"description\": \"describes a simple hero\",\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"primary\": true\n },\n \"color\": {\n \"type\": \"string\"\n },\n \"healthpoints\": {\n \"type\": \"number\",\n \"min\": 0,\n \"max\": 100\n },\n \"secret\": {\n \"type\": \"string\",\n \"encrypted\": true\n },\n \"birthyear\": {\n \"type\": \"number\",\n \"final\": true,\n \"min\": 1900,\n \"max\": 2050\n },\n \"skills\": {\n \"type\": \"array\",\n \"maxItems\": 5,\n \"uniqueItems\": true,\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"damage\": {\n \"type\": \"number\"\n }\n }\n }\n }\n },\n \"required\": [\"color\"],\n \"attachments\": {\n \"encrypted\": true\n }\n}\n\n\n\nCreate a collection with the schema\nawait myDatabase.collection({\n name: 'heroes',\n schema: myHeroSchema\n});\nconsole.dir(myDatabase.heroes.name);\n// heroes\n\nversion\nThe version field is a number, starting with 0.\nWhen the version is greater than 0, you have to provide the migrationStrategies to create a collection with this schema.\nkeyCompression\nSince version 8.0.0, the keyCompression is disabled by default. If you have a huge amount of documents it makes sense to enable the keyCompression and save disk-space.\nNotice that keyCompression can only be used on the top-level of a schema.\nconst mySchema = {\n keyCompression: true, // set this to true, to enable the keyCompression\n version: 0,\n title: 'human schema no compression',\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n }\n },\n required: ['firstName', 'lastName']\n};\n\nIndexes\nRxDB supports secondary indexes which are defined at the schema-level of the collection.\nTo add a simple index, add index: true inside field options.\nTo add compound-indexes, add them in an array to a compoundIndexes-field at the top-level of the schema-definition.\nIndex is only allowed on field types string, integer and number\nIndex-example\nconst schemaWithIndexes = {\n version: 0,\n title: 'human schema no compression',\n keyCompression: true,\n type: 'object',\n properties: {\n firstName: {\n type: 'string',\n index: true // \nattachments\nTo use attachments in the collection, you have to add the attachments-attribute to the schema. See RxAttachment.\ndefault\nDefault values can only be defined for first-level fields.\nWhenever you insert a document or create a temporary-document, unset fields will be filled with default-values.\nconst schemaWithDefaultAge = {\n version: 0,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer',\n default: 20 // \nfinal\nBy setting a field to final, you make sure it cannot be modified later. Final fields are always required.\nFinal fields cannot be observed because they anyway will not change.\nAdvantages:\n\nWith final fields you can ensure that no other in your dev-team accidentally modifies the data\nWhen you enable the query-change-detection, some performance-improvements are done\n\nconst schemaWithFinalAge = {\n version: 0,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer',\n final: true\n }\n },\n};\n\nencryption\nBy setting a field to encrypted: true it will be stored encrypted inside of the data-store. The encryption will run internally, so when you get the RxDocument, you can access the unencrypted value.\nYou can set all fields to be encrypted, even nested objects. You can not run queries over encrypted fields.\n\"mySecretField\": {\n \"type\": \"string\",\n \"encrypted\": true\n},\n\nNOTICE: Not everything within the jsonschema-spec is allowed\nThe schema is not only used to validate objects before they are written into the database, but also used to map getters to observe and populate single fieldnames, keycompression and other things. Therefore you can not use every schema which would be valid for the spec of json-schema.org.\nFor example, fieldnames must match the regex ^[a-zA-Z][[a-zA-Z0-9_]*]?[a-zA-Z0-9]$ and additionalProperties is always set to false. But don't worry, RxDB will instantly throw an error when you pass a invalid schema into it.\n\nIf you are new to RxDB, you should continue here\n"},"rx-collection.html":{"url":"rx-collection.html","title":"RxCollection","keywords":"","body":"RxCollection\nA collection stores documents of the same type.\nCreating a Collection\nTo create a collection you need a RxDatabase object which has the .collection()-method. Every collection needs a collection name and a valid RxSchema. Other attributes are optional.\nmyDatabase.collection({\n name: 'humans',\n schema: mySchema,\n pouchSettings: {} // (optional)\n statics: {}, // (optional) // ORM-functions for this collection\n methods: {}, // (optional) ORM-functions for documents\n attachments: {}, // (optional) ORM-functions for attachments\n options: {}, // (optional) Custom paramters that might be used in plugins\n migrationStrategies: {}, // (optional)\n autoMigrate: true, // (optional)\n})\n .then(collection => console.dir(collection));\n\nname\nThe name uniquely identifies the collection and should be used to refind the collection in the database. Two different collections in the same database can never have the same name. Collection names must match the following regex: ^[a-z][a-z0-9]*$.\nschema\nThe schema defines how your data looks and how it should be handled. You can pass a RxSchema object or a simple javascript-object from which the schema will be generated.\npouchSettings\nYou can pass settings directly to the pouchdb database create options through this property.\nORM-functions\nWith the parameters statics, methods and attachments, you can defined ORM-functions that are applied to each of these objects that belong to this collection. See ORM/DRM.\nMigration\nWith the parameters migrationStrategies and autoMigrate you can specify how mirgration between different schema-versions should be done. See Migration.\nGet a collection from the database\nTo get an existing collection from the database, call the collection name directly on the database:\n// newly created collection\nconst collection = await db.collection({\n name: 'heroes',\n schema: mySchema\n});\nconst collection2 = db.heroes;\n// or\n// const collection2 = db['heroes']\n\nconsole.log(collection == collection2);\n// true\n\nFunctions\nObserve $\nCalling this will return an rxjs-Observable which streams every change to data of this collection.\nmyCollection.$.subscribe(changeEvent => console.dir(changeEvent));\n\n// you can also observe single event-types with insert$ update$ remove$\nmyCollection.insert$.subscribe(changeEvent => console.dir(changeEvent));\nmyCollection.update$.subscribe(changeEvent => console.dir(changeEvent));\nmyCollection.remove$.subscribe(changeEvent => console.dir(changeEvent));\n\ninsert()\nUse this to insert new documents into the database. The collection will validate the schema and automatically encrypt any encrypted fields. Returns the new RxDocument.\nconst doc = await myCollection.insert({\n name: 'foo',\n lastname: 'bar'\n});\n\nbulkInsert()\nWhen you have to insert many documents at once, use bulk insert. This is much faster then calling .insert() multiple times.\nReturns an object with a success- and error-array.\nconst result = await myCollection.bulkInsert([{\n name: 'foo1',\n lastname: 'bar1'\n},\n{\n name: 'foo2',\n lastname: 'bar2'\n}]);\n\n// > {\n// success: [RxDocument, RxDocument],\n// error: []\n// }\n\nNOTICE: bulkInsert will not fail on update conflicts and you cannot expect that on failure the other documents are not inserted.\nnewDocument()\nSometimes it can be helpful to spawn and use documents before saving them into the database.\nThis is useful especially when you want to use the ORM methods or prefill values from form data.\nYou can create temporary documents by calling RxCollection.newDocument(initalData).\nconst tempDoc = myCollection.newDocument({\n firstName: 'Bob'\n});\n\n// fill in data later\ntempDoc.lastName = 'Kelso';\ntempDoc.age = 77;\n\n// saving a temporary document will transform it to a standard RxDocument\nawait tempDoc.save();\n\nupsert()\nInserts the document if it does not exist within the collection, otherwise it will overwrite it. Returns the new or overwritten RxDocument.\nconst doc = await myCollection.upsert({\n name: 'foo',\n lastname: 'bar2'\n});\n\natomicUpsert()\nWhen you run many upsert operations on the same RxDocument in a very short timespan, you might get a 409 Conflict error.\nThis means that you tried to run a .upsert() on the document, while the previous upsert operation was still running.\nTo prevent these types of errors, you can run atomic upsert operations.\nThe behavior is similar to RxDocument.atomicUpdate.\nconst docData = {\n name: 'Bob', // primary\n lastName: 'Kelso'\n};\n\nmyCollection.upsert(docData);\nmyCollection.upsert(docData);\n// -> throws because of parrallel update to the same document\n\nmyCollection.atomicUpsert(docData);\nmyCollection.atomicUpsert(docData);\nmyCollection.atomicUpsert(docData);\n\n// wait until last upsert finished\nawait myCollection.atomicUpsert(docData);\n// -> works\n\nfind()\nTo find documents in your collection, use this method. See RxQuery.find().\n// find all that are older then 18\nconst olderDocuments = await myCollection\n .find()\n .where('age')\n .gt(18)\n .exec(); // execute\n\nfindOne()\nThis does basically what find() does, but it returns only a single document. You can pass a primary value to find a single document more easily.\nTo find documents in your collection, use this method. See RxQuery.find().\n// get document with name:foobar\nmyCollection.findOne().where('name').eq('foo')\n .exec().then(doc => console.dir(doc));\n\n// get document by primary, functionally identical to above query\nmyCollection.findOne('foo')\n .exec().then(doc => console.dir(doc));\n\ndump()\nUse this function to create a json export from every document in the collection. You can pass true as parameter to decrypt the encrypted data fields of your documents.\nmyCollection.dump()\n .then(json => console.dir(json));\n\n// decrypted dump\nmyCollection.dump(true)\n .then(json => console.dir(json));\n\nimportDump()\nTo import the json dump into your collection, use this function.\n// import the dump to the database\nmyCollection.importDump(json)\n .then(() => console.log('done'));\n\nsync()\nThis method allows you to replicate data between other RxCollections, pouchdb instances or remote servers which support the couchdb-sync-protocol.\nFull documentation on how to use replication is here.\nremove()\nRemoves all known data of the collection and its previous versions.\nThis removes the documents, the schemas, and older schemaVersions.\nawait myCollection.remove();\n// collection is now removed and can be re-created\n\ndestroy()\nDestroys the collection's object instance. This is to free up memory and stop all observings and replications.\nawait myCollection.destroy();\n\nisRxCollection\nReturns true if the given object is an instance of RxCollection. Returns false if not.\nconst is = RxDB.isRxCollection(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-document.html":{"url":"rx-document.html","title":"RxDocument","keywords":"","body":"RxDocument\nA document is a single object which is stored in a collection. It can be compared to a single record in a relational database table. You get an RxDocument either as return on inserts, or as result-set of queries.\ninsert\nTo insert a document into a collection, you have to call the collection's .insert()-function.\nmyCollection.insert({\n name: 'foo',\n lastname: 'bar'\n});\n\nfind\nTo find documents in a collection, you have to call the collection's .find()-function. See RxQuery.\nmyCollection.find().exec() // console.dir(documents));\n\nFunctions\nget()\nThis will get a single field of the document. If the field is encrypted, it will be automatically decrypted before returning.\nvar name = myDocument.get('name'); // returns the name\n\nget$()\nThis function returns an observable of the given paths-value.\nThe current value of this path will be emitted each time the document changes.\n// get the life-updating value of 'name'\nvar isName;\nmyDocument.get$('name')\n .subscribe(newName => {\n isName = newName;\n });\n\nawait myDocument.atomicSet('name', 'foobar2');\nconsole.dir(isName); // isName is now 'foobar2'\n\nproxy-get\nAll properties of a RxDocument are assigned as getters so you can also directly access values instead of using the get()-function.\n // Identical to myDocument.get('name');\n var name = myDocument.name;\n // Can also get nested values.\n var nestedValue = myDocument.whatever.nestedfield;\n\n // Also useable with observables:\n myDocument.firstName$.subscribe(newName => console.log('name is: ' + newName));\n // > 'name is: Stefe'\n await myDocument.atomicSet('firstName', 'Steve');\n // > 'name is: Steve'\n\nupdate()\nUpdates the document based on the mongo-update-syntax, based on modifyjs.\nawait myDocument.update({\n $inc: {\n age: 1 // increases age by 1\n },\n $set: {\n fistName: 'foobar' // sets firstName to foobar\n }\n});\n\natomicUpdate()\nUpdates a documents data based on a function that transforms the current data and returns the new value.\n\nconst changeFunction = (oldData) => {\n oldData.age = oldData.age + 1;\n oldData.name = 'foooobarNew';\n return oldData;\n}\nawait myDocument.atomicUpdate(changeFunction);\nconsole.log(myDocument.name); // 'foooobarNew'\n\natomicSet()\nWorks like atomicUpdate but only sets the value for a single attribute.\nawait myDocument.atomicSet('nested.attribute', 'foobar');\nconsole.log(myDocument.nested.attribute); // 'foobar'\n\nObserve $\nCalling this will return an rxjs-Observable which emits all change-Events belonging to this document.\n// get all changeEvents\nmyDocument.$\n .subscribe(changeEvent => console.dir(changeEvent));\n\nremove()\nThis removes the document from the collection. Notice that this will not purge the document from the store but set _deleted:true like described in the pouchdb-docs in option 3.\nmyDocument.remove();\n\ndeleted$\nEmits a boolean value, depending on whether the RxDocument is deleted or not.\nlet lastState = null;\nmyDocument.deleted$.subscribe(state => lastState = state);\n\nconsole.log(lastState);\n// false\n\nawait myDocument.remove();\n\nconsole.log(lastState);\n// true\n\nget deleted\nA getter to get the current value of deleted$.\nconsole.log(myDocument.deleted);\n// false\n\nawait myDocument.remove();\n\nconsole.log(myDocument.deleted);\n// true\n\ntoJSON()\nReturns the document's data as plain json object.\nconst json = myDocument.toJSON();\nconsole.dir(json);\n/* { passportId: 'h1rg9ugdd30o',\n firstName: 'Carolina',\n lastName: 'Gibson',\n age: 33 ...\n*/\n\nset()\nOnly temporary documents\nTo change data in your document, use this function. It takes the field-path and the new value as parameter. Note that calling the set-function will not change anything in your storage directly. You have to call .save() after to submit changes.\nmyDocument.set('firstName', 'foobar');\nconsole.log(myDocument.get('firstName')); // \nproxy-set\nOnly temporary documents\nAll properties of an RxDocument are assigned as setters to it so you can also directly set values instead of using the set()-function.\nmyDocument.firstName = 'foobar';\nmyDocument.whatever.nestedfield = 'foobar2';\n\nsave()\nOnly temporary documents\nThis will update the document in the storage if it has been changed. Call this after modifying the document (via set() or proxy-set).\nmyDocument.name = 'foobar';\nawait myDocument.save(); // submit the changes to the storage\n\nNOTICE: All methods of RxDocument are bound to the instance\nWhen you get a method from a RxDocument, the method is automatically bound to the documents instance. This means you do not have to use things like myMethod.bind(myDocument) like you would do in jsx.\nisRxDocument\nReturns true if the given object is an instance of RxDocument. Returns false if not.\nconst is = RxDB.isRxDocument(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-query.html":{"url":"rx-query.html","title":"RxQuery","keywords":"","body":"RxQuery\nA query allows to find documents in your collection.\nLike most other noSQL-Databases, RxDB uses the mango-query-syntax. It is also possible to use chained methods.\nfind()\nTo create a basic RxQuery, call .find() on a collection and insert selectors. The result-set of normal queries is an array with documents.\n// find all that are older then 18\nconst query = myCollection\n .find()\n .where('age')\n .gt(18);\n\nfindOne()\nA findOne-query has only a single RxDocument or null as result-set.\n// find the youngest one\nconst query = myCollection\n .findOne()\n .sort('age')\n\nexec()\nReturns a Promise that resolves with the result-set of the query.\nconst query = myCollection.find();\nconst results = await query.exec();\nconsole.dir(results); // > [RxDocument,RxDocument,RxDocument..]\n\nObserve $\nAn BehaviorSubject see that always has the current result-set as value.\nThis is extremely helpfull when used together with UIs that shell always show the same state as what is written in the database.\nconst query = myCollection.find();\nquery.$.subscribe(results => {\n console.log('got results: ' + results.length);\n});\n// > 'got results: 5' // BehaviorSubjects emit on subscription\n\nawait myCollection.insert({/* ... */}); // insert one\n// > 'got results: 6' // $.subscribe() was called again with the new results\n\nupdate()\nRuns and update on every RxDocument of the query-result.\nconst query = myCollection.find().where('age').gt(18);\nawait query.update({\n $inc: {\n age: 1 // increases age of every found document by 1\n }\n});\n\nremove()\nDeletes all found documents. Returns a promise which resolves to the deleted documents.\n// All documents where the age is less than 18\nconst query = myCollection.find().where('age').lt(18);\n// Remove the documents from the collection\nconst removedDocs = await query.remove();\n\ndoesDocumentDataMatch()\nReturns true if the given document data matches the query.\nconst documentData = {\n id: 'foobar',\n age: 19\n};\n\nmyCollection.find().where('age').gt(18).doesDocumentDataMatch(documentData); // > true\n\nmyCollection.find().where('age').gt(20).doesDocumentDataMatch(documentData); // > false\n\nExamples\nHere some examples to fast learn how to write queries without reading the docs.\n\nPouch-find-docs - learn how to use mango-queries\nmquery-docs - learn how to use chained-queries\n\n// directly pass search-object\nmyCollection.find({name: {$eq: 'foo'}})\n .exec().then(documents => console.dir(documents));\n\n// find by using sql equivalent '%like%' syntax\n// This example will fe: match 'foo' but also 'fifoo' or 'foofa' or 'fifoofa'\nmyCollection.find({name: {$regex: '.*foo.*'}})\n .exec().then(documents => console.dir(documents));\n\n// find using a composite statement eg: $or\n// This example checks where name is either foo or if name is not existant on the document\nmyCollection.find({$or: [ { name: { $eq: 'foo' } }, { name: { $exists: false } }})\n .exec().then(documents => console.dir(documents));\n\n// do a case insensitive search\n// This example will match 'foo' or 'FOO' or 'FoO' etc...\nvar regexp = new RegExp('^foo$', 'i');\nmyCollection.find({name: {$regex: regexp}})\n .exec().then(documents => console.dir(documents));\n\n// chained queries\nmyCollection.find().where('name').eq('foo')\n .exec().then(documents => console.dir(documents));\n\nNOTICE: RxQuery's are immutable\nBecause RxDB is a reactive database, we can do heavy performance-optimisation on query-results which change over time. To be able to do this, RxQuery's have to be immutable.\nThis means, when you have a RxQuery and run a .where() on it, the original RxQuery-Object is not changed. Instead the where-function returns a new RxQuery-Object with the changed where-field. Keep this in mind if you create RxQuery's and change them afterwards.\nExample:\nconst queryObject = myCollection.find().where('age').gt(18);\n// Creates a new RxQuery object, does not modify previous one\nqueryObject.sort('name');\nconst results = await queryObject.exec();\nconsole.dir(results); // result-documents are not sorted by name\n\nconst queryObjectSort = queryObject.sort('name');\nconst results = await queryObjectSort.exec();\nconsole.dir(results); // result-documents are now sorted\n\nisRxQuery\nReturns true if the given object is an instance of RxQuery. Returns false if not.\nconst is = RxDB.isRxQuery(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-attachment.html":{"url":"rx-attachment.html","title":"RxAttachment","keywords":"","body":"Attachments\nLike pouchdb, RxDB can store attachments which has a better performance and a higher quota-limit then regular data.\nYou can store string, binary files, images and whatever you want side by side with your documents.\nBefore you can use attachments, you have to ensure that the attachments-object is set in the schema of your RxCollection.\n\nconst mySchema = {\n version: 0,\n type: 'object',\n properties: {\n // .\n // .\n // .\n },\n attachments: {\n encrypted: true // if true, the attachment-data will be encrypted with the db-password\n }\n};\n\nconst myCollection = await myDatabase.collection({\n name: 'humans',\n schema: mySchema\n});\n\nputAttachment()\nAdds an attachment to a RxDocument. Returns a Promise with the new attachment.\nconst attachment = await myDocument.putAttachment({\n id, // string, name of the attachment like 'cat.jpg'\n data, // (string|Blob|Buffer) data of the attachment\n type // (string) type of the attachment-data like 'image/jpeg'\n});\n\ngetAttachment()\nReturns an RxAttachment by its id. Returns null when the attachment does not exist.\nconst attachment = myDocument.getAttachment('cat.jpg');\n\nallAttachments()\nReturns an array of all attachments of the RxDocument.\nconst attachments = myDocument.allAttachments();\n\nallAttachments$\nGets an Observable which emits a stream of all attachments from the document. Re-emits each time an attachment gets added or removed from the RxDocument.\nconst all = [];\nmyDocument.allAttachments$.subscribe(\n attachments => all = attachments\n);\n\nRxAttachment\nThe attachments of RxDB are represented by the type RxAttachment which has the following attributes/methods.\ndoc\nThe RxDocument which the attachment is assigned to.\nid\nThe id as string of the attachment.\ntype\nThe type as string of the attachment.\nlength\nThe length of the data of the attachment as number.\ndigest\nThe md5-sum of the attachments data as string.\nrev\nThe revision-number of the attachment as number.\nremove()\nRemoves the attachment. Returns a Promise that resolves when done.\nconst attachment = myDocument.getAttachment('cat.jpg');\nawait attachment.remove();\n\ngetData()\nReturns a Promise which resolves the attachment's data as Blob or Buffer. (async)\nconst attachment = myDocument.getAttachment('cat.jpg');\nconst blobBuffer = await attachment.getData();\n\ngetStringData()\nReturns a Promise which resolves the attachment's data as string.\nconst attachment = await myDocument.getAttachment('cat.jpg');\nconst data = await attachment.getStringData();\n\n\nIf you are new to RxDB, you should continue here\n"},"middleware.html":{"url":"middleware.html","title":"Middleware-hooks","keywords":"","body":"Middleware\nRxDB supports middleware-hooks like mongoose.\nMiddleware (also called pre and post hooks) are functions which are passed control during execution of asynchronous functions.\nThe hooks are specified on RxCollection-level and help to create a clear what-happens-when-structure of your code.\nHooks can be defined to run parallel or as series one after another.\nHooks can be synchronous or asynchronous when they return a Promise.\nTo stop the operation at a specific hook, throw an error.\nList\nRxDB supports the following hooks:\n\npreInsert\npostInsert\npreSave\npostSave\npreRemove\npostRemove\npostCreate\n\nWhy is there no validate-hook?\nDifferent to mongoose, the validation on document-data is running on the field-level for every change to a document.\nThis means if you set the value lastName of a RxDocument, then the validation will only run on the changed field, not the whole document.\nTherefore it is not useful to have validate-hooks when a document is written to the database.\nUse Cases\nMiddleware are useful for atomizing model logic and avoiding nested blocks of async code.\nHere are some other ideas:\n\ncomplex validation\nremoving dependent documents\nasynchronous defaults\nasynchronous tasks that a certain action triggers\ntriggering custom events\nnotifications\n\nUsage\nAll hooks have the plain data as first parameter, and all but preInsert also have the RxDocument-instance as second parameter. If you want to modify the data in the hook, change attributes of the first parameter.\nAll hook functions are also this-bind to the RxCollection-instance.\nInsert\nAn insert-hook receives the data-object of the new document.\nlifecycle\n\nRxCollection.insert is called\npreInsert series-hooks\npreInsert parallel-hooks\nschema validation runs\nnew document is written to database\npostInsert series-hooks\npostInsert parallel-hooks\nevent is emitted to RxDatabase and RxCollection\n\npreInsert\n// series\nmyCollection.preInsert(function(plainData){\n // set age to 50 before saving\n plainData.age = 50;\n}, false);\n\n// parallel\nmyCollection.preInsert(function(plainData){\n\n}, true);\n\n// async\nmyCollection.preInsert(function(plainData){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the insert-operation\nmyCollection.preInsert(function(plainData){\n throw new Error('stop');\n}, false);\n\npostInsert\n// series\nmyCollection.postInsert(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.postInsert(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.postInsert(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\nSave\nA save-hook receives the document which is saved.\nlifecycle\n\nRxDocument.save is called\npreSave series-hooks\npreSave parallel-hooks\nupdated document is written to database\npostSave series-hooks\npostSave parallel-hooks\nevent is emitted to RxDatabase and RxCollection\n\npreSave\n// series\nmyCollection.preSave(function(plainData, rxDocument){\n // modify anyField before saving\n plainData.anyField = 'anyValue';\n}, false);\n\n// parallel\nmyCollection.preSave(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.preSave(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the save-operation\nmyCollection.preSave(function(plainData, rxDocument){\n throw new Error('stop');\n}, false);\n\npostSave\n// series\nmyCollection.postSave(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.postSave(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.postSave(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\nRemove\nAn remove-hook receives the document which is removed.\nlifecycle\n\nRxDocument.remove is called\npreRemove series-hooks\npreRemove parallel-hooks\ndeleted document is written to database\npostRemove series-hooks\npostRemove parallel-hooks\nevent is emitted to RxDatabase and RxCollection\n\npreRemove\n// series\nmyCollection.preRemove(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.preRemove(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.preRemove(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the remove-operation\nmyCollection.preRemove(function(plainData, rxDocument){\n throw new Error('stop');\n}, false);\n\npostRemove\n// series\nmyCollection.postRemove(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.postRemove(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.postRemove(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\npostCreate\nThis hook is called whenever a RxDocument is constructed.\nYou can use postCreate to modify every RxDocument-instance of the collection.\nThis adds a flexible way to add specify behavior to every document. You can also use it to add custom getter/setter to documents. PostCreate-hooks cannot be asynchronous.\nmyCollection.postCreate(function(plainData, rxDocument){\n Object.defineProperty(rxDocument, 'myField', {\n get: () => 'foobar',\n });\n});\n\nconst doc = await myCollection.findOne().exec();\n\nconsole.log(doc.myField);\n// 'foobar'\n\nNotice: This hook does not run on already created or cached documents. Make sure to add postCreate-hooks before interacting with the collection.\n\nIf you are new to RxDB, you should continue here\n"},"orm.html":{"url":"orm.html","title":"ORM/DRM","keywords":"","body":"Object-Data-Relational-Mapping\nLike mongoose, RxDB has ORM-capabilities which can be used to add specific behavior to documents and collections.\nstatics\nStatics are defined collection-wide and can be called on the collection.\nAdd statics to a collection\nTo add static functions, pass a statics-object when you create your collection. The object contains functions, mapped to their function-names.\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n statics: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\n\nconsole.log(heroes.scream());\n// 'AAAH!!'\n\nYou can also use the this-keyword which resolves to the collection:\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n statics: {\n whoAmI: function(){\n return this.name;\n }\n }\n});\nconsole.log(heroes.whoAmI());\n// 'heroes'\n\ninstance-methods\nInstance-methods are defined collection-wide. They can be called on the RxDocuments of the collection.\nAdd instance-methods to a collection\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n methods: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\nconst doc = await heroes.findOne().exec();\nconsole.log(doc.scream());\n// 'AAAH!!'\n\nHere you can also use the this-keyword:\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n methods: {\n whoAmI: function(){\n return 'I am ' + this.name + '!!';\n }\n }\n});\nawait heroes.insert({\n name: 'Skeletor'\n});\nconst doc = await heroes.findOne().exec();\nconsole.log(doc.whoAmI());\n// 'I am Skeletor!!'\n\nattachment-methods\nAttachment-methods are defined collection-wide. They can be called on the RxAttachemnts of the RxDocuments of the collection.\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n attachments: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\nconst doc = await heroes.findOne().exec();\nconst attachment = await doc.putAttachment({\n id: 'cat.txt',\n data: 'meow I am a kitty',\n type: 'text/plain'\n});\nconsole.log(attachment.scream());\n// 'AAAH!!'\n\n\nIf you are new to RxDB, you should continue here\n"},"population.html":{"url":"population.html","title":"Population","keywords":"","body":"Population\nThere are no joins in RxDB but sometimes we still want references to documents in other collections. This is where population comes in. You can specify a relation from one RxDocument to another RxDocument in the same or another RxCollection of the same database.\nThen you can get the referenced document with the population-getter.\nThis works exactly like population with mongoose.\nSchema with ref\nThe ref-keyword describes to which collection the field-value belongs to.\nexport const refHuman = {\n title: 'human related to other human',\n version: 0,\n properties: {\n name: {\n primary: true,\n type: 'string'\n },\n bestFriend: {\n ref: 'human', // refers to collection human\n type: 'string' // ref-values must always be string (primary of foreign RxDocument)\n }\n }\n};\n\nYou can also have a one-to-may reference by using a string-array.\nexport const schemaWithOneToManyReference = {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string',\n primary: true\n },\n friends: {\n type: 'array',\n ref: 'human',\n items: {\n type: 'string'\n }\n }\n }\n};\n\npopulate()\nvia method\nTo get the referred RxDocument, you can use the populate()-method.\nIt takes the field-path as attribute and returns a Promise which resolves to the foreign document or null if not found.\nawait humansCollection.insert({\n name: 'Alice',\n bestFriend: 'Carol'\n});\nawait humansCollection.insert({\n name: 'Bob',\n bestFriend: 'Alice'\n});\nconst doc = await humansCollection.findOne('Bob').exec();\nconst bestFriend = await doc.populate('bestFriend');\nconsole.dir(bestFriend); //> RxDocument[Alice]\n\nvia getter\nYou can also get the populated RxDocument with the direct getter. Therefore you have to add an underscore suffix _ to the fieldname.\nThis works also on nested values.\nawait humansCollection.insert({\n name: 'Alice',\n bestFriend: 'Carol'\n});\nawait humansCollection.insert({\n name: 'Bob',\n bestFriend: 'Alice'\n});\nconst doc = await humansCollection.findOne('Bob').exec();\nconst bestFriend = await doc.bestFriend_; // notice the underscore_\nconsole.dir(bestFriend); //> RxDocument[Alice]\n\nExample with nested reference\nconst myCollection = await myDatabase.collection({\n name: 'human',\n schema: {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string'\n },\n family: {\n type: 'object',\n properties: {\n mother: {\n type: 'string',\n ref: 'human'\n }\n }\n }\n }\n }\n});\n\nconst mother = await myDocument.family.mother_;\nconsole.dir(mother); //> RxDocument\n\nExample with array\nconst myCollection = await myDatabase.collection({\n name: 'human',\n schema: {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string'\n },\n friends: {\n type: 'array',\n ref: 'human',\n items: {\n type: 'string'\n }\n }\n }\n }\n});\n\n//[insert other humans here]\n\nawait myCollection.insert({\n name: 'Alice',\n friends: [\n 'Bob',\n 'Carol',\n 'Dave'\n ]\n});\n\nconst doc = await humansCollection.findOne('Alice').exec();\nconst friends = await myDocument.friends_;\nconsole.dir(friends); //> Array.\n\n\nIf you are new to RxDB, you should continue here\n"},"data-migration.html":{"url":"data-migration.html","title":"DataMigration","keywords":"","body":"DataMigration\nImagine you have your awesome messenger-app distributed to many users. After a while, you decide that in your new version, you want to change the schema of the messages-collection. Instead of saving the message-date like 2017-02-12T23:03:05+00:00 you want to have the unix-timestamp like 1486940585 to make it easier to compare dates. To accomplish this, you change the schema and increase the version-number and you also change your code where you save the incoming messages. But one problem remains: what happens with the messages which are already saved on the user's device in the old schema?\nWith RxDB you can provide migrationStrategies for your collections that automatically (or on call) transform your existing data from older to newer schemas. This assures that the client's data always matches your newest code-version.\nProviding strategies\nUpon creation of a collection, you have to provide migrationStrategies when your schema's version-number is greater than 0. To do this, you have to add an object to the migrationStrategies property where a function for every schema-version is assigned. A migrationStrategy is a function which gets the old document-data as a parameter and returns the new, transformed document-data. If the strategy returns null, the document will be removed instead of migrated.\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n // 1 means, this transforms data from version 0 to version 1\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n }\n }\n});\n\nAsynchronous strategies can also be used:\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n },\n /**\n * 2 means, this transforms data from version 1 to version 2\n * this returns a promise which resolves with the new document-data\n */\n 2: function(oldDoc){\n // in the new schema (version: 2) we defined 'senderCountry' as required field (string)\n // so we must get the country of the message-sender from the server\n const coordinates = oldDoc.coordinates;\n return fetch('http://myserver.com/api/countryByCoordinates/'+coordinates+'/')\n .then(response => {\n const response = response.json();\n oldDoc.senderCountry=response;\n return oldDoc;\n });\n }\n }\n});\n\nyou can also filter which documents should be migrated:\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n // 1 means, this transforms data from version 0 to version 1\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n },\n /**\n * this removes all documents older then 2017-02-12\n * they will not appear in the new collection\n */\n 2: function(oldDoc){\n if(oldDoc.time \nautoMigrate\nBy default, the migration automatically happens when the collection is created. If you have lots of data or the migrationStrategies take a long time, it might be better to start the migration 'by hand' and show the migration-state to the user as a loading-bar.\nconst messageCol = await myDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n autoMigrate: false, // console.dir(state),\n error => console.error(error),\n done => console.log('done')\n);\n\n// the emitted states look like this:\n{\n done: false, // true if finished\n total: 50, // amount of documents which must be migrated\n handled: 0, // amount of handled docs\n success: 0, // handled docs which succeeded\n deleted: 0, // handled docs which got deleted\n percent: 0 // percentage\n}\n\nIf you don't want to show the state to the user, you can also use .migratePromise():\n const migrationPromise = messageCol.migratePromise(10);\n await migratePromise;\n\nHint\nIf your migration takes a long time, combine it with the leaderElection to make sure you don't waste your users' resources by running it in 2 open tabs.\n\nIf you are new to RxDB, you should continue here\n"},"leader-election.html":{"url":"leader-election.html","title":"LeaderElection","keywords":"","body":"Leader-Election\nRxDB comes with a leader-election which elects a leading instance between different instances in the same javascript runtime.\nBefore you read this, please check out on how many of your open browser-tabs you have opened the same website more than once. Count them, I will wait..\nSo if you would now inspect the traffic that theses open tabs produce, you can see that many of them send exact the same data over wire for every tab. No matter if the data is sent with an open websocket or by polling.\nUse-case-example\nImagine we have a website which displays the current temperature of the visitors location in various charts, numbers or heatmaps. To always display the live-data, the website opens a websocket to our API-Server which sends the current temperature every 10 seconds. Using the way most sites are currently build, we can now open it in 5 browser-tabs and it will open 5 websockets which send data 6*5=30 times per minute. This will not only waste the power of your clients device, but also wastes your api-servers resources by opening redundant connections.\nSolution\nThe solution to this redundancy is the usage of a leader-election-algorithm which makes sure that always exactly one tab is managing the remote-data-access. The managing tab is the elected leader and stays leader until it is closed. No matter how many tabs are opened or closed, there must be always exactly one leader.\nYou could now start implementing a messaging-system between your browser-tabs, hand out which one is leader, solve conflicts and reassign a new leader when the old one 'dies'.\nOr just use RxDB which does all these things for you.\nCode-example\nTo make it easy, here is an example where the temperature is pulled every ten seconds and saved to a collection. The pulling starts at the moment where the opened tab becomes the leader.\nconst db = await RxDB.create({\n name: 'weatherDB',\n adapter: 'localstorage',\n password: 'myPassword',\n multiInstance: true\n});\nawait db.collection({\n name: 'temperature',\n schema: mySchema\n});\n\ndb.waitForLeadership()\n .then(() => {\n console.log('Long lives the king!'); // {\n const temp = await fetch('https://example.com/api/temp/');\n db.temperature.insert({\n degrees: temp,\n time: new Date().getTime()\n });\n }, 1000 * 10);\n });\n\nLive-Example\nIn this example the leader is marked with the crown ♛\n\nTry it out\nRun the vanillaJS-example where the leading tab is marked with a crown on the top-right-corner.\nNotice\nThe leader election is implemented via the broadcast-channel module.\nThe leader is elected between different processes on the same javascript-runtime. Like multiple tabs in the same browser or mupltiple NodeJs-processes on the same machine. It will not run between different replicated instances.\n\nIf you are new to RxDB, you should continue here\n"},"replication.html":{"url":"replication.html","title":"Replication CouchDB","keywords":"","body":"Replication\nOne of the most powerful features with CouchDB, PouchDB and RxDB is sync.\nYou can sync every RxCollection with another RxCollection, a PouchDB-instance or a remote pouch/couch-DB.\nRx.Collection.sync()\nTo replicate the collection with another instance, use RxCollection.sync().\nIt basically does the same as pouchdb-sync but also adds event-handlers to make sure that change-events will be recognized in the internal event-stream.\n\n// you need these plugins to sync\nRxDB.plugin(require('pouchdb-adapter-http')); // enable syncing over http (remote database)\n\nconst replicationState = myCollection.sync({\n remote: 'http://localhost:10102/db/', // remote database. This can be the serverURL, another RxCollection or a PouchDB-instance\n waitForLeadership: true, // (optional) [default=true] to save performance, the sync starts on leader-instance only\n direction: { // direction (optional) to specify sync-directions\n pull: true, // default=true\n push: true // default=true\n },\n options: { // sync-options (optional) from https://pouchdb.com/api.html#replication\n live: true,\n retry: true\n },\n query: myCollection.find().where('age').gt(18) // query (optional) only documents that match that query will be synchronised\n});\n\nRxReplicationState\nThe method RxCollection.sync() returns a RxReplicationState which can be used to observe events via rxjs-observables and to cancel the replication.\nchange$\nEmits the change-events every time some documents get replicated.\nreplicationState.change$.subscribe(change => console.dir(change));\n\ndocs$\nEmits each replicated document-data.\nreplicationState.docs$.subscribe(docData => console.dir(docData));\n\ndenied$\nEmits when a document failed to replicate (e.g. due to permissions).\nreplicationState.denied$.subscribe(docData => console.dir(docData));\n\nactive$\nEmits true or false depending if the replication is transmitting data. A false value does not imply the connection has died.\nreplicationState.active$.subscribe(active => console.dir(active));\n\nalive$\nEmits true or false depending if the replication is alive - data is transmitting properly between databases. A false value implies the connection has died -if you're replicating to a remote database, for example. It will only emit false if there are pending changes that couldn't be replicated -it won't emit immediately after the connection dies.\nreplicationState.alive$.subscribe(alive => console.dir(alive));\n\ncomplete$\nEmits true or false depending if the replication is completed.\nIf you do a live: true-sync (default) the replication never completes.\nOnly one-time-replications will complete.\nreplicationState.complete$.subscribe(completed => console.dir(completed));\n\nerror$\nIf errors occur during the replication, they will get emitted here.\nreplicationState.error$.subscribe(error => console.dir(error));\n\ncancel()\nCalling this method will cancel the replication.\nawait replicationState.cancel(); // cancel() is async\n\n\nIf you are new to RxDB, you should continue here\n"},"replication-graphql.html":{"url":"replication-graphql.html","title":"Replication GraphQL","keywords":"","body":"Replication with GraphQL (beta)\nWith RxDB you can do a two-way replication with a GraphQL endpoint. This allows you to replicate data from the server into the client-side database and then query and modify it in realtime.\nWhen the user is offline, you still can use the data and later sync it with the server when the client is online again like in other Offline-First systems.\nComparison to Couchdb-Sync\nPros:\n\nThe GraphQL-replication is faster and needs less resources\nYou do not need a couchdb-compliant endpoint, only a GraphQL-endpoint\n\nCons:\n\nYou can not replicate multiple databases with each other\nIt is assumed that the GraphQL-server is the single source of truth\nYou have to setup things at the server side while with couchdb-sync you only have to start a server\n\nNOTICE: To play around, check out the full example of the RxDB GraphQL replication with server and client\nUsage\nData Design\nTo use the GraphQL-replication you first have to ensure that your data is sortable by update time and your documents never get deleted, only have a deleted-flag set.\nFor example if your documents look like this,\n{\n \"id\": \"foobar\",\n \"name\": \"Alice\",\n \"lastName\": \"Wilson\",\n \"updatedAt\": 1564783474,\n \"deleted\": false\n}\n\nThen your data is always sortable by updatedAt. This ensures that when RxDB fetches 'new' changes, it can send the latest updatedAt to the GraphQL-endpoint and then recieve all newer documents.\nDeleted documents still exist but have deleted: true set. This ensures that when RxDB fetches new documents, even the deleted documents are send back and can be known at the client-side.\nGraphQL Server\nAt the server-side, there must exist an endpoint which returns newer rows when the last replicated document is used as input. For example lets say you create a Query feedForRxDBReplication which returns a list of newer documents, related to the given one, sorted by updatedAt.\nFor the push-replication, you also need a modifier which lets RxDB update data with a changed document as input.\ninput HumanInput {\n id: ID!,\n name: String!,\n lastName: String!,\n updatedAt: Int!,\n deleted: Boolean!\n}\ntype Human {\n id: ID!,\n name: String!,\n lastName: String!,\n updatedAt: Int!,\n deleted: Boolean!\n}\ntype Query {\n feedForRxDBReplication(lastId: String!, minUpdatedAt: Int!, limit: Int!): [Human!]!\n}\ntype Mutation {\n setHuman(human: HumanInput): Human\n}\nThe resolver would then look like:\nconst rootValue = {\n feedForRxDBReplication: args => {\n // sorted by updatedAt first and the id as second\n const sortedDocuments = documents.sort((a, b) => {\n if (a.updatedAt > b.updatedAt) return 1;\n if (a.updatedAt b.id) return 1;\n if (a.id {\n if (doc.updatedAt args.minUpdatedAt) return true;\n if (doc.updatedAt === args.minUpdatedAt) {\n // if updatedAt is equal, compare by id\n if (doc.id > args.lastId) return true;\n else return false;\n }\n });\n\n // only return some documents in one batch\n const limited = filterForMinUpdatedAtAndId.slice(0, args.limit);\n\n return limited;\n },\n // a modifier that updates the state on the server\n setHuman: args => {\n const doc = args.human;\n documents = documents.filter(d => d.id !== doc.id);\n doc.updatedAt = Math.round(new Date().getTime() / 1000);\n documents.push(doc);\n return doc;\n },\n}\n\nRxDB Client\nImport the plugin\nThe graphql-replication is not part of the default-build of RxDB. You have to import the plugin before you can use it.\n// es6-import\nimport RxDBReplicationGraphQL from 'rxdb/plugins/replication-graphql';\nRxDB.plugin(RxDBReplicationGraphQL);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/replication-graphql'));\n\nPull replication\nFor the pull-replication, you first need a pullQueryBuilder. This is a function that gets the last replicated document as input and returns an object with a GraphQL-query and its variables. RxDB will use the query builder to construct what is later send to the GraphQL endpoint.\nconst pullQueryBuilder = doc => {\n if (!doc) {\n // the first pull does not have a start-document\n doc = {\n id: '',\n updatedAt: 0\n };\n }\n const query = `{\n feedForRxDBReplication(lastId: \"${doc.name}\", minUpdatedAt: ${doc.updatedAt}, limit: 5) {\n id,\n name,\n lastName,\n updatedAt\n deleted\n }\n }`;\n return {\n query,\n variables: {}\n };\n};\n\nWith the queryBuilder, you can then setup the pull-replication.\nconst replicationState = myCollection.syncGraphQL({\n url: 'http://example.com/graphql', // url to the GraphQL endpoint\n pull: {\n pullQueryBuilder, // the queryBuilder from above\n modifier: doc => doc // (optional) modifies all pulled documents before they are handeled by RxDB\n },\n deletedFlag: 'deleted', // the flag which indicates if a pulled document is deleted\n live: true // if this is true, rxdb will watch for ongoing changes and sync them, when false, a one-time-replication will be done\n});\n\nPush replication\nFor the push-replication, you also need a queryBuilder. Here, the builder recieves a changed document as input which has to be send to the server. It also returns a GraphQL-Query and its data.\nconst pushQueryBuilder = doc => {\n const query = `\n mutation CreateHuman($human: HumanInput) {\n setHuman(human: $human) {\n id,\n updatedAt\n }\n }\n `;\n const variables = {\n human: doc\n };\n return {\n query,\n variables\n };\n};\n\nWith the queryBuilder, you can then setup the push-replication.\nconst replicationState = myCollection.syncGraphQL({\n url: 'http://example.com/graphql', // url to the GraphQL endpoint\n push: {\n pullQueryBuilder, // the queryBuilder from above\n batchSize: 5, // (optional) amount of documents that will be send in one batch\n modifier: d => d // (optional) modifies all pushed documents before they are send to the GraphQL endpoint\n },\n deletedFlag: 'deleted', // the flag which indicates if a pulled document is deleted\n live: true // if this is true, rxdb will watch for ongoing changes and sync them\n});\n\nOf course you can start the push- and the pull-replication in a single call to myCollection.syncGraphQL().\nUsing subscriptions\nFor the pull-replication, RxDB will run the pull-function every 10 seconds to fetch new documents from the server.\nThis means that when a change happens on the server, RxDB will, in the worst case, take 10 seconds until the changes is replicated to the client.\nTo improve this, it is recommended to setup GraphQL Subscriptions which will trigger the replication cycle when a change happens on the server.\nimport {\n SubscriptionClient\n} from 'subscriptions-transport-ws';\n\n// start the replication\nconst replicationState = myCollection.syncGraphQL({\n url: 'http://example.com/graphql',\n pull: {\n pullQueryBuilder,\n },\n deletedFlag: 'deleted', // the flag which indicates if a pulled document is deleted\n live: true,\n /**\n * Because we use the subscriptions as notifiers,\n * we can set the liveInterval to a very height value.\n */\n liveInterval: 60 * 1000\n});\n\n\n// setup the subscription client\nconst wsClient = new SubscriptionClient(\n 'ws://example.com/subscriptions', {\n reconnect: true,\n }\n);\n\nconst query = `subscription onHumanChanged {\n humanChanged {\n id\n }\n}`;\nconst changeObservable = wsClient.request({ query });\n// subscribe to all events\nchangeObservable.subscribe({\n next(data) {\n /**\n * When a change happens, call .run() on the replicationState.\n * This will trigger the pull-handler and download changes from the server.\n */\n replicationState.run();\n }\n});\n\nConflict Resolution\nRxDB assumes that the Conflict Resolution will happen on the server side.\nWhen the clients sends a document to the server which causes a conflict, this has to be resolved there and then the resulting document can be synced down to RxDB. While CouchDB uses revision-flags for conflicts, you can use any logic like relying on the updatedAt date or other flags.\nRxGraphQLReplicationState\nWhen you call myCollection.syncGraphQL() it returns a RxGraphQLReplicationState which can be used to subscribe to events, for debugging or other functions.\n.isStopped()\nReturns true if the replication is stopped. This can be if a non-live replication is finished or a replication got canceled.\nreplicationState.isStopped(); // true/false\n\n.awaitInitialReplication()\nReturns a Promise that is resolved as soon as the initial replication is done.\nawait replicationState.awaitInitialReplication();\nconsole.log('initial sync done, client data is equal to server data');\n\n.run()\nTriggers a replication cycle with the server. This is done automatically if the data changes on the client side or the pull-interval is called. This returns a Promise which is resolved when the run-cycle is done. Calling run() many times is no problem because it is queued internally.\nawait replicationState.run();\n\n.cancel()\nCancels the replication. This is done autmatically if the RxCollection or it's RxDatabase is destroyed.\nawait replicationState.cancel();\n\n.recieved$\nAn Observable that emits each document that is recieved from the endpoint.\n.send$\nAn Observable that emits each document that is send to the endpoint.\n.error$\nAn Observable that emits each error that happens during the replication. Use this if something does not work for debugging. RxDB will handle network errors automatically, other errors must be solved by the developer.\nreplicationState.error$.subscribe(error => {\n console.log('something was wrong');\n console.dir(error);\n});\n\n.canceled$\nAn Observable that emits true when the replication is canceled, false if not.\n.active$\nAn Observable that emits true when the replication is doing something, false when not.\nNOTICE: To play around, check out the full example of the RxDB GraphQL replication with server and client\n\nIf you are new to RxDB, you should continue here\n"},"query-change-detection.html":{"url":"query-change-detection.html","title":"QueryChangeDetection","keywords":"","body":"QueryChangeDetection\nSimilar to Meteors oplog-observe-driver,\nRxDB has a QueryChangeDetection to optimize observed or reused queries. This makes sure that when you update/insert/remove documents, the query does not have to re-run over the whole database but the new results will be calculated from the events. This creates a huge performance gain with zero cost.\nNOTICE:\nQueryChangeDetection is currently in beta and disabled by default.\nYou can enable it by passing the queryChangeDetection-field when creating a database.\nconst db = await RxDB.create({\n name: 'heroesdb',\n adapter: 'memory',\n queryChangeDetection: true // \nUse-case-example\nImagine you have a very big collection with many user-documents. At your page you want to display a toplist with users which have the most points and are currently logged in.\nYou create a query and subscribe to it.\nconst query = usersCollection.find().where('loggedIn').eq(true).sort('points');\nquery.$.subscribe(users => {\n document.querySelector('body').innerHTML = users\n .reduce((prev, cur) => prev + cur.username+ '', '');\n});\n\nAs you may detect, the query can take a very long time to run because you have thousands of users in the collection.\nThen, when a user logs off, the whole query will re-run over the database which takes a really long time yet again.\nanyUser.loggedIn = false;\nawait anyUser.save();\n\nBut not with QueryChangeDetection enabled.\nNow, when one user logs off, it will calculate the new results from the current results plus the RxChangeEvent. This can often be done in-memory without making IO-requests to the storage-engine. QueryChangeDetection not only works on subscribed queries, but also when you do multiple .exec()'s on the same query.\n\nIf you are new to RxDB, you should continue here\n"},"in-memory.html":{"url":"in-memory.html","title":"InMemory","keywords":"","body":"InMemory Collections\nWhen you do a heavy amount of operations on a RxCollection, you might want to optimize this by using the in-memory-replication of the collection. The in-memory-replication behaves equal to the original collection but is stored in the Memory of your computer instead of the hard drive. It inherits the statics of the original collection, but not its hooks -so you should register them separately in the case you'd want them to apply.\nPros:\n\nFaster queries\nFaster writes\nQuerying works over encrypted fields\n\nCons:\n\nThe original collection has to be small enough to fit into the memory\nNo attachment-support\nInitial creation takes longer (all data is loaded from disc into the memory)\n\nencryption\nEncrypted fields are automatically decrypted inside of the memory-collection. This means you can do queries over encrypted fields.\nreplication\nThe memory-collection is two-way-replicated with its original collection. This means when you change documents on one of them, the update and the change-event will fire on both.\nRxCollection().inMemory();\nReturns a promise that resolves with another RxCollection that is the in-memory-replicated version of the original collection. The memory-collection has the same documents as it's parent and also shares the same event-stream.\n\n// IMPORTANT: You have to add the memory-adapter before you can use inMemory-Collections\n// RUN 'npm install pouchdb-adapter-memory --save'\nimport PouchAdapterMemory from 'pouchdb-adapter-memory';\nRxDB.plugin(PouchAdapterMemory);\n\nconst memCol = await myCollection.inMemory();\n\n// now u can use memCol as it would be myCollection\nconst docs = await memCol.find().exec(); // has same result as on the original collection\n\nRxCollection().awaitPersistence()\nWhen you do a write into the inMemoryCollection, it takes some time until the change is replicated at the parents collections.\nTo know when you can be sure that all writes have been replicated, call awaitPersistence()\nconst memCol = await myCollection.inMemory();\n\nawait memCol.insert({foo: 'bar'});\n\nawait memCol.awaitPersistence(); // after this you can be sure that everything is replicated\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-local-document.html":{"url":"rx-local-document.html","title":"LocalDocuments","keywords":"","body":"Local Documents\nLocal documents are a special class of documents which are used to store local metadata.\nThey come in handy when you want to store settings or additional data next to your documents.\n\nLocal Documents can exist on RxDatabase or RxCollection\nLocal Document do not have to match the collections schema\nLocal Documents do not get replicated\nLocal Documents will not be found on queries\nLocal Documents can not have attachments\nLocal Documents will not get handled by the data-migration\n\ninsertLocal()\nCreates a local document for the database or collection. Throws if a local document with the same id already exists. Returns a Promise which resolves the new RxLocalDocument.\nconst localDoc = await myCollection.insertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\n// you can also use local-documents on a database\nconst localDoc = await myDatabase.insertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\nupsertLocal()\nCreates a local document for the database or collection if not exists. Overwrites the if exists. Returns a Promise which resolves the RxLocalDocument.\nconst localDoc = await myCollection.upsertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\ngetLocal()\nFind a RxLocalDocument by it's id. Returns a Promise which resolves the RxLocalDocument or null if not exists.\nconst localDoc = await myCollection.getLocal('foobar');\n\nRxLocalDocument\nA RxLocalDocument behaves like a normal RxDocument.\nconst localDoc = await myCollection.getLocal('foobar');\n\n// access data\nconst foo = localDoc.get('foo');\n\n// change data\nlocalDoc.set('foo', 'bar2');\nawait localDoc.save();\n\n// observe data\nlocalDoc.get$('foo').subscribe(value => { /* .. */ });\n\n// remove it\nawait localDoc.remove();\n\nNOTICE: Because the local document does not have a schema, accessing the documents data-fields via pseudo-proxy will not work.\nconst foo = localDoc.foo; // undefined\nconst foo = localDoc.get('foo'); // works!\n\nlocalDoc.foo = 'bar'; // does not work!\nlocalDoc.set('foo', 'bar'); // works\n\n\nIf you are new to RxDB, you should continue here\n"},"custom-build.html":{"url":"custom-build.html","title":"Custom Build","keywords":"","body":"Custom Build\nBy default, if you import RxDB into your javascript, a full batteries-included build will be imported. This has the advantage that you don't have to choose which things you need and which not. The disadvantage is the build-size. Often you don't need most of the functionality and you could save a lot of bandwidth by cherry-picking only the things you really need. For this, RxDB supports custom builds.\nCore\nThe core-module is the part of RxDB which is always needed to provide basic functionality. If you need a custom build, you start with the core and then add all modules that you need.\n// es6-import\nimport RxDB from 'rxdb/plugins/core';\n\n// es5-require\nconst RxDB = require('rxdb/plugins/core');\n\nrequired modules\nSome parts of RxDB are not in the core, but are required. This means they must always be overwrite by at least one plugin.\nvalidate\nThe validation-module does the schema-validation when you insert or update a RxDocument. To use RxDB you always have to add a validation-module.\nThis one is using is-my-json-valid but you can also use your own validator instead. To import the default validation-module, do this:\n// es6-import\nimport RxDBValidateModule from 'rxdb/plugins/validate';\nRxDB.plugin(RxDBValidateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/validate'));\n\najv-validate\nAnother validation-module that does the schema-validation. This one is using ajv as validator which is a bit faster. Better compliant to the jsonschema-standart but also has a bigger build-size.\n// es6-import\nimport RxDBAjvValidateModule from 'rxdb/plugins/ajv-validate';\nRxDB.plugin(RxDBAjvValidateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/ajv-validate'));\n\nvalidate-z-schema\nBoth is-my-json-valid and ajv-validate use eval() to perform validation which might not be wanted when 'unsafe-eval' is not allowed in Content Security Policies. This one is using z-schema as validator which doesn't use eval.\n// es6-import\nimport RxDBZSchemaValidateModule from 'rxdb/plugins/validate-z-schema';\nRxDB.plugin(RxDBZSchemaValidateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/validate-z-schema'));\n\nno-validate\nA validation module that does nothing at handles all data as valid. Use this as an alternative for the normal validator when you can rely on the input of the database.\nThis is meant for production to reduce the build-size, do not use this in dev-mode.\n// es6-import\nimport RxDBNoValidateModule from 'rxdb/plugins/no-validate';\nRxDB.plugin(RxDBNoValidateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/no-validate'));\n\noptional modules\nSome modules are optional and only needed if you use their functionality.\nerror-messages\nBecause error-messages are hard to compress, RxDB will throw error-codes by default. In development you should always include this plugin so full messages will be thrown.\n// es6-import\nimport RxDBErrorMessagesModule from 'rxdb/plugins/error-messages';\nRxDB.plugin(RxDBErrorMessagesModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/error-messages'));\n\nschema-check\nThe schemacheck-module does additional checks on your jsonschema before you create a RxCollection. This ensure that your collection-schema is correctly working with rxdb. You should always enable this plugin on dev-mode.\n// es6-import\nimport RxDBSchemaCheckModule from 'rxdb/plugins/schema-check';\nRxDB.plugin(RxDBSchemaCheckModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/schema-check'));\n\nreplication\nAdds the replication-functionality to RxDB which allows you to replicate the database with a CouchDB compliant endpoint.\n// es6-import\nimport RxDBReplicationModule from 'rxdb/plugins/replication';\nRxDB.plugin(RxDBReplicationModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/replication'));\n\nreplication-graphql\nAllows you to do a replication with a GraphQL endpoint.\nSee: Replication with GraphQL\n// es6-import\nimport RxDBReplicationGraphQL from 'rxdb/plugins/replication-graphql';\nRxDB.plugin(RxDBReplicationGraphQL);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/replication-graphql'));\n\nattachments\nAdds the attachments-functionality to RxDB.\n// es6-import\nimport RxDBAttachmentsModule from 'rxdb/plugins/attachments';\nRxDB.plugin(RxDBAttachmentsModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/attachments'));\n\nin-memory\nAdds the in-memory-replication to the collections.\n// es6-import\nimport RxDBInMemoryModule from 'rxdb/plugins/in-memory';\nRxDB.plugin(RxDBInMemoryModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/in-memory'));\n\nlocal-documents\nAdds the local-documents to the collections and databases.\n// es6-import\nimport RxDBLocalDocumentsModule from 'rxdb/plugins/local-documents';\nRxDB.plugin(RxDBLocalDocumentsModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/local-documents'));\n\njson-dump\nAdds the json import/export-functionality to RxDB.\n// es6-import\nimport RxDBJsonDumpModule from 'rxdb/plugins/json-dump';\nRxDB.plugin(RxDBJsonDumpModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/json-dump'));\n\nkey-compression\nThe keycompressor-module is needed when you have keyCompression enabled. This is done by default so make sure that you set disableKeyCompression to true when you do not have this module.\n// es6-import\nimport RxDBKeyCompressionModule from 'rxdb/plugins/key-compression';\nRxDB.plugin(RxDBKeyCompressionModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/key-compression'));\n\nleader-election\nThe leaderelection-module is needed when want to use the leaderelection.\n// es6-import\nimport RxDBLeaderElectionModule from 'rxdb/plugins/leader-election';\nRxDB.plugin(RxDBLeaderElectionModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/leader-election'));\n\nencryption\nThe encryption-module is using crypto-js and is only needed when you create your RxDB-Database with a password.\n// es6-import\nimport RxDBEncryptionModule from 'rxdb/plugins/encryption';\nRxDB.plugin(RxDBEncryptionModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/encryption'));\n\nupdate\nThe update-module is only required when you use RxDocument.update or RxQuery.update.\n// es6-import\nimport RxDBUpdateModule from 'rxdb/plugins/update';\nRxDB.plugin(RxDBUpdateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/update'));\n\nwatch-for-changes\nWhen you write data on the internal pouchdb of a collection, by default the changeEvent will not be emitted to RxDB's changestream.\nThe watch-for-changes plugin lets you tell the collection to actively watch for changes on the pouchdb-instance whose origin is not RxDB.\nThis plugin is used internally by the replication-plugin and the in-memory-plugin.\n// es6-import\nimport RxDBWatchForChangesModule from 'rxdb/plugins/watch-for-changes';\nRxDB.plugin(RxDBWatchForChangesModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/watch-for-changes'));\n\n// you can now call this once and then do writes on the pouchdb\nmyRxCollection.watchForChanges();\n\n// now write sth on the pouchdb\nmyRxCollection.pouch.put({/* ... */});\n\nadapter-check\nThis module add the checkAdapter-function to RxDB.\n// es6-import\nimport RxDBAdapterCheckModule from 'rxdb/plugins/adapter-check';\nRxDB.plugin(RxDBAdapterCheckModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/adapter-check'));\n\nserver\nSpawns a couchdb-compatible server from a RxDatabase. Use this to replicate data from your electron-node to the browser-window. Or to fast setup a dev-environment.\nSee: Tutorial: Using the RxDB Server-Plugin\nDo never expose this server to the internet, use a couchdb-instance at production.\n// run 'npm install express-pouchdb' before you use this plugin\n\n// This plugin is not included into the default RxDB-build. You have to manually add it.\nimport RxDBServerModule from 'rxdb/plugins/server';\nRxDB.plugin(RxDBServerModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/server'));\n\n\nIf you are new to RxDB, you should continue here\n"},"plugins.html":{"url":"plugins.html","title":"Plugins","keywords":"","body":"Plugins\nCreating an own plugin is very simple. A plugin is basically an javascript-object which overwrites or extends RxDB's internal classes, prototypes and hooks.\nA basic plugins:\n\nconst myPlugin = {\n rxdb: true, // this must be true so rxdb knows that this is a rxdb-plugin and not a pouchdb-plugin\n /**\n * every value in this object can manipulate the prototype of the keynames class\n * You can manipulate every prototype in this list:\n * @link https://github.com/pubkey/rxdb/blob/master/src/plugin.ts#L22\n */\n prototypes: {\n /**\n * add a function to RxCollection so you can call 'myCollection.hello()'\n *\n * @param {object} prototype of RxCollection\n */\n RxCollection: (proto) => {\n proto.hello = function(){\n return 'world';\n };\n }\n },\n /**\n * some methods are static and can be overwritten in the overwriteable-object\n */\n overwritable: {\n validatePassword: function(password) {\n if (password && typeof password !== 'string' || password.length \nProperties\nrxdb\nThe rxdb-property signals that this plugin is and rxdb-plugin and not a pouchdb-plugin. The value should always be true.\nprototypes\nThe prototypes-property contains a function for each of RxDB's internal prototype that you want to manipulate. Each function gets the prototype-object of the corresponding class as parameter and than can modify it. You can see a list of all available prototypes here\noverwritable\nSome of RxDB's functions are not inside of a class-prototype but are static. You can set and overwrite them with the overwritable-object. You can see a list of all overwriteables here.\nhooks\nSometimes you don't want to overwrite an existing RxDB-method, but extend it. You can do this by adding hooks which will be called each time the code jumps into the hooks corresponding call. You can find a list of all hooks here here.\noptions\nRxDatabase and RxCollection have an additional options-parameter, which can be filled with any data required be the plugin.\nconst collection = myDatabase.collection({\n name: 'foo'.\n schema: mySchema,\n options: { // anything can be passed into the options\n foo: ()=>'bar'\n }\n})\n\n// Afterwards you can use theses options in your plugin.\n\ncollection.options.foo(); // 'bar'\n\n\nIf you are new to RxDB, you should continue here\n"},"adapters.html":{"url":"adapters.html","title":"Adapters","keywords":"","body":"Adapters\nRxDB itself is not a self-contained database. It uses adapters that define where the data is stored. Depending on which environment you work in, you can choose between different adapters. For example in the browser you want to store the data inside of IndexedDB but on NodeJs you want to store the data on the filesystem.\nThis page is an overview over the different adapters with recommendations on what to use where.\nPlease always ensure that your pouchdb adapter-version is the same as pouchdb-core in the rxdb package.json. Otherwise you might have strange problems\nAny environment\nMemory\nIn any environment, you can use the memory-adapter. It stores the data in the javascript runtime memory. This means it is not persistent and the data is lost when the process terminates.\nUse this adapter when:\n\nYou want to have a really good performance\nYou do not want persistent state, for example in your test suite\n\n// npm install pouchdb-adapter-memory --save\nRxDB.plugin(require('pouchdb-adapter-memory'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'memory' // the name of your adapter\n});\n\nMemdown\nWith RxDB you can also use adapters that implement abstract-leveldown like the memdown-adapter.\n// npm install memdown --save\n// npm install pouchdb-adapter-leveldb --save\nRxDB.plugin(require('pouchdb-adapter-leveldb')); // leveldown adapters need the leveldb plugin to work\n\nconst memdown = require('memdown');\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: memdown // the full leveldown-module\n});\n\nBrowser\nIndexedDB\nThe IndexedDB adapter stores the data inside of IndexedDB use this in browsers environments as default.\n// npm install pouchdb-adapter-idb --save\nRxDB.plugin(require('pouchdb-adapter-idb'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'idb' // the name of your adapter\n});\n\nWebsql\nThis adapter stores the data inside of websql. It has a different performance behavior. Websql is deprecated. You should not use the websql adapter unless you have a really good reason.\n// npm install pouchdb-adapter-websql --save\nRxDB.plugin(require('pouchdb-adapter-websql'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'websql' // the name of your adapter\n});\n\nNodeJS\nleveldown\nThis adapter uses a LevelDB C++ binding to store that data on the filesystem. It has the best performance compared to other filesystem adapters. This adapter can not be used when multiple nodejs-processes access the same filesystem folders for storage.\n// npm install leveldown --save\n// npm install pouchdb-adapter-leveldb --save\nRxDB.plugin(require('pouchdb-adapter-leveldb')); // leveldown adapters need the leveldb plugin to work\nconst leveldown = require('leveldown');\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: leveldown // the full leveldown-module\n});\n\nNode-Websql\nThis adapter uses the node-websql-shim to store data on the filesystem. It's advantages are that it does not need a leveldb build and it can be used when multiple nodejs-processes use the same database-files.\n// npm install pouchdb-adapter-node-websql --save\nRxDB.plugin(require('pouchdb-adapter-node-websql'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'websql' // the name of your adapter\n});\n\nReact-Native\nasyncstorage\nUses react-native's asyncstorage.\n// npm install pouchdb-adapter-asyncstorage --save\nRxDB.plugin(require('pouchdb-adapter-asyncstorage'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'node-asyncstorage' // the name of your adapter\n});\n\nreact-native-sqlite\nUses ReactNative SQLite as storage. Claims to be much faster than the asyncstorage adapter.\nTo use it, you have to do some steps from this tutorial.\nFirst install pouchdb-adapter-react-native-sqlite and react-native-sqlite-2.\nnpm install pouchdb-adapter-react-native-sqlite react-native-sqlite-2\n\nThen you have to link the library.\nreact-native link react-native-sqlite-2\n\nYou also have to add some polyfills which are need but not included in react-native.\nnpm install base-64 events\n\nimport {decode, encode} from 'base-64'\n\nif (!global.btoa) {\n global.btoa = encode;\n}\n\nif (!global.atob) {\n global.atob = decode;\n}\n\n// Avoid using node dependent modules\nprocess.browser = true;\n\nThen you can use it inside of your code.\nimport * as RxDB from 'rxdb';\nimport SQLite from 'react-native-sqlite-2'\nimport SQLiteAdapterFactory from 'pouchdb-adapter-react-native-sqlite'\n\nconst SQLiteAdapter = SQLiteAdapterFactory(SQLite)\n\nRxDB.plugin(SQLiteAdapter);\nRxDB.plugin(require('pouchdb-adapter-http'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'react-native-sqlite' // the name of your adapter\n});\n\nasyncstorage-down\nA leveldown adapter that stores on asyncstorage.\n// npm install pouchdb-adapter-asyncstorage-down --save\nRxDB.plugin(require('pouchdb-adapter-leveldb')); // leveldown adapters need the leveldb plugin to work\n\nconst asyncstorageDown = require('asyncstorage-down');\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: asyncstorageDown // the full leveldown-module\n});\n\nCordova / Phonegap\ncordova-sqlite\nUses cordova's global cordova.sqlitePlugin.\n// npm install pouchdb-adapter-cordova-sqlite --save\nRxDB.plugin(require('pouchdb-adapter-cordova-sqlite'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'node-cordova-sqlite' // the name of your adapter\n});\n\n\nIf you are new to RxDB, you should continue here\n"},"tutorials/typescript.html":{"url":"tutorials/typescript.html","title":"Use RxDB with Typescript","keywords":"","body":"Using RxDB with TypeScript\n\nIn this tutorial you learn how to use RxDB with TypeScript.\nWe will create a basic database with one collection and several ORM-methods, fully typed!\nRxDB directly comes with it's typings and you do not have to install anything else.\nOur way to go is\n\nFirst define how the documents look like\nThen define how the collections look like\nThen define how the database looks like\n\nDeclare the types\nFirst you import the types from RxDB.\nimport RxDB, {\n RxDatabase,\n RxCollection,\n RxJsonSchema,\n RxDocument\n} from 'rxdb';\n\nThen you can declare the base-type for your document. The base-type is basically the typescript-representation of the jsonschema of the collection. If you have many collections, you could also generate the base-type with json-schema-to-typescript\ntype HeroDocType = {\n passportId: string;\n firstName: string;\n lastName: string;\n age?: number; // optional\n};\n\nWe also add some ORM-methods for the document.\ntype HeroDocMethods = {\n scream: (v: string) => string;\n};\n\nWe can merge these into our HeroDocument.\ntype HeroDocument = RxDocument;\n\nNow we can define type for the collection which contains the documents.\n\n// we declare one static ORM-method for the collection\ntype HeroCollectionMethods = {\n countAllDocuments: () => Promise;\n}\n\n// and then merge all our types\ntype HeroCollection = RxCollection;\n\nBefore we can define the database, we make a helper-type which contains all collections of it.\ntype MyDatabaseCollections = {\n heroes: HeroCollection\n}\n\nNow the database.\ntype MyDatabase = RxDatabase;\n\nUsing the types\nNow that we have declare all our types, we can use them.\n\n/**\n * create database and collections\n */\nconst myDatabase: MyDatabase = await RxDB.create({\n name: 'mydb',\n adapter: 'memory'\n});\n\nconst heroSchema: RxJsonSchema = {\n title: 'human schema',\n description: 'describes a human being',\n version: 0,\n keyCompression: true,\n type: 'object',\n properties: {\n passportId: {\n type: 'string',\n primary: true\n },\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer'\n }\n },\n required: ['firstName', 'lastName']\n};\n\nconst heroDocMethods: HeroDocMethods = {\n scream: function(this: HeroDocument, what: string) {\n return this.firstName + ' screams: ' + what.toUpperCase();\n }\n};\n\nconst heroCollectionMethods: HeroCollectionMethods = {\n countAllDocuments: async function(this: HeroCollection) {\n const allDocs = await this.find().exec();\n return allDocs.length;\n }\n};\n\nawait myDatabase.collection({\n name: 'heroes',\n schema: heroSchema,\n methods: heroDocMethods,\n statics: heroCollectionMethods\n});\n\n// add a preInsert-hook\nmyDatabase.heroes.postInsert(\n function myPostInsertHook(\n this: HeroCollection, // own collection is bound to the scope\n docData, // documents data\n doc // RxDocument\n ) {\n console.log('insert to ' + this.name + '-collection: ' + doc.firstName);\n },\n false // not async\n);\n\n/**\n * use the database\n */\n\n// insert a document\nconst doc: HeroDocument = await myDatabase.heroes.insert({\n passportId: 'myId',\n firstName: 'piotr',\n lastName: 'potter',\n age: 5\n});\n\n// access a property\nconsole.log(doc.firstName);\n\n// use a orm method\ndoc.scream('AAH!');\n\n// use a static orm method from the collection\nconst amount: number = await myDatabase.heroes.countAllDocuments();\nconsole.log(amount);\n\n\n/**\n * clean up\n */\nmyDatabase.destroy();\n\n\nIf you are new to RxDB, you should continue here\n"},"tutorials/server.html":{"url":"tutorials/server.html","title":"Using the Server Plugin","keywords":"","body":"Using the Server Plugin\nIn this tutorial you learn how to use the server plugin and replicate data from a node-process to the client.\nThe server plugin is usefull\n\nTo simulate the couchdb in developer-mode without setting up a real one\nTo replicate data between the renderer and the node-process in an electron-app\nTo fast spin up a prototype-app without having to define an API\n\nIt shell never be used open accessible to the internet, use a couchdb-instance at production.\nIn NodeJs\nBecause the server plugin only works in node, it is not part of the default rxdb-build. You have to import it before you can use it.\nimport RxDB from 'rxdb';\n\n// add the server-plugin\nimport RxDBServerPlugin from 'rxdb/plugins/server';\nRxDB.plugin(RxDBServerPlugin);\n\n// add the memory-adapter\nimport * as MemoryAdapter from 'pouchdb-adapter-memory';\nRxDB.plugin(MemoryAdapter);\n\nYou also have to install the module express-pouchdb which does not come with RxDB.\n npm install express-pouchdb --save\n\nNow we can create a database and a collection.\n// create database\nconst db = await RxDB.create({\n name: 'mydb',\n adapter: 'memory'\n});\n\n// create collection\nconst mySchema = {\n version: 0,\n type: 'object',\n properties: {\n key: {\n type: 'string',\n primary: true\n },\n value: {\n type: 'string'\n }\n }\n};\nawait db.collection({\n name: 'items',\n schema: mySchema\n});\n\n// insert one document\nawait db.items.insert({\n key: 'foo',\n value: 'bar'\n});\n\nNow we can spawn the server.\nconst {app, server} = db.server({\n path: '/db', // (optional)\n port: 3000, // (optional)\n cors: true, // (optional), enable CORS-headers\n startServer: true // (optional), start express server\n});\n\nTo ensure that everything is ok,\n\nOpen http://localhost:3000/db to get the database-info\nOpen http://localhost:3000/db/items to get the collection-info\n\nServer as a part of bigger Express app\nYou can create server without starting it. It allows to use server as a part of bigger Express app.\nconst {app, server} = db.server({\n path: '/', // omitted when startServer is false and force set to /\n port: 3000, // omitted when startServer is false\n cors: false, // disable CORS-headers (default) - you probably want to configure CORS in your main app\n startServer: false // do not start express server\n});\n\nThen you can mount rxdb server express app in your express app\nconst {app, server} = db.server({\n startServer: false\n});\nconst mainApp = express();\n\n// configure CORS, other middlewares...\n\nmainApp.use('/db', app);\nmainApp.use('/', (req, res) => res.send('hello'));\nmainApp.listen(3000, () => console.log(`Server listening on port 3000`));\n\nTo ensure that everything is ok,\n\nOpen http://localhost:3000/db to get the database-info\nOpen http://localhost:3000/db/items to get the collection-info\n\nOn the client\nOn the client you can now also create a database and replicate it with our server.\nStart with creating the database and collection.\nimport RxDB from 'rxdb';\n\n// we need the http-plugin to relicate over http\nimport * as PouchHttpPlugin from 'pouchdb-adapter-http';\nRxDB.plugin(PouchHttpPlugin);\n\n\nconst clientDB = await RxDB.create({\n name: 'clientdb',\n adapter: 'memory'\n});\n\n// create a collection\nawait clientDB.collection({\n name: 'items',\n schema: mySchema\n});\n\nNow you replicate the client collection with the server.\nclientDB.items.sync({\n remote: 'http://localhost:3000/db/items'\n});\n\nAfter the replication worked, the client has the same document.\nconst docs = await clientDB.items.find().exec();\n\n\nIf you are new to RxDB, you should continue here\n"},"questions-answers.html":{"url":"questions-answers.html","title":"Questions & Answers","keywords":"","body":"Questions and answers\nCan't change the schema\nWhen you make changes to the schema of a collection, you sometimes can get an error like\nError: collection(): another instance created this collection with a different schema.\nThis means you have created a collection before and added document-data to it.\nWhen you now just change the schema, it is likely that the new schema does not match the saved documents inside of the collection.\nThis would cause strange bugs and would be hard to debug, so RxDB check's if your schema has changed and throws an error.\nTo change the schema in production-mode, do the following\n\nIncrease the version by 1\nAdd the appropriate migrationStrategies so the saved data will be modified to match the new schema\n\nIn development-mode, the schema-change can be simplified by one of these strategies:\n\nUse the memory-adapter so your db resets on restart and your schema is not safed permanently\nCall RxDB.removeDatabase('mydatabasename', 'adapter'); before creating a new RxDatabase-instance\nAdd a timestamp as suffix to the database-name to create a new one each run like name: 'heroesDB' + new Date().getTime()\n\n"},"contribute.html":{"url":"contribute.html","title":"Contribute","keywords":"","body":"Contribution\nWe are open to, and grateful for, any contributions made by the community.\nDeveloping\nRequirements\nBefore you can start developing, do the following:\n\nMake sure you have installed nodejs with version 7 or higher\nClone the repository git clone https://github.com/pubkey/rxdb.git\nInstall the dependencies cd rxdb && npm install\nMake sure that the tests work for you npm run test\n\nFlow\nWhile developing you should run npm run dev and leave it open in the console. This will run the unit-tests on every file-change. If you have a slow device, you can also manually run npm run test:node every time you want to check if the tests work.\nAdding tests\nBefore you start creating a bugfix or a feature, you should create a test to reproduce it. Tests are in the test/unit-folder.\nIf you want to reproduce a bug, you can modify the test in this file.\nMaking a PR\nIf you make a pull-request, ensure the following:\n\nEvery feature or bugfix must be committed together with a unit-test which ensures everything works as expected.\nDo not commit build-files (anything in the dist-folder)\nBefore you add non-trivial changes, create an issue to discuss if this will be merged and you don't waste your time.\nTo run the unit and integration-tests, do npm run test and ensure everything works as expected\n\nGetting help\nIf you need help with your contribution, ask at gitter.\nDocs\nThe source of the documentation is at the docs-src-folder.\nTo read the docs locally, run npm run docs docs:install && npm run docs:serve and open http://localhost:4000/\nThank you for contributing!\n"}}} \ No newline at end of file +{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["(short",">","alway","app","applic","apps,","base","chang","compliant","couchdb","current","databas","database)","display","document.","electron","endpoint","endpoints.","even","field","graphql","here.","hybrid","introduct","javascript","mean","new","nodejs.","nosql","queri","reactiv","realtim","replic","result","rxdb","rxdb,","singl","start","state","state,","subscrib","ui","us","user.","websites,"],"install.html":["\"dependencies\":","\"git+https://git@github.com/pubkey/rxdb.git#commithash\"","\"rxdb\":","'rxdb';","//","=","@babel/polyfil","add","babel","before.","browsers.","build","code","code.","commit.","commithash","commonj","continu","depend","develop","es5.","es6","es8","exampl","file:","git","hash","here","import","instal","javascript","latest","mean","need","new","npm","older","package.json,","package.json.","peer","polyfil","polyfills,","releas","replac","require('@babel/polyfill');","require('rxdb');","run:","rxdb","rxdb,","rxj","save","state","support","transpil","us","var","with:","{","}"],"rx-database.html":["$","'heroesdb',","'idb'","'localstorage');","'mydatabase',","'websql',","(optional)","(optional=false)","(optional=true)","*/).then(()",".create()",".then(()",".then(json","/*","//","12","=","=>","actual","ad","adapt","adapter,","adapter.","adapter:","advantag","affect","allow","app","app,","app.","assum","asynchron","at.","await","becom","befor","between","browsers,","browsers:","call","case","chang","characters.","check","checkadapter()","cleanup","code","collect","common","compat","console.dir(changeevent));","console.dir(json));","console.dir(ok);","console.log('done'));","const","contain","continu","cordova","couchdb","cpu.","creat","creation","current","data","data.","databas","database,","database.","db","db1","db2","decrypt","defin","depend","destroy","destroy()","destroyed.","differ","directli","document.","done","dump","dump()","each","elect","electron","emptydatabase.importdump(json)","enabl","encrypt","environ","environment.","equal","error","event","events.","exampl","explicitli","export","fals","field","folder","follow","free","function","function.","given","gone","handl","here","idb'));","identifi","idl","idle.","ignoredupl","ignoreduplicate:","import","importdump()","in.","indexeddb","instanc","instance.","instead","intent","isrxdatabas","it'","it.","javascript","json","leader.","learn","list","localstorage'));","main","memori","mistake,","module.","moment","more","ms","multiinst","multipl","mycollection.customcleanupfunction();","mydatabase.destroy();","mydatabase.dump()","mydatabase.dump(true)","mydatabase.remove();","mydatabase.requestidlepromise().then(()","mydatabase.requestidlepromise(1000","mydb.$.subscribe(changeev","name","name:","nativ","ness","new","nodej","not.","noth","notice:","now","object","observ","ok","on","option","other.","out","paramet","parameters:","pass","password","piec","pouchdb","pouchset","prevent","process,","promis","property.","querychangedetect","rare","react","read","remov","remove()","replications.","requestidlecallback","requestidlepromise()","resolv","return","run","runtime,","rxdatabas","rxdatabase.","rxdb","rxdb,","rxdb.checkadapter('localstorage');","rxdb.create({","rxdb.isrxdatabase(myobj);","rxdb.plugin(require('pouchdb","rxdb.removedatabase('mydatabasename',","rxj","same","semi","server","server()","serverless.","set","share","similar","singl","someth","spawn","speed","stop","storag","storage.","store","stream","string","switch","synchronis","task","tasks.","tests,","this.","through","throw","time","timeout","track","true","true,","true.","two","uniqu","unit","up","us","use.","veri","waitforleadership()","want","window","wipe","without","work","wrong.","{","});"],"rx-schema.html":["\"array\",","\"attachments\":","\"birthyear\":","\"color\":","\"damage\":","\"describ","\"description\":","\"encrypted\":","\"final\":","\"healthpoints\":","\"hero","\"items\":","\"max\":","\"maxitems\":","\"min\":","\"mysecretfield\":","\"name\":","\"number\"","\"number\",","\"object\",","\"primary\":","\"properties\":","\"required\":","\"secret\":","\"skills\":","\"string\"","\"string\",","\"title\":","\"type\":","\"uniqueitems\":","\"version\":","'heroes',","'human","'integer',","'lastname']","'object',","'string'","'string',","//","0","0,","0.","100","1900,","20","2050","5","5,","8.0.0,","9]$","9_]*]?[a","=","[\"color\"],","['firstname',","^[a","access","accident","ad","add","additionalproperti","advantages:","age:","allow","alway","amount","anyway","array","attach","attribut","attribute.","await","befor","between","birthyear","chang","change.","collect","collection,","collection.","color","compound","compoundindex","compression',","conform","console.dir(mydatabase.heroes.name);","const","contain","continu","creat","damag","data","database,","default","default.","default:","defin","definit","definition.","detection,","dev","disabl","disk","document","document,","document.","don't","done","enabl","encrypt","encrypted,","encrypted.","encrypted:","ensur","error","even","everyth","exampl","example,","false.","field","fieldnam","fieldnames,","fields.","fill","final","final,","final:","find","first","firstname:","follow","getter","greater","healthpoint","here","hero","hero\",","hero.","huge","improv","index","index,","index:","indexed,","indexes,","insert","insid","instantli","integ","internally,","invalid","it.","json","jsonschema","keycompress","keycompression:","know","lastname:","later.","level","looks.","make","map","match","maximum","mean","migrationstrategi","modifi","mydatabase.collection({","myheroschema","myschema","name","name:","nest","new","notic","notice:","number","number,","object","objects.","observ","options.","over","pass","per","perform","popul","primary,","primary.","projects.","properti","properties:","provid","queri","regex","requir","required.","required:","run","rxattachment.","rxdb","rxdb,","rxdocument,","rxschema","save","schema","schema\",","schema.","schema.org.","schema:","schemawithdefaultag","schemawithfinalag","schemawithindex","secondari","secret","see","sens","set","settings:","simpl","singl","skill","space.","spec","standard","start","store","store.","string","string,","support","sure","team","temporari","therefor","things.","throw","title:","top","true","true,","type","type:","unencrypt","unique,","unset","us","valid","valu","value.","values.","version","version:","whenev","within","worry,","written","z0","z][[a","za","{","}","});","},","};"],"rx-collection.html":["$","'bar'","'bar1'","'bar2'","'bob'","'bob',","'foo',","'foo1',","'foo2',","'heroes',","'humans',","'kelso'","'kelso';","(optional)",".collection()",".exec().then(doc",".exec();",".find()",".gt(18)",".insert()",".then(()",".then(collect",".then(json",".upsert()",".where('age')","//","18","409","77;","9]*$.","=","==","=>",">","[]","[rxdocument,","^[a","abov","allow","appli","array.","atom","atomicupsert()","attach","attachments,","attachments:","attribut","automat","automigr","automigrate:","await","basic","befor","behavior","belong","between","bulk","bulkinsert","bulkinsert()","call","chang","collect","collection'","collection,","collection.","collection2","collection2);","conflict","console.dir(changeevent));","console.dir(collection));","console.dir(doc));","console.dir(json));","console.log('done'));","console.log(collect","const","continu","couchdb","creat","custom","data","data.","databas","database,","database.","database:","db.collection({","db.heroes;","db['heroes']","decrypt","defin","destroy","destroy()","differ","directli","doc","docdata","document","document,","document.","documents,","documents.","does,","done.","dump","dump()","each","easily.","encrypt","error","error.","error:","errors,","especi","event","execut","exist","expect","export","fail","failur","fals","faster","field","fields.","fill","find","find()","findone()","finish","firstname:","follow","form","free","full","function","function.","generated.","given","handled.","help","here","here.","ident","identifi","import","importdump()","insert","insert$","insert()","insert.","inserted.","instanc","instance.","isrxcollect","it.","javascript","json","known","last","lastname:","later","look","mani","match","mean","memori","method","method.","methods:","migrat","migration.","migrationstrategi","migrationstrategies:","mirgrat","more","much","multipl","mycollect","mycollection.$.subscribe(changeev","mycollection.atomicupsert(docdata);","mycollection.bulkinsert([{","mycollection.destroy();","mycollection.dump()","mycollection.dump(true)","mycollection.findone('foo')","mycollection.findone().where('name').eq('foo')","mycollection.importdump(json)","mycollection.insert$.subscribe(changeev","mycollection.insert({","mycollection.newdocument({","mycollection.remove$.subscribe(changeev","mycollection.remove();","mycollection.update$.subscribe(changeev","mycollection.upsert(docdata);","mycollection.upsert({","mydatabase.collection({","myschema","myschema,","name","name.","name:","name:foobar","need","never","new","newdocument()","newli","not.","notice:","now","object","observ","older","olderdocu","once,","oper","operations.","option","optional.","options:","orm","orm/drm.","otherwis","overwrit","overwritten","paramet","paramt","parrallel","pass","plugin","pouchdb","pouchset","pouchsettings:","prefil","prevent","previou","primari","primary,","property.","protocol.","queri","re","refind","regex:","remot","remov","remove$","remove()","replic","replications.","result","return","run","running.","rxcollect","rxcollection.","rxcollection.newdocument(initaldata).","rxcollections,","rxdatabas","rxdb,","rxdb.isrxcollection(myobj);","rxdocument","rxdocument.","rxdocument.atomicupdate.","rxdocument],","rxj","rxquery.find().","rxschema","rxschema.","same","save","schema","schema:","schemas,","schemaversions.","see","server","set","short","similar","simpl","singl","sometim","spawn","specifi","standard","statics,","statics:","still","stop","store","stream","success","success:","support","sync","sync()","tempdoc","tempdoc.ag","tempdoc.lastnam","tempdoc.save();","temporari","through","throw","times.","timespan,","transform","tri","true","true,","two","type","type.","uniqu","until","up","updat","update$","upsert","upsert()","us","valid","valu","veri","version","versions.","wait","want","within","work","z0","z][a","{","{}","{},","}","})","});","},","};","}]);"],"rx-document.html":["$","$inc:","$set:","'","'bar'","'carolina',","'foo',","'foobar'","'foobar');","'foobar';","'foobar2'","'foobar2');","'foobar2';","'foooobarnew'","'foooobarnew';","'gibson',","'h1rg9ugdd30o',","'name","'name'","'steve');","(olddata)","(via","*/","+","...",".find()",".insert()",".save()",".subscribe(changeev",".subscribe(newnam","/*","//","1","1;","3.","33","=","=>",">","_deleted:tru","access","ag","age:","anyth","assign","atomicset()","atomicupd","atomicupdate()","attribute.","automat","await","base","befor","belong","boolean","bound","call","chang","changed.","changeev","changefunct","changes.","collection'","collection,","collection.","compar","console.dir(changeevent));","console.dir(documents));","console.dir(isname);","console.dir(json);","console.log('nam","console.log(laststate);","console.log(mydocument.deleted);","console.log(mydocument.get('firstname'));","console.log(mydocument.name);","console.log(mydocument.nested.attribute);","const","continu","current","data","databas","decrypt","delet","deleted$","deleted$.","depend","describ","directli","directly.","doc","document","document'","document,","document.","each","emit","encrypted,","event","fals","field","find","firstnam","firstname:","fistname:","foobar","function","function.","get$()","get()","getter","given","here","ident","increas","insert","inserts,","instanc","instance.","instead","is:","isnam","isname;","isrxdocu","json","jsx.","lastname:","laststat","life","mean","method","modifi","modifyjs.","mongo","mycollection.find().exec()","mycollection.insert({","mydocument.$","mydocument.atomicset('firstname',","mydocument.atomicset('name',","mydocument.atomicset('nested.attribute',","mydocument.atomicupdate(changefunction);","mydocument.deleted$.subscribe(st","mydocument.firstnam","mydocument.firstname$.subscribe(newnam","mydocument.get$('name')","mydocument.get('name');","mydocument.nam","mydocument.name;","mydocument.remove();","mydocument.save();","mydocument.set('firstname',","mydocument.tojson();","mydocument.update({","mydocument.whatever.nestedfield","mydocument.whatever.nestedfield;","mymethod.bind(mydocument)","name","name:","nest","nestedvalu","new","newname));","newname;","not.","note","notic","notice:","now","null;","object","object.","observ","observables:","olddata.ag","olddata.nam","olddata;","option","parameter.","passportid:","path","plain","pouchdb","properti","proxi","purg","queries.","record","relat","remov","remove()","result","return","returning.","rxdb,","rxdb.isrxdocument(myobj);","rxdocument","rxdocument,","rxdocument.","rxj","rxquery.","save()","see","set","set()","set).","setter","singl","state);","stefe'","steve'","storag","store","submit","syntax,","table.","take","temporari","thing","time","tojson()","transform","true","updat","update()","us","useabl","valu","value,","value.","values.","var","whether","work","{","}","});","},"],"rx-query.html":["$","$.subscribe()","$eq:","$exists:","$inc:","$or","'","'%like%'","'.*foo.*'}})","'fifoo'","'fifoofa'","'foo'","'foo'}})","'foobar',","'foofa'","'got","'i');","*/});","+","...",".exec().then(docu",".find()",".findone()",".gt(18);",".sort('age')",".where('age')",".where()","//","1","18","19","5'","6'","=","=>",">","[","[rxdocument,rxdocument,rxdocument..]","afterwards.","ag","again","age:","allow","alway","array","await","basic","behaviorsubject","call","case","chain","chang","changed.","check","collect","collection.","composit","console.dir(documents));","console.dir(results);","console.log('got","const","continu","creat","current","data","database,","database.","databases,","delet","directli","doc","docs.","document","documentdata","documents.","doesdocumentdatamatch()","eg:","emit","equival","etc...","exampl","example:","exec()","exist","extrem","fals","fast","fe:","field.","find","find()","findon","findone()","foo","found","function","given","heavi","helpful","here","id:","immut","immutable.","increas","insensit","insert","instanc","instead","isrxqueri","it,","keep","learn","less","mango","match","means,","methods.","mind","modifi","mqueri","mycollect","mycollection.find().where('age').gt(18).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').gt(18);","mycollection.find().where('age').gt(20).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').lt(18);","mycollection.find().where('name').eq('foo')","mycollection.find();","mycollection.find({$or:","mycollection.find({name:","mycollection.insert({/*","name","name:","new","normal","nosql","not.","notice:","now","null","object","object,","observ","older","on","optimis","origin","over","pass","perform","possibl","pouch","previou","promis","queri","query.","query.$.subscribe(result","query.exec();","query.remove();","query.update({","queryobject","queryobject.exec();","queryobject.sort('name');","queryobjectsort","queryobjectsort.exec();","reactiv","read","regexp","regexp('^foo$',","regexp}})","remov","remove()","removeddoc","resolv","result","result.","results.length);","results:","return","run","rxdb","rxdb,","rxdb.isrxquery(myobj);","rxdocument","rxqueri","rxquery'","rxquery,","rxquery.","same","search","see","selectors.","set","set.","shell","show","singl","sort","sql","state","statement","subscript","syntax","syntax.","this,","time.","togeth","true","ui","updat","update()","us","value.","var","without","write","written","youngest","{","{$eq:","{$regex:","}","});","},","};","}})"],"rx-attachment.html":["'cat.jpg'","'humans',","'image/jpeg'","'object',","(async)","(string)","(string|blob|buffer)",");",".","//","0,","=","=>","[];","ad","add","allattachments$","allattachments()","array","assign","attach","attachment'","attachment.","attachment.getdata();","attachment.getstringdata();","attachment.remove();","attachments,","attachments:","attributes/methods.","await","befor","better","binari","blob","blobbuff","buffer.","const","continu","data","data,","data.","db","digest","doc","document.","documents.","done.","each","emit","encrypt","encrypted:","ensur","exist.","files,","follow","get","getattachment()","getdata()","getstringdata()","here","higher","id","id,","id.","imag","length","limit","md5","mycollect","mydatabase.collection({","mydocument.allattachments$.subscribe(","mydocument.allattachments();","mydocument.getattachment('cat.jpg');","mydocument.putattachment({","myschema","name","name:","new","null","number","number.","object","observ","password","perform","pouchdb,","promis","properties:","putattachment()","quota","re","regular","remov","remove()","repres","resolv","return","rev","revis","rxattach","rxcollection.","rxdb","rxdb,","rxdocument","rxdocument.","schema","schema:","set","side","store","stream","string","string,","string.","sum","time","to.","true","true,","type","type:","us","version:","want","whatev","{","}","});","},","};"],"middleware.html":["'anyvalue';","'foobar'","'foobar',","'myfield',","()","(also","//","100));","50","50;","=","=>","action","add","ag","alreadi","another.","anyfield","async","asynchron","asynchronous.","atom","attribut","avoid","await","befor","behavior","bind","block","cach","call","case","certain","chang","clear","code.","collection.","complex","console.log(doc.myfield);","const","constructed.","continu","control","creat","custom","data","databas","database.","default","defin","delet","depend","differ","doc","document","document.","documents.","dure","emit","error('stop');","error.","event","execut","false);","field","field,","first","flexibl","follow","function","functions.","get:","getter/sett","happen","help","here","hook","hook,","hook?","hooks)","hooks:","ideas:","insert","instanc","instance.","interact","lastnam","level","lifecycl","list","logic","make","mean","middlewar","model","modifi","mongoose,","mongoose.","mycollection.findone().exec();","mycollection.postcreate(function(plaindata,","mycollection.postinsert(function(plaindata,","mycollection.postremove(function(plaindata,","mycollection.postsave(function(plaindata,","mycollection.preinsert(function(plaindata){","mycollection.preremove(function(plaindata,","mycollection.presave(function(plaindata,","nest","new","notice:","notif","object","object.defineproperty(rxdocument,","on","oper","parallel","parameter,","parameter.","pass","plain","plaindata.ag","plaindata.anyfield","post","postcreat","postinsert","postremov","postsav","pre","preinsert","preremov","presav","promise(r","promise.","receiv","remov","removed.","return","run","rxcollect","rxcollection.insert","rxdatabas","rxdb","rxdb,","rxdocument","rxdocument){","rxdocument,","rxdocument.remov","rxdocument.sav","save","saved.","schema","second","seri","set","settimeout(res,","specif","specifi","stop","structur","support","sure","synchron","task","therefor","throw","trigger","true);","updat","us","usag","valid","valu","want","way","whenev","whole","written","{","});","},"],"orm.html":["'","'!!';","'aaah!!'","'aaah!!';","'cat.txt',","'heroes'","'heroes',","'i","'meow","'skeletor'","'text/plain'","+","//","=","add","attach","attachments:","await","behavior","call","capabl","collect","collection.","collection:","collections.","console.log(attachment.scream());","console.log(doc.scream());","console.log(doc.whoami());","console.log(heroes.scream());","console.log(heroes.whoami());","const","contain","continu","creat","data","data:","defin","doc","doc.putattachment({","document","function","function(){","functions,","here","hero","heroes.findone().exec();","heroes.insert({","id:","instanc","keyword","keyword:","kitty',","map","method","methods:","mongoose,","mydatabase.collection({","myschema,","name:","names.","new","object","orm","orm/drm","pass","relat","resolv","return","rxattachemnt","rxdb","rxdb,","rxdocument","schema:","scream:","skeletor!!'","specif","static","statics:","this.nam","this.name;","type:","us","whoami:","wide","wide.","{","}","});"],"population.html":["'alice'","'alice',","'array',","'bob',","'carol'","'carol',","'dave'","'human","'human'","'human',","'object',","'string'","'string',","(primari","//","//>","//[insert","0,","=","[","]","_","add","alway","anoth","array","array.","attribut","await","belong","bestfriend","bestfriend:","collect","collections.","come","console.dir(bestfriend);","console.dir(friends);","console.dir(mother);","const","continu","database.","describ","direct","doc","doc.bestfriend_;","doc.populate('bestfriend');","document","exactli","exampl","export","family:","field","fieldname.","foreign","found.","friend","friends:","getter","getter.","here","here]","human","human',","humanscollection.findone('alice').exec();","humanscollection.findone('bob').exec();","humanscollection.insert({","in.","items:","join","keyword","method","method.","mongoose.","mother","mother:","mycollect","mycollection.insert({","mydatabase.collection({","mydocument.family.mother_;","mydocument.friends_;","name:","nest","new","notic","null","on","path","popul","populate()","primary:","promis","properties:","ref","ref:","refer","referenc","refhuman","relat","resolv","return","rxcollect","rxdb","rxdb,","rxdocument","rxdocument)","rxdocument,","rxdocument[alice]","same","schema","schema:","schemawithonetomanyrefer","sometim","specifi","still","string","suffix","take","therefor","title:","to.","true","true,","type:","underscor","underscore_","us","valu","values.","version:","via","want","work","{","}","});","},","};"],"data-migration.html":["'bi","'messages',","'sendercountry'","(or","(string)","(version:",");","*","*/",".migratepromise():",".then(respons","/**","//","0","0,","0.","02","1","12","12t23:03:05+00:00","1486940585","1:","2","2)","2017","2:","50,","=","=>","accomplish","add","alreadi","alway","amount","app","appear","assigned.","assur","asynchron","automat","automigr","automigrate:","await","awesom","bar.","better","call)","chang","client'","code","collect","collection,","collection.","combin","compar","console.dir(state),","console.error(error),","console.log('done')","const","continu","coordin","countri","created.","creation","data","data.","datamigr","date","date(olddoc.time).gettime();","dates.","decid","default,","defin","delet","deleted:","devic","distribut","doc","document","don't","done","done:","easier","emit","error","exist","false,","fetch('http://myserver.com/api/countrybycoordinates/'+coordinates+'/')","field","filter","finish","function","function(olddoc){","get","greater","hand'","handl","handled:","happen","here","hint","if(olddoc.tim","imagin","incom","increas","instead","leaderelect","load","long","look","lot","make","mani","match","means,","messag","messagecol","messagecol.migratepromise(10);","messages.","messageschemav1,","messeng","migrat","migrated.","migrated:","migratepromise;","migrationpromis","migrationstrategi","migrationstrategies:","mydatabase.collection({","name:","new","new,","newer","newest","null,","number","object","old","olddoc.coordinates;","olddoc.sendercountry=response;","olddoc.tim","olddoc;","older","on","open","paramet","percent:","percentag","problem","promis","properti","provid","remains:","remov","requir","resolv","resourc","respons","response.json();","return","run","rxdb","rxdb,","save","schema","schema'","schema:","schema?","schemas.","sender","server","show","start","state","strategi","string","succeed","success:","sure","tabs.","take","this,","this:","time,","timestamp","total:","transform","true","unix","upon","us","used:","user","user'","user,","users'","users.","version","version,","version.","want","wast","while,","{","}","});","},"],"leader-election.html":["'dies'.","'localstorage',","'mypassword',","'temperature',","'weatherdb',","*",".then(()","//","10","10);","1000","5","6*5=30","=","=>","access.","adapter:","algorithm","alway","api","await","becom","befor","between","broadcast","browser","build,","case","channel","charts,","check","client","closed,","closed.","code","collection.","come","conflict","connections.","console.log('long","const","continu","corner.","count","crown","current","data","data,","date().gettime()","db","db.collection({","db.temperature.insert({","db.waitforleadership()","degrees:","device,","differ","display","easy,","elect","exact","exactli","exampl","fetch('https://example.com/api/temp/');","hand","heatmaps.","here","imagin","implement","inspect","instanc","instances.","javascript","king!');","lead","leader","leader,","leader.","leaderelect","live","locat","machine.","make","manag","mani","mark","matter","messag","minute.","module.","moment","more","multiinstance:","multipl","mupltipl","myschema","name:","new","nodej","notic","now","number","old","on","once.","open","out","over","password:","per","pleas","polling.","power","process","produce,","pull","read","reassign","redund","remot","replic","resourc","right","run","runtime.","rxdb","rxdb,","rxdb.create({","same","save","schema:","second","seconds.","see","send","sent","server","site","solut","solv","start","stay","sure","system","tab","tab.","tabs,","temp","temp,","temperatur","ten","them,","these","thing","this,","time","time:","top","traffic","tri","true","until","us","usag","vanillaj","variou","via","visitor","wait..","wast","way","websit","websocket","wire","you.","{","});","},","♛"],"replication.html":["'http://localhost:10102/db/',","(default)","(e.g.","(optional)","(remot","//","=","=>","[default=true]","active$","adapt","add","aliv","alive$","anoth","async","await","basic","between","call","cancel","cancel()","chang","change$","collect","complete$","complete.","completed.","completes.","connect","console.dir(active));","console.dir(alive));","console.dir(change));","console.dir(completed));","console.dir(docdata));","console.dir(error));","const","continu","couchdb","couchdb,","couldn't","data","data.","database)","database,","database.","databases.","db.","default=tru","denied$","depend","di","died.","dies.","direct","direction:","docs$","document","due","dure","each","emit","enabl","error","error$","event","example.","fail","fals","featur","handler","here","here.","http","http'));","https://pouchdb.com/api.html#repl","immedi","impli","instanc","instance,","intern","leader","live:","make","match","method","mycollection.find().where('age').gt(18)","mycollection.sync({","need","never","new","observ","occur","on","option","options:","over","pend","performance,","permissions).","plugin","pouch/couch","pouchdb","power","properli","pull:","push:","queri","query:","recogn","remot","remote:","replic","replicated.","replication,","replication.","replicationst","replicationstate.active$.subscribe(act","replicationstate.alive$.subscribe(al","replicationstate.cancel();","replicationstate.change$.subscribe(chang","replicationstate.complete$.subscribe(complet","replicationstate.denied$.subscribe(docdata","replicationstate.docs$.subscribe(docdata","replicationstate.error$.subscribe(error","retry:","return","rx.collection.sync()","rxcollect","rxcollection,","rxcollection.sync()","rxcollection.sync().","rxdb","rxdb,","rxdb.plugin(require('pouchdb","rxj","rxreplicationst","same","save","serverurl,","specifi","start","stream.","sure","sync","sync.","synchronis","time","transmit","true","true,","us","valu","via","waitforleadership:","won't","you'r","{","});","},"],"replication-graphql.html":["!==","\"${doc.name}\",","\"alice\",","\"deleted\":","\"foobar\",","\"id\":","\"lastname\":","\"name\":","\"updatedat\":","\"wilson\",","$human)","${doc.updatedat},","'',","'deleted',","'http://example.com/graphql',","'new'","'rxdb/plugins/repl","'subscript","'ws://example.com/subscriptions',","(!doc)","(a.id","(a.updatedat","(beta)","(doc.id","(doc.updatedat","(optional)",");","*","*/",".active$",".awaitinitialreplication()",".cancel()",".canceled$",".error$",".isstopped()",".recieved$",".run()",".send$","/","/**","//","0","10","1000","1000);","1564783474,","1;","5)","5,","60","=","===","=>",">","[human!]!","`","`;","`subscript","`{","abov","again","allow","alway","amount","arg","args.human;","args.lastid)","args.limit);","args.minupdatedat)","around,","assum","autmat","automat","automatically,","await","b)","b.id)","b.updatedat)","back","batch","batchsize:","befor","boolean!","build","builder","call","called.","cancel","canceled,","canceled.","case,","caus","chang","changeobserv","changeobservable.subscribe({","changes,","check","client","client.","compar","comparison","compliant","conflict","conflict,","conflicts,","cons:","console.dir(error);","console.log('initi","console.log('someth","const","construct","continu","couchdb","cours","creat","createhuman($human:","cycl","d","d.id","data","data');","data.","databas","date","date().gettime()","debug","debugging.","default","delet","deleted,","deleted:","deletedflag:","design","destroyed.","developer.","do","doc","doc.id);","doc.updatedat","doc;","document","documents,","documents.","documents.filter(d","documents.push(doc);","documents.sort((a,","done","done,","done.","down","download","dure","each","emit","endpoint","endpoint,","endpoint.","ensur","equal","equal,","error","es5","es6","even","event","events,","exampl","exist","fals","false,","false;","faster","feedforrxdbrepl","feedforrxdbreplication(lastid:","feedforrxdbreplication:","fetch","filterforminupdatedatandid.slice(0,","finish","first","flag","flags.","full","function","functions.","get","given","graphql","graphql'));","graphql';","handel","handl","handler","happen","happens,","height","here","here,","human","human:","humanchang","humaninput","humaninput)","humaninput):","id","id!,","id,","id:","import","improv","indic","initi","input","input.","int!):","int!,","internally.","interv","it'","it.","known","last","lastname,","lastname:","later","latest","less","let","like:","limit","limit:","limited;","list","live","live:","liveinterv","liveinterval:","logic","look","mani","math.round(new","mean","minupdatedat:","modifi","modifier:","multipl","mutat","mycollection.syncgraphql()","mycollection.syncgraphql().","mycollection.syncgraphql({","name,","name:","need","network","never","new","newer","next(data)","non","not.","notice:","notifiers,","object","observ","offlin","offline,","on","one,","ongo","onhumanchang","onlin","out","part","play","plugin","problem","promis","pros:","pull","pull:","pullquerybuild","pullquerybuilder,","pullquerybuilder.","push","push:","pushquerybuild","queri","query,","querybuild","querybuilder,","querybuilder.","queu","realtime.","reciev","recommend","reconnect:","relat","reli","replic","replication,","replication.","replicationst","replicationstate.","replicationstate.awaitinitialreplication();","replicationstate.cancel();","replicationstate.error$.subscribe(error","replicationstate.isstopped();","replicationstate.run();","requir","resolut","resolv","resourc","result","return","revis","rootvalu","row","run","run()","rxcollect","rxdatabas","rxdb","rxdb,","rxdb.","rxdb.plugin(require('rxdb/plugins/repl","rxdb.plugin(rxdbreplicationgraphql);","rxdbreplicationgraphql","rxgraphqlreplicationst","second","send","server","server,","server.","set","set.","sethuman(human:","sethuman:","setup","side","side,","side.","singl","solv","someth","something,","soon","sort","sortabl","sorteddocu","sourc","start","state","still","stopped.","string!,","subscrib","subscript","subscriptioncli","subscriptionclient(","sync","systems.","take","them,","thing","this,","time","transport","trigger","true","true,","true/fals","true;","truth","two","type","until","updat","updatedat","updatedat.","updatedat:","url","url:","us","usag","user","value.","variabl","variables.","variables:","veri","watch","way","will,","work","worst","wrong');","ws';","wsclient","wsclient.request({","{","{}","}","});","},","};","}`;"],"query-change-detection.html":["'');","'',","'heroesdb',","'memory',","+",".exec()'",".reduce((prev,","//","=","=>","adapter:","again.","anyuser.loggedin","anyuser.save();","await","beta","big","calcul","case","collect","collection.","const","continu","cost.","creat","cur)","cur.username+","current","databas","database.","db","default.","detect,","disabl","display","document.queryselector('body').innerhtml","documents,","documents.","done","driver,","enabl","enabled.","engine.","events.","exampl","false;","field","gain","here","huge","imagin","in.","io","it.","log","long","make","mani","memori","meteor","multipl","name:","new","notice:","now,","observ","off,","on","oplog","optim","over","page","pass","perform","plu","point","prev","queri","queries,","queries.","query.","query.$.subscribe(us","querychangedetect","querychangedetection:","re","realli","request","result","reus","run","rxchangeevent.","rxdb","rxdb,","rxdb.create({","same","similar","storag","subscrib","sure","take","then,","thousand","time","toplist","true","update/insert/remov","us","user","userscollection.find().where('loggedin').eq(true).sort('points');","veri","want","whole","without","work","zero","{","});"],"in-memory.html":["'bar'});","'npm","'pouchdb","(all","//","=","adapt","add","amount","anoth","apply.","attach","automat","await","awaitpersistence()","befor","behav","both.","call","case","chang","collect","collection,","collection.","collections.","comput","cons:","const","continu","creation","data","decrypt","disc","doc","document","drive.","encrypt","enough","equal","event","everyth","faster","field","fields.","fire","fit","hard","heavi","here","hook","import","important:","inherit","initi","inmemori","inmemorycollection,","insid","instal","instead","it'","know","load","longer","mean","memcol","memcol.awaitpersistence();","memcol.find().exec();","memcol.insert({foo:","memori","memory';","memory)","mycollect","mycollection.inmemory();","new","now","on","oper","optim","origin","over","parent","pouchadaptermemori","pouchdb","promis","pros:","queri","regist","replic","replicated,","resolv","result","return","run","rxcollect","rxcollection().awaitpersistence()","rxcollection().inmemory();","rxcollection,","rxdb,","rxdb.plugin(pouchadaptermemory);","same","save'","separ","share","small","static","store","stream.","support","sure","take","them,","time","two","u","until","updat","us","version","want","way","work","write","you'd"],"rx-local-document.html":["'bar'","'bar');","'bar';","'bar2');","'foobar',",");","*/","..","/*","//","=","=>","access","addit","alreadi","attach","await","behav","chang","class","collect","collection.","come","const","continu","creat","data","databas","document","documents.","exist","exists.","field","find","foo","foo:","found","getlocal()","handi","handl","here","id","id.","insertlocal()","it'","local","localdoc","localdoc.foo","localdoc.foo;","localdoc.get$('foo').subscribe(valu","localdoc.get('foo');","localdoc.remove();","localdoc.save();","localdoc.set('foo',","localdocu","match","metadata.","migrat","mycollection.getlocal('foobar');","mycollection.insertlocal(","mycollection.upsertlocal(","mydatabase.insertlocal(","new","next","normal","notice:","null","observ","overwrit","promis","proxi","pseudo","queri","remov","replic","resolv","return","rxcollect","rxdatabas","rxdb,","rxdocument.","rxlocaldocu","rxlocaldocument.","same","schema","schema,","set","special","store","throw","undefin","upsertlocal()","us","via","want","work","work!","work.","works!","{","}","});"],"custom-build.html":["'npm","'rxdb/plugins/adapt","'rxdb/plugins/ajv","'rxdb/plugins/attachments';","'rxdb/plugins/core';","'rxdb/plugins/encryption';","'rxdb/plugins/error","'rxdb/plugins/in","'rxdb/plugins/json","'rxdb/plugins/key","'rxdb/plugins/lead","'rxdb/plugins/loc","'rxdb/plugins/no","'rxdb/plugins/repl","'rxdb/plugins/replication';","'rxdb/plugins/schema","'rxdb/plugins/server';","'rxdb/plugins/update';","'rxdb/plugins/valid","'rxdb/plugins/validate';","'rxdb/plugins/watch","'unsaf","*/});","...","//","=","activ","adapt","add","addit","advantag","ajv","allow","altern","alway","anoth","attach","bandwidth","basic","batteri","befor","better","bigger","bit","both","browser","build","build,","build.","builds.","call","chang","changeev","changes'));","changes';","changestream.","check","check'));","check';","checkadapt","cherri","choos","code","collect","collection,","collections.","compat","compliant","compress","compress,","compression'));","compression';","const","content","continu","core","core,","correctli","couchdb","creat","crypto","custom","data","databas","database.","databases.","default","default,","default.","dev","develop","disablekeycompress","disadvantag","document","documents'));","documents';","doesn't","don't","done","dump","dump'));","dump';","elect","election'));","election';","electron","emit","enabl","enabled.","encrypt","endpoint.","ensur","environment.","error","es5","es6","eval'","eval()","eval.","expos","express","fast","faster.","full","function","functionality.","graphql","graphql'));","graphql';","handl","hard","here","import","import/export","imported.","includ","input","insert","instal","instanc","instead.","intern","internet,","it.","javascript,","js","json","jsonschema","key","keycompress","keycompressor","leader","leaderelect","leaderelection.","let","local","lot","make","manual","mean","meant","memori","memory'));","memory';","messag","messages'));","messages';","mode.","modul","module,","module.","myrxcollection.pouch.put({/*","myrxcollection.watchforchanges();","need","need.","never","new","node","normal","not.","noth","now","on","onc","option","origin","overwrit","part","password.","perform","pick","plugin","plugin.","policies.","pouchdb","pouchdb'","product","production.","provid","realli","reduc","reli","replic","requir","require('rxdb/plugins/core');","required.","run","rxcollection.","rxdatabase.","rxdb","rxdb'","rxdb,","rxdb.","rxdb.plugin(require('rxdb/plugins/adapt","rxdb.plugin(require('rxdb/plugins/ajv","rxdb.plugin(require('rxdb/plugins/attachments'));","rxdb.plugin(require('rxdb/plugins/encryption'));","rxdb.plugin(require('rxdb/plugins/error","rxdb.plugin(require('rxdb/plugins/in","rxdb.plugin(require('rxdb/plugins/json","rxdb.plugin(require('rxdb/plugins/key","rxdb.plugin(require('rxdb/plugins/lead","rxdb.plugin(require('rxdb/plugins/loc","rxdb.plugin(require('rxdb/plugins/no","rxdb.plugin(require('rxdb/plugins/repl","rxdb.plugin(require('rxdb/plugins/replication'));","rxdb.plugin(require('rxdb/plugins/schema","rxdb.plugin(require('rxdb/plugins/server'));","rxdb.plugin(require('rxdb/plugins/update'));","rxdb.plugin(require('rxdb/plugins/valid","rxdb.plugin(require('rxdb/plugins/validate'));","rxdb.plugin(require('rxdb/plugins/watch","rxdb.plugin(rxdbadaptercheckmodule);","rxdb.plugin(rxdbajvvalidatemodule);","rxdb.plugin(rxdbattachmentsmodule);","rxdb.plugin(rxdbencryptionmodule);","rxdb.plugin(rxdberrormessagesmodule);","rxdb.plugin(rxdbinmemorymodule);","rxdb.plugin(rxdbjsondumpmodule);","rxdb.plugin(rxdbkeycompressionmodule);","rxdb.plugin(rxdbleaderelectionmodule);","rxdb.plugin(rxdblocaldocumentsmodule);","rxdb.plugin(rxdbnovalidatemodule);","rxdb.plugin(rxdbreplicationgraphql);","rxdb.plugin(rxdbreplicationmodule);","rxdb.plugin(rxdbschemacheckmodule);","rxdb.plugin(rxdbservermodule);","rxdb.plugin(rxdbupdatemodule);","rxdb.plugin(rxdbvalidatemodule);","rxdb.plugin(rxdbwatchforchangesmodule);","rxdb.plugin(rxdbzschemavalidatemodule);","rxdbadaptercheckmodul","rxdbajvvalidatemodul","rxdbattachmentsmodul","rxdbencryptionmodul","rxdberrormessagesmodul","rxdbinmemorymodul","rxdbjsondumpmodul","rxdbkeycompressionmodul","rxdbleaderelectionmodul","rxdblocaldocumentsmodul","rxdbnovalidatemodul","rxdbreplicationgraphql","rxdbreplicationmodul","rxdbschemacheckmodul","rxdbservermodul","rxdbupdatemodul","rxdbvalidatemodul","rxdbwatchforchangesmodul","rxdbzschemavalidatemodul","rxdocument.","rxdocument.upd","rxquery.update.","save","schema","schema'));","schema';","schemacheck","secur","see:","server","set","setup","size,","size.","spawn","standart","start","sth","support","sure","tell","thing","this,","this:","throw","thrown.","true","tutorial:","updat","us","valid","valid.","validate'));","validate';","validation.","want","watch","whose","window.","work","write","z"],"plugins.html":["!==","&&","'bar'","'foo'.","'mycollection.hello()'","'string'","'world';","()=>'bar'","(password","(proto)","*","*/","/**","//","=","=>","@link","@param","ad","add","addit","afterward","alway","anyth","avail","basic","call","call.","class","classes,","code","collect","collection.options.foo();","const","contain","continu","correspond","creat","data","don't","each","exist","extend","fill","find","foo:","function","function(){","function(password)","get","here","here.","hook","hooks.","https://github.com/pubkey/rxdb/blob/master/src/plugin.ts#l22","insid","intern","it.","javascript","jump","keynam","know","list","list:","manipul","manipulate.","method","method,","modifi","mydatabase.collection({","myplugin","myschema,","name:","new","object","object.","option","options:","overwrit","overwritable:","overwritten","paramet","parameter,","pass","password","password.length","plugin","plugin.","plugins:","pouchdb","properti","proto.hello","prototyp","prototypes:","requir","return","rxcollect","rxcollection:","rxdatabas","rxdb","rxdb'","rxdb,","rxdb:","schema:","see","set","signal","simple.","sometim","static","static.","these","time","true","true,","true.","typeof","us","validatepassword:","valu","veri","want","{","{object}","||","}","})","},","};"],"adapters.html":["'/root/user/project/mydatabase',","'base","'idb'","'memory'","'mydatabase',","'node","'pouchdb","'react","'rxdb';","'websql'","(!global.atob)","(!global.btoa)","*","/","//","2","2'","2.","64","64'","=","abstract","access","adapt","adapter.","adapter:","adapters.","add","advantag","alway","asyncstorag","asyncstorage'","asyncstorage'));","asyncstorage.","asyncstoragedown","avoid","await","base","behavior.","best","between","bind","browser","build","c++","choos","claim","code.","compar","const","contain","continu","cordova","cordova'","cordova.sqliteplugin.","core","data","databas","database.","decode;","default.","defin","depend","deprecated.","differ","down","down');","encode;","encode}","ensur","environ","environment,","event","exampl","faster","files.","filesystem","filesystem.","first","folder","full","global","global.atob","global.btoa","good","here","http'));","idb","idb'));","implement","import","in,","includ","indexeddb","insid","instal","it'","it,","itself","javascript","leveldb","leveldb'));","leveldown","library.","link","lost","mean","memdown","memori","memory'));","memory.","modul","much","multipl","name","name:","nativ","native'","native.","need","new","node","nodej","npm","otherwis","over","overview","package.json.","page","perform","persist","phonegap","pleas","plugin","polyfil","pouchdb","problem","process","process.brows","react","reactn","realli","reason.","recommend","require('asyncstorag","require('leveldown');","require('memdown');","runtim","rxdb","rxdb,","rxdb.create({","rxdb.plugin(require('pouchdb","rxdb.plugin(sqliteadapter);","same","save","self","shim","specif","sqlite","sqlite'","sqlite'));","sqliteadapt","sqliteadapterfactori","sqliteadapterfactory(sqlite)","state,","step","storage.","store","stored.","strang","suit","terminates.","test","true;","tutorial.","unless","us","version","want","websql","websql'));","websql.","when:","where.","work","{","{decode,","}","});"],"tutorials/typescript.html":["'","'describ","'heroes',","'human","'integer'","'lastname']","'memory'","'mydb',","'myid',","'object',","'piotr',","'potter',","'rxdb';","'string'","'string',","()","(v:",")",");","*","*/","+","/**","//","0,","5","=","=>","['firstname',","access","adapter:","add","age:","age?:","alldoc","alldocs.length;","amount:","anyth","async","await","base","basic","befor","being',","bound","clean","collect","collection.","collection:","collections,","come","console.log('insert","console.log(amount);","console.log(doc.firstname);","const","contain","continu","countalldocuments:","creat","data","databas","database,","database.","declar","defin","description:","directli","doc","doc.firstname);","doc.scream('aah!');","doc:","docdata,","document","document.","documents.","else.","fals","first","firstname:","fulli","function","function(this:","gener","go","helper","here","herocollect","herocollection)","herocollection,","herocollectionmethod","herocollectionmethods:","herodocmethod","herodocmethods,","herodocmethods:","herodoctyp","herodocu","herodocument,","herodocument.","heroes:","heroschema,","heroschema:","hook","human","import","insert","instal","it'","it.","json","jsonschema","keycompression:","lastname:","learn","look","make","mani","merg","method","methods,","methods:","mydatabas","mydatabase.collection({","mydatabase.destroy();","mydatabase.heroes.countalldocuments();","mydatabase.heroes.insert({","mydatabase.heroes.postinsert(","mydatabase:","mydatabasecollect","mypostinserthook(","name:","new","now","number","number;","on","option","orm","passportid:","preinsert","primary:","promise;","properti","properties:","represent","required:","return","rxcollection,","rxcollection;","rxdatabase,","rxdatabase;","rxdb","rxdb,","rxdb.","rxdb.create({","rxdocument","rxdocument;","rxjsonschema","rxjsonschema,","schema","schema',","schema:","scope","scream:","screams:","sever","static","statics:","string)","string;","them.","this.find().exec();","this.firstnam","this.nam","this:","title:","true","true,","tutori","type","type:","typed!","types,","typescript","typescript.","up","us","version:","way","what.touppercase();","what:","{","}","});","},","};"],"tutorials/server.html":["'/',","'/db',","'bar'","'clientdb',","'foo',","'http://localhost:3000/db/items'","'items',","'memory'","'mydb',","'object',","'pouchdb","'rxdb';","'rxdb/plugins/server';","'string'","'string',","()","(default)","(optional)","(optional),","(req,","*","/","//","0,","3000,","3000`));","=","=>","access","adapt","adapter:","add","allow","api","app","app);","app.","await","befor","between","bigger","build.","client","client.","clientdb","clientdb.collection({","clientdb.items.find().exec();","clientdb.items.sync({","collect","collection.","come","configur","console.log(`serv","const","continu","cor","cors,","cors:","couchdb","creat","data","databas","db","db.collection({","db.items.insert({","db.server({","default","defin","develop","disabl","doc","document","document.","electron","enabl","ensur","everyth","express","express();","fals","false,","fast","forc","have","header","here","http","http';","http://localhost:3000/db","http://localhost:3000/db/item","import","info","insert","instal","instanc","internet,","it.","key:","learn","listen","main","mainapp","mainapp.listen(3000,","mainapp.use('/',","mainapp.use('/db',","memori","memory';","memoryadapt","middlewares...","mode","modul","mount","myschema","name:","need","never","new","node","node,","nodej","now","npm","ok,","omit","on","open","over","part","path:","plugin","port","port:","pouchdb","pouchhttpplugin","primary:","probabl","process","production.","properties:","prototyp","real","relic","remote:","render","replic","res)","res.send('hello'));","rxdb","rxdb,","rxdb.","rxdb.create({","rxdb.plugin(memoryadapter);","rxdb.plugin(pouchhttpplugin);","rxdb.plugin(rxdbserverplugin);","rxdbserverplugin","same","save","schema:","server","server.","server}","set","shell","simul","spawn","spin","start","startserv","startserver:","true","true,","tutori","type:","up","us","useful","value:","version:","want","without","work","worked,","{","{app,","}","});","},","};"],"questions-answers.html":["&","'adapter');","'heroesdb'","+","1","ad","adapt","add","anoth","answer","appropri","befor","bug","call","can't","caus","chang","check'","collect","collection():","collection,","collection.","creat","data","databas","date().gettime()","db","debug,","develop","differ","document","each","error","error.","error:","follow","hard","increas","insid","instanc","it.","make","match","mean","memori","migrationstrategi","mode,","modifi","name","name:","new","now","on","perman","product","question","reset","restart","run","rxdatabas","rxdb","rxdb.removedatabase('mydatabasename',","safe","save","schema","schema,","schema.","simplifi","sometim","strang","strategies:","suffix","throw","timestamp","us","version"],"contribute.html":["&&","(anyth","7","ad","add","ask","befor","bug,","bugfix","build","cd","change.","changes,","check","clone","commit","community.","console.","contribut","contributing!","contribution,","creat","depend","dev","develop","developing,","device,","discuss","dist","doc","docs:instal","docs:serv","document","don't","ensur","everyth","expect","expected.","featur","feature,","file","file.","flow","folder)","folder.","following:","for,","get","git","gitter.","grate","help","higher","http://localhost:4000/","https://github.com/pubkey/rxdb.git","instal","integr","issu","it.","leav","locally,","made","make","manual","merg","modifi","need","nodej","non","npm","open","pr","pull","read","repositori","reproduc","request,","requir","run","rxdb","slow","sourc","src","start","sure","test","test/unit","test:nod","tests,","thank","time","time.","to,","togeth","trivial","unit","version","want","wast","work","work."]},"length":25},"tokenStore":{"root":{"0":{"2":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.012987012987012988},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.012232415902140673},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"1":{"0":{"0":{"0":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}},")":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}}}},"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"2":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"t":{"2":{"3":{"docs":{},":":{"0":{"3":{"docs":{},":":{"0":{"5":{"docs":{},"+":{"0":{"0":{"docs":{},":":{"0":{"0":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"4":{"8":{"6":{"9":{"4":{"0":{"5":{"8":{"5":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"5":{"6":{"4":{"7":{"8":{"3":{"4":{"7":{"4":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"8":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}},"9":{"0":{"0":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},"docs":{}},"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}},"2":{"0":{"1":{"7":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"docs":{}},"5":{"0":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"docs":{}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}},"3":{"0":{"0":{"0":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}},"`":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}},"docs":{}},"docs":{}},"3":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"4":{"0":{"9":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"docs":{}},"docs":{}},"5":{"0":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"6":{"0":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"4":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}},"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"*":{"5":{"docs":{},"=":{"3":{"0":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"docs":{}},"docs":{}}},"docs":{}}},"7":{"7":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"8":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},"docs":{}}},"docs":{}}},"9":{"docs":{},"]":{"docs":{},"$":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"*":{"docs":{},"$":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}},"_":{"docs":{},"]":{"docs":{},"*":{"docs":{},"]":{"docs":{},"?":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}},"docs":{},"(":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"|":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"|":{"docs":{},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01129032258064516},"replication.html":{"ref":"replication.html","tf":0.01556420233463035},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}}}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}}}},"n":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},")":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"=":{"docs":{},">":{"docs":{},"'":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}}}}}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}},"q":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"!":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"b":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}},"b":{"docs":{},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},">":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.01152073732718894},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},"a":{"docs":{},"l":{"docs":{},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.007739938080495356},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"$":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"m":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}},"i":{"docs":{},"v":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"p":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.015873015873015872}},"l":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"c":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}}},"y":{"docs":{},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}},"i":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.021739130434782608},"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"orm.html":{"ref":"orm.html","tf":0.01834862385321101},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.01393188854489164},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"i":{"docs":{},"t":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.026030368763557483},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":10.073717948717949},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308}}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"adapters.html":{"ref":"adapters.html","tf":0.019230769230769232},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}},"s":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.014112903225806451},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.008012820512820512}},"e":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}}}}}}}}}}}}}}},"k":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.10504201680672269},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"s":{"docs":{},"/":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.015184381778741865},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.014516129032258065},"rx-document.html":{"ref":"rx-document.html","tf":0.018604651162790697},"rx-query.html":{"ref":"rx-query.html","tf":0.013824884792626729},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.025210084033613446},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.045871559633027525},"population.html":{"ref":"population.html","tf":0.04281345565749235},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.025906735751295335},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.03225806451612903},"adapters.html":{"ref":"adapters.html","tf":0.019230769230769232},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.015873015873015872}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}},"?":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}},"n":{"docs":{},"y":{"docs":{},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"t":{"docs":{},"h":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":3.3429487179487176}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}},"j":{"docs":{},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}}},"i":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}},"r":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"c":{"docs":{},"k":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"e":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"a":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}}}}}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.01529051987767584}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308}},"s":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}},"a":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":5.007739938080495},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"e":{"docs":{},"r":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"l":{"docs":{},"k":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"g":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"!":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}},"t":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"c":{"docs":{},"k":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"questions-answers.html":{"ref":"questions-answers.html","tf":0.057692307692307696}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"d":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"e":{"docs":{},"v":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},"o":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}},"'":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}}},"e":{"docs":{},"x":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"s":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}},"a":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},"i":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"u":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}}},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}},"j":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}},"e":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":5},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"r":{"docs":{},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}}}}}}}}}}}}}}}},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"r":{"docs":{},"s":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"d":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":10.012422360248447}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"o":{"docs":{},"k":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.01152073732718894}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"g":{"docs":{},"o":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}}}}},"`":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-collection.html":{"ref":"rx-collection.html","tf":0.016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.03225806451612903},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.046218487394957986},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.04128440366972477},"population.html":{"ref":"population.html","tf":0.03363914373088685},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.015789473684210527},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.03686635944700461},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.02564102564102564},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.01881720430107527},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.021164021164021163}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"s":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.011673151750972763}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"rx-collection.html":{"ref":"rx-collection.html","tf":0.02903225806451613},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.03626943005181347},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.021505376344086023},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.013227513227513227},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"i":{"docs":{},"o":{"docs":{},"n":{"2":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.01834862385321101},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.02072538860103627},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"s":{"docs":{},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"(":{"docs":{},")":{"docs":{},":":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.008012820512820512}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}}}}}}}}},"s":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"s":{"docs":{},"t":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517}}}}}},")":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"+":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"custom-build.html":{"ref":"custom-build.html","tf":5.004643962848297}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.013953488372093023},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}}}},"s":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"c":{"docs":{},"h":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"'":{"docs":{},"t":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"u":{"docs":{},"s":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"u":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.010526315789473684},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"d":{"docs":{},"b":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"n":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}},"i":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}},"p":{"docs":{},"u":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.015184381778741865},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.018518518518518517},"questions-answers.html":{"ref":"questions-answers.html","tf":0.038461538461538464},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"$":{"docs":{},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"o":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}},"+":{"docs":{},"+":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.015184381778741865},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-collection.html":{"ref":"rx-collection.html","tf":0.00967741935483871},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.03361344537815126},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.008421052631578947},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.041474654377880185},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.017628205128205128},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"rx-database.html":{"ref":"rx-database.html","tf":0.03253796095444685},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"adapters.html":{"ref":"adapters.html","tf":0.020833333333333332},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010752688172043012},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.015873015873015872},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"s":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":10.00257731958763}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"e":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"(":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"e":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"k":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"c":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication.html":{"ref":"replication.html","tf":0.007782101167315175}},"l":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"y":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"s":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"o":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"population.html":{"ref":"population.html","tf":0.009174311926605505},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007368421052631579},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"contribute.html":{"ref":"contribute.html","tf":0.024844720496894408}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-collection.html":{"ref":"rx-collection.html","tf":0.027419354838709678},"rx-document.html":{"ref":"rx-document.html","tf":0.03255813953488372},"rx-query.html":{"ref":"rx-query.html","tf":0.018433179723502304},"middleware.html":{"ref":"middleware.html","tf":0.016129032258064516},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.009174311926605505},"data-migration.html":{"ref":"data-migration.html","tf":0.01804123711340206},"replication.html":{"ref":"replication.html","tf":0.01556420233463035},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.023157894736842106},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06912442396313365},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"(":{"docs":{},"a":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},":":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"a":{"docs":{},"h":{"docs":{},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"n":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"'":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"w":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.043478260869565216},"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"i":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010752688172043012}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"i":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.006191950464396285},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007368421052631579}},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},",":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"b":{"1":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"2":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}}}}}}}}}},"[":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},"]":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"r":{"docs":{},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"e":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"leader-election.html":{"ref":"leader-election.html","tf":0.02413793103448276},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}},"n":{"docs":{},"d":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00631578947368421}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.011131725417439703},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"in-memory.html":{"ref":"in-memory.html","tf":0.02072538860103627},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}},"}":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"replication.html":{"ref":"replication.html","tf":0.019455252918287938},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"(":{"docs":{},")":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"s":{"5":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.030959752321981424}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}},"6":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.029411764705882353}}},"8":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-query.html":{"ref":"rx-query.html","tf":0.01152073732718894},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"leader-election.html":{"ref":"leader-election.html","tf":0.020689655172413793},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}},"e":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"c":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"l":{"docs":{},"i":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.021164021164021163}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"s":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"s":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"y":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.03501945525291829},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"i":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"g":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"t":{"docs":{},"c":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.03153988868274583},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},"l":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},"s":{"docs":{},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308}}}}}}}}},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},".":{"docs":{},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"0":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.013824884792626729},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"o":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}}}}}}}}},"e":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"replication.html":{"ref":"replication.html","tf":0.023346303501945526},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.03024193548387097}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"u":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}},"s":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308}},")":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}}}}},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}},"c":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"o":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},":":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"s":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.009174311926605505}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-collection.html":{"ref":"rx-collection.html","tf":0.012903225806451613},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.007739938080495356},"plugins.html":{"ref":"plugins.html","tf":0.018433179723502304},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.011627906976744186}}},"s":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}}},"(":{"docs":{},")":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"adapters.html":{"ref":"adapters.html","tf":0.00641025641025641}},"i":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}},"e":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"'":{"docs":{},"+":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"+":{"docs":{},"'":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"a":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842}},"s":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"o":{"docs":{},"w":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"replication-graphql.html":{"ref":"replication-graphql.html","tf":5.018947368421053},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}},"t":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"i":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"o":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"n":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"o":{"docs":{},"d":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}}}},"e":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}},"$":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"b":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}},"b":{"docs":{},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},".":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}}},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"o":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"orm.html":{"ref":"orm.html","tf":0.022935779816513763}},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"s":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}},"u":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}},"v":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}},"l":{"docs":{},"p":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"e":{"docs":{},"r":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"y":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}}}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"i":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474}},"s":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"r":{"docs":{},"d":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"v":{"docs":{},"e":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"u":{"docs":{},"g":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"'":{"docs":{},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"population.html":{"ref":"population.html","tf":0.012232415902140673}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"n":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"middleware.html":{"ref":"middleware.html","tf":5.05241935483871},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.018433179723502304},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129}}},"?":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"s":{"docs":{},")":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"#":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"t":{"docs":{},"s":{"docs":{},"#":{"docs":{},"l":{"2":{"2":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"/":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"4":{"0":{"0":{"0":{"docs":{},"/":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}},"r":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"r":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"e":{"docs":{},"t":{"docs":{},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"!":{"docs":{},")":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":10.054347826086957},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.022435897435897436},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}},"n":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.015184381778741865},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"$":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"s":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.00641025641025641},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642}},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.00641025641025641}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},"s":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}},"i":{"docs":{},"c":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"o":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":10.010362694300518}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}},"f":{"docs":{},"o":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.043478260869565216},"rx-database.html":{"ref":"rx-database.html","tf":0.008676789587852495},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.06346749226006192},"adapters.html":{"ref":"adapters.html","tf":0.00641025641025641},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.015873015873015872}},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"a":{"docs":{},"g":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"d":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}},"b":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}},"a":{"docs":{},"s":{"docs":{},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"!":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}}}}}}}}}}}}}}}}},"s":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"s":{"docs":{},"u":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"t":{"docs":{},"'":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}},"f":{"docs":{},"(":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"o":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"custom-build.html":{"ref":"custom-build.html","tf":0.006191950464396285},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}},"x":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}},"m":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"s":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.05181347150259067},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135},"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"y":{"docs":{},"'":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202}},".":{"docs":{},"a":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},":":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.008012820512820512}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010752688172043012}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}},"e":{"docs":{},"o":{"docs":{},"r":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"v":{"1":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}},"docs":{}}}}}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"r":{"docs":{},"g":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"3":{"0":{"0":{"0":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"/":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.024844720496894408}}}},"p":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}},"h":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"n":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}},"g":{"docs":{},"o":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}},"a":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"r":{"docs":{},"k":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"d":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}}}}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},"r":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}},"n":{"docs":{},"d":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}}}}},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":5.008064516129032}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.021671826625386997},"adapters.html":{"ref":"adapters.html","tf":0.008012820512820512},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}},"y":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"e":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}},",":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}}}}}},"c":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}},"p":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}}}}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"l":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"[":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}}},"docs":{}},"2":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"l":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"docs":{}},"docs":{}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}},"{":{"docs":{},"$":{"docs":{},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"/":{"docs":{},"*":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}}}}}}}}}}},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"0":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}},"b":{"docs":{},".":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},".":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{},"/":{"docs":{},"*":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"(":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"d":{"5":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"docs":{}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.01152073732718894},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.024193548387096774},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.04807692307692308}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}},"s":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"e":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.03260869565217391},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"custom-build.html":{"ref":"custom-build.html","tf":0.01238390092879257},"adapters.html":{"ref":"adapters.html","tf":0.008012820512820512},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}},"s":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0061162079510703364}},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"x":{"docs":{},"t":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"(":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.008012820512820512},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"j":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"adapters.html":{"ref":"adapters.html","tf":0.00641025641025641},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}}}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"i":{"docs":{},"c":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"f":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"p":{"docs":{},"m":{"docs":{"install.html":{"ref":"install.html","tf":0.043478260869565216},"adapters.html":{"ref":"adapters.html","tf":0.020833333333333332},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"contribute.html":{"ref":"contribute.html","tf":0.043478260869565216}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.010845986984815618},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008064516129032258},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"adapters.html":{"ref":"adapters.html","tf":0.01282051282051282},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.008676789587852495},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.027522935779816515},"population.html":{"ref":"population.html","tf":0.03363914373088685},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.019230769230769232},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"s":{"docs":{},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.017628205128205128}},"e":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"l":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.03686635944700461},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.030864197530864196},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"y":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"query-change-detection.html":{"ref":"query-change-detection.html","tf":10.037037037037036}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}},"u":{"docs":{},"s":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}},"u":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":3.3429487179487176}}}}}}}},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"r":{"docs":{},"e":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.017628205128205128}},"i":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.05555555555555555}},"e":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"l":{"docs":{},"i":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}}}},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":5.042801556420233},"replication-graphql.html":{"ref":"replication-graphql.html","tf":5.026315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.03626943005181347},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.01393188854489164},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.013227513227513227}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}}}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},",":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}},"a":{"docs":{},"c":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.02534562211981567},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645}}}}}}},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}},"u":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},")":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"c":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.034055727554179564},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"@":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}}}}},"d":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},"$":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.011673151750972763}},"e":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.020930232558139535},"rx-query.html":{"ref":"rx-query.html","tf":0.013824884792626729},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.029411764705882353},"middleware.html":{"ref":"middleware.html","tf":0.014112903225806451},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.018947368421052633},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"r":{"docs":{},"y":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"p":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"(":{"docs":{},"'":{"docs":{},"^":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"$":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}},"}":{"docs":{},"}":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"f":{"docs":{"population.html":{"ref":"population.html","tf":0.009174311926605505}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.012232415902140673}}},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.01529051987767584}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"g":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}},"v":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"i":{"docs":{},"s":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"u":{"docs":{},"s":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"install.html":{"ref":"install.html","tf":0.05434782608695652},"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.015789473684210527},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.018575851393188854},"plugins.html":{"ref":"plugins.html","tf":0.027649769585253458},"adapters.html":{"ref":"adapters.html","tf":0.00641025641025641},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":3.3413978494623655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"install.html":{"ref":"install.html","tf":0.03260869565217391},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.007739938080495356},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.008676789587852495},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"adapters.html":{"ref":"adapters.html","tf":0.019230769230769232},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"adapters.html":{"ref":"adapters.html","tf":0.016025641025641024}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"j":{"docs":{},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"o":{"docs":{},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"n":{"docs":{},"o":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"v":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}},"'":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}},"j":{"docs":{},"v":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":10.010845986984815},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":10.013953488372094},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"population.html":{"ref":"population.html","tf":0.012232415902140673},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"]":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},")":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.036290322580645164}}}},"[":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}}}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}},"j":{"docs":{"install.html":{"ref":"install.html","tf":0.021739130434782608},"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":10.012605042016807}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"e":{"docs":{},"m":{"docs":{},"n":{"docs":{},"t":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":10.001855287569573},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":10.001612903225807},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":10.011520737327189}}}}}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.06832298136645963}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}}}},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"w":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-database.html":{"ref":"rx-database.html","tf":0.008676789587852495},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"p":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"e":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"u":{"docs":{},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"d":{"docs":{},"e":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"t":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"z":{"docs":{},"e":{"docs":{},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},",":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"i":{"docs":{},"c":{"docs":{"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"y":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"o":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}}}}},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.016025641025641024}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"d":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},"!":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842}}}},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010752688172043012}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}},"n":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"p":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}},"p":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"r":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"e":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"m":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"i":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.043478260869565216},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.017628205128205128},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"d":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"'":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008064516129032258},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"leader-election.html":{"ref":"leader-election.html","tf":0.020689655172413793},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"f":{"docs":{},"e":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.01368421052631579},"custom-build.html":{"ref":"custom-build.html","tf":0.006191950464396285},"tutorials/server.html":{"ref":"tutorials/server.html","tf":3.3624338624338623}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}},"}":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}}}}},"i":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.02620967741935484}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.015184381778741865},"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.01627906976744186},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}}}},")":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"u":{"docs":{},"p":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"u":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}},":":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}},"n":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.008421052631578947}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},"f":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"w":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"i":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"i":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"r":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"v":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"o":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"p":{"docs":{},"a":{"docs":{},"w":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"c":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}},"i":{"docs":{},"f":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"i":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":0.0311284046692607},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007368421052631579}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"i":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"s":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.02411873840445269},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008064516129032258},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.009287925696594427},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"questions-answers.html":{"ref":"questions-answers.html","tf":0.07692307692307693}},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"?":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506}}},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"q":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.017628205128205128}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308}},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}},"y":{"docs":{},"(":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"r":{"docs":{},"c":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"u":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"s":{"docs":{"./":{"ref":"./","tf":0.018518518518518517},"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.021691973969631236},"rx-schema.html":{"ref":"rx-schema.html","tf":0.014842300556586271},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01935483870967742},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.011578947368421053},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.02786377708978328},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.03205128205128205},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":3.3521505376344085},"tutorials/server.html":{"ref":"tutorials/server.html","tf":3.349206349206349},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.037037037037037035}},".":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"s":{"docs":{},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"d":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"a":{"docs":{},"g":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"e":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}},"x":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"e":{"docs":{},"_":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.011627906976744186},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135}},"e":{"docs":{},"$":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00631578947368421}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"r":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.018518518518518517}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}}}}}}},"q":{"docs":{},"l":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.011217948717948718}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}}}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}}}},"i":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"p":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"d":{"docs":{},"e":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}}}},"r":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"l":{"docs":{},"l":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.00641025641025641},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"y":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"s":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.00641025641025641},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"!":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"s":{"docs":{},"!":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}},"s":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}},"e":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"custom-build.html":{"ref":"custom-build.html","tf":0.0046439628482972135}}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},":":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}}}}},"s":{"docs":{},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"s":{"docs":{},"'":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"+":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"@":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"#":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"\"":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}}},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.02040816326530612}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}},"$":{"docs":{},"{":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"}":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"j":{"docs":{},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"o":{"docs":{},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"n":{"docs":{},"o":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}}}}}},"h":{"1":{"docs":{},"r":{"docs":{},"g":{"9":{"docs":{},"u":{"docs":{},"g":{"docs":{},"d":{"docs":{},"d":{"3":{"0":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}}}},"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.01529051987767584}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"1":{"0":{"1":{"0":{"2":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"'":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"'":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678}}}}}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"/":{"docs":{},"j":{"docs":{},"p":{"docs":{},"e":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},"]":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"adapters.html":{"ref":"adapters.html","tf":0.016025641025641024}}}}}}}}}}},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},")":{"docs":{},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"e":{"docs":{},"o":{"docs":{},"w":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}}}}}}}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},";":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.012232415902140673},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.011131725417439703},"population.html":{"ref":"population.html","tf":0.01834862385321101},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"1":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"2":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"}":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"s":{"docs":{},"e":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}},"o":{"docs":{},"b":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"population.html":{"ref":"population.html","tf":0.009174311926605505}}}}}},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"f":{"docs":{},"o":{"docs":{},"o":{"1":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"2":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.01152073732718894}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"}":{"docs":{},"}":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"b":{"docs":{},"a":{"docs":{},"r":{"2":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}}}}}},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"i":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}},"f":{"docs":{},"a":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"b":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"o":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"e":{"docs":{},"w":{"docs":{},"'":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"p":{"docs":{},"m":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}}}}},"%":{"docs":{},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{},"e":{"docs":{},"%":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},".":{"docs":{},"*":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"*":{"docs":{},"'":{"docs":{},"}":{"docs":{},"}":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}},"a":{"docs":{},"a":{"docs":{},"h":{"docs":{},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258}},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.009174311926605505}}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}}}},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"t":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"/":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}},"/":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"/":{"docs":{"install.html":{"ref":"install.html","tf":0.021739130434782608},"rx-database.html":{"ref":"rx-database.html","tf":0.03036876355748373},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-collection.html":{"ref":"rx-collection.html","tf":0.04838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.046511627906976744},"rx-query.html":{"ref":"rx-query.html","tf":0.055299539170506916},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.029411764705882353},"middleware.html":{"ref":"middleware.html","tf":0.04838709677419355},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.009174311926605505},"data-migration.html":{"ref":"data-migration.html","tf":0.03865979381443299},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.024210526315789474},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.025906735751295335},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06912442396313365},"custom-build.html":{"ref":"custom-build.html","tf":0.06656346749226007},"plugins.html":{"ref":"plugins.html","tf":0.018433179723502304},"adapters.html":{"ref":"adapters.html","tf":0.046474358974358976},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.03225806451612903},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.042328042328042326}},">":{"docs":{"population.html":{"ref":"population.html","tf":0.012232415902140673}}},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}}}}},"*":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"*":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}}}}},"=":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01935483870967742},"rx-document.html":{"ref":"rx-document.html","tf":0.03255813953488372},"rx-query.html":{"ref":"rx-query.html","tf":0.03456221198156682},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.05042016806722689},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"orm.html":{"ref":"orm.html","tf":0.04128440366972477},"population.html":{"ref":"population.html","tf":0.03363914373088685},"data-migration.html":{"ref":"data-migration.html","tf":0.01804123711340206},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.018947368421052633},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.024691358024691357},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.041474654377880185},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729},"adapters.html":{"ref":"adapters.html","tf":0.030448717948717948},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.03763440860215054},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.021164021164021163}},">":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013015184381778741},"rx-collection.html":{"ref":"rx-collection.html","tf":0.016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.011627906976744186},"rx-query.html":{"ref":"rx-query.html","tf":0.013824884792626729},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.014112903225806451},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.027237354085603113},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.009473684210526316},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}},"=":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"=":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"@":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.043478260869565216},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"s":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008064516129032258},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.03103448275862069},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":10},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"v":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129}},"d":{"docs":{},"b":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.011217948717948718}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.022435897435897436}}}}}}}}},"s":{"docs":{},"s":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}}}}},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}},"e":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"f":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},"e":{"docs":{},"d":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"v":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}},"n":{"docs":{},"k":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06451612903225806},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.02304147465437788}},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":10}}}}}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"o":{"docs":{},"k":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517}},"i":{"docs":{},"c":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"a":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"n":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}},"e":{"docs":{},"r":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.009216589861751152},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"plugins.html":{"ref":"plugins.html","tf":0.018433179723502304}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"(":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.006191950464396285},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005376344086021506},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"e":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"e":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"g":{"docs":{},"o":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"plugins.html":{"ref":"plugins.html","tf":0.018433179723502304},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"a":{"docs":{},"l":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}},"m":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{},"s":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.013227513227513227},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.03225806451612903}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.00967741935483871},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764}},"/":{"docs":{},"d":{"docs":{},"r":{"docs":{},"m":{"docs":{"orm.html":{"ref":"orm.html","tf":10}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"in-memory.html":{"ref":"in-memory.html","tf":0.031088082901554404},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"f":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"e":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.02620967741935484}}}}}}},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135}}}}}},"s":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}},"g":{"docs":{},"e":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.021739130434782608}}}},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"a":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205}}}}}}},"n":{"docs":{},"d":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.03260869565217391},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}},"l":{"docs":{},"s":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"replication.html":{"ref":"replication.html","tf":0.01556420233463035},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.006191950464396285},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.020833333333333332},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"'":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"population.html":{"ref":"population.html","tf":10.015290519877675}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"r":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"c":{"docs":{},"k":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"r":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"v":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}},".":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.006507592190889371},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.01529051987767584},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}},"l":{"docs":{},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.04608294930875576},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}},"x":{"docs":{},"i":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}}}}}}}},"s":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}}}}}}}},"l":{"docs":{},"u":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.01238390092879257},"plugins.html":{"ref":"plugins.html","tf":10.03225806451613},"adapters.html":{"ref":"adapters.html","tf":0.004807692307692308},"tutorials/server.html":{"ref":"tutorials/server.html","tf":3.349206349206349}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729}}},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"n":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}}}},"y":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}},"u":{"docs":{},"r":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.01368421052631579},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00631578947368421}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"u":{"docs":{},"d":{"docs":{},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}}}},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"u":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.010845986984815618},"rx-schema.html":{"ref":"rx-schema.html","tf":0.014842300556586271},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.023346303501945526},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00631578947368421},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.004210526315789474},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}},"/":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}},"t":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105}}}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}},"b":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.03103448275862069}},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"k":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"contribute.html":{"ref":"contribute.html","tf":0.062111801242236024}},"s":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"/":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},":":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"a":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},"m":{"docs":{},"p":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}}}}}}}}}},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"l":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},"e":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"n":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}}}}},"m":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"s":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"n":{"docs":{},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247}}}}},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"population.html":{"ref":"population.html","tf":0.0030581039755351682},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}},"w":{"docs":{},"o":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"o":{"docs":{},"p":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.02100840336134454},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.003157894736842105},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0456989247311828}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.02411873840445269},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.04281345565749235},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"o":{"docs":{},"f":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}},"d":{"docs":{},"!":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"s":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":3.3413978494623655}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387},"custom-build.html":{"ref":"custom-build.html","tf":0.02786377708978328}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0030959752321981426}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}},"u":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032},"rx-document.html":{"ref":"rx-document.html","tf":0.01627906976744186},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0030581039755351682}}}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"j":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.00927643784786642},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"data-migration.html":{"ref":"data-migration.html","tf":0.023195876288659795},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0074211502782931356},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.012232415902140673},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"i":{"docs":{},"a":{"docs":{"population.html":{"ref":"population.html","tf":0.0061162079510703364},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}},"{":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0575139146567718},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004838709677419355},"rx-document.html":{"ref":"rx-document.html","tf":0.011627906976744186},"rx-query.html":{"ref":"rx-query.html","tf":0.016129032258064516},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.06116207951070336},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.031578947368421054},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304},"plugins.html":{"ref":"plugins.html","tf":0.027649769585253458},"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.043010752688172046},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.010582010582010581}},"}":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.008064516129032258}}}},"$":{"docs":{},"e":{"docs":{},"q":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"}":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007936507936507936}}}}}}},"}":{"docs":{"install.html":{"ref":"install.html","tf":0.010869565217391304},"rx-schema.html":{"ref":"rx-schema.html","tf":0.014842300556586271},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.0069124423963133645},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.045871559633027525},"population.html":{"ref":"population.html","tf":0.04281345565749235},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.015789473684210527},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.003205128205128205},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.016129032258064516},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.010845986984815618},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0064516129032258064},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.03211009174311927},"population.html":{"ref":"population.html","tf":0.021406727828746176},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007368421052631579},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.019230769230769232},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.023809523809523808}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.027829313543599257},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.04233870967741935},"population.html":{"ref":"population.html","tf":0.012232415902140673},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},";":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0061162079510703364},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00631578947368421},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0026455026455026454}}},"]":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"}":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"`":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}},"$":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}},"e":{"docs":{},"q":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},"o":{"docs":{},"r":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"{":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"}":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}},"*":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005263157894736842},"plugins.html":{"ref":"plugins.html","tf":0.03225806451612903},"adapters.html":{"ref":"adapters.html","tf":0.0016025641025641025},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}},"/":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.013824884792626729},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.008064516129032258}},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}}}},"}":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0021691973969631237},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.004338394793926247},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0032258064516129032}},"u":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.01152073732718894}}}}}}}}}}}},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"'":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004608294930875576}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}},"g":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"docs":{}},"docs":{}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.002105263157894737}}}}}}}},"[":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"]":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}}}}}}}}},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}}}}}}}}}},"]":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},".":{"docs":{},"]":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"]":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"!":{"docs":{},"]":{"docs":{},"!":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"^":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.011131725417439703},"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}}}},"o":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0015479876160990713}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0030581039755351682}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.005291005291005291}}}},"e":{"docs":{},"p":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}},"z":{"0":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0037105751391465678},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}},"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.006191950464396285}},"]":{"docs":{},"[":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0018552875695732839}}}},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0016129032258064516}}}}},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0055658627087198514}}},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"+":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013440860215053764},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"_":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},":":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.002304147465437788}}}}}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"'":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},"d":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.002688172043010753}}}},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.0030581039755351682}}},"♛":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"!":{"docs":{},"=":{"docs":{},"=":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684},"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}},"`":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}}}}}}}}},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0010526315789473684}}}},"&":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":3.333333333333333}},"&":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"|":{"docs":{},"|":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004608294930875576}}}}},"length":4437},"corpusTokens":["!==","\"${doc.name}\",","\"alice\",","\"array\",","\"attachments\":","\"birthyear\":","\"color\":","\"damage\":","\"deleted\":","\"dependencies\":","\"describ","\"description\":","\"encrypted\":","\"final\":","\"foobar\",","\"git+https://git@github.com/pubkey/rxdb.git#commithash\"","\"healthpoints\":","\"hero","\"id\":","\"items\":","\"lastname\":","\"max\":","\"maxitems\":","\"min\":","\"mysecretfield\":","\"name\":","\"number\"","\"number\",","\"object\",","\"primary\":","\"properties\":","\"required\":","\"rxdb\":","\"secret\":","\"skills\":","\"string\"","\"string\",","\"title\":","\"type\":","\"uniqueitems\":","\"updatedat\":","\"version\":","\"wilson\",","$","$.subscribe()","$eq:","$exists:","$human)","$inc:","$or","$set:","${doc.updatedat},","&","&&","'","'!!';","'%like%'","'');","'',","'.*foo.*'}})","'/',","'/db',","'/root/user/project/mydatabase',","'aaah!!'","'aaah!!';","'adapter');","'alice'","'alice',","'anyvalue';","'array',","'bar'","'bar');","'bar';","'bar'});","'bar1'","'bar2'","'bar2');","'base","'bi","'bob'","'bob',","'carol'","'carol',","'carolina',","'cat.jpg'","'cat.txt',","'clientdb',","'dave'","'deleted',","'describ","'dies'.","'fifoo'","'fifoofa'","'foo'","'foo',","'foo'.","'foo'}})","'foo1',","'foo2',","'foobar'","'foobar');","'foobar',","'foobar';","'foobar2'","'foobar2');","'foobar2';","'foofa'","'foooobarnew'","'foooobarnew';","'gibson',","'got","'h1rg9ugdd30o',","'heroes'","'heroes',","'heroesdb'","'heroesdb',","'http://example.com/graphql',","'http://localhost:10102/db/',","'http://localhost:3000/db/items'","'human","'human'","'human',","'humans',","'i","'i');","'idb'","'image/jpeg'","'integer'","'integer',","'items',","'kelso'","'kelso';","'lastname']","'localstorage');","'localstorage',","'memory'","'memory',","'meow","'messages',","'mycollection.hello()'","'mydatabase',","'mydb',","'myfield',","'myid',","'mypassword',","'name","'name'","'new'","'node","'npm","'object',","'piotr',","'potter',","'pouchdb","'react","'rxdb';","'rxdb/plugins/adapt","'rxdb/plugins/ajv","'rxdb/plugins/attachments';","'rxdb/plugins/core';","'rxdb/plugins/encryption';","'rxdb/plugins/error","'rxdb/plugins/in","'rxdb/plugins/json","'rxdb/plugins/key","'rxdb/plugins/lead","'rxdb/plugins/loc","'rxdb/plugins/no","'rxdb/plugins/repl","'rxdb/plugins/replication';","'rxdb/plugins/schema","'rxdb/plugins/server';","'rxdb/plugins/update';","'rxdb/plugins/valid","'rxdb/plugins/validate';","'rxdb/plugins/watch","'sendercountry'","'skeletor'","'steve');","'string'","'string',","'subscript","'temperature',","'text/plain'","'unsaf","'weatherdb',","'websql'","'websql',","'world';","'ws://example.com/subscriptions',","(!doc)","(!global.atob)","(!global.btoa)","()","()=>'bar'","(a.id","(a.updatedat","(all","(also","(anyth","(async)","(beta)","(default)","(doc.id","(doc.updatedat","(e.g.","(olddata)","(optional)","(optional),","(optional=false)","(optional=true)","(or","(password","(primari","(proto)","(remot","(req,","(short","(string)","(string|blob|buffer)","(v:","(version:","(via",")",");","*","*/","*/).then(()","*/});","+",".","..","...",".active$",".awaitinitialreplication()",".cancel()",".canceled$",".collection()",".create()",".error$",".exec()'",".exec().then(doc",".exec().then(docu",".exec();",".find()",".findone()",".gt(18)",".gt(18);",".insert()",".isstopped()",".migratepromise():",".recieved$",".reduce((prev,",".run()",".save()",".send$",".sort('age')",".subscribe(changeev",".subscribe(newnam",".then(()",".then(collect",".then(json",".then(respons",".upsert()",".where('age')",".where()","/","/*","/**","//","//>","//[insert","0","0,","0.","02","1","10","10);","100","100));","1000","1000);","12","12t23:03:05+00:00","1486940585","1564783474,","18","19","1900,","1:","1;","2","2'","2)","2.","20","2017","2050","2:","3.","3000,","3000`));","33","409","5","5'","5)","5,","50","50,","50;","6'","6*5=30","60","64","64'","7","77;","8.0.0,","9]$","9]*$.","9_]*]?[a","=","==","===","=>",">","@babel/polyfil","@link","@param","[","[\"color\"],","['firstname',","[]","[];","[default=true]","[human!]!","[rxdocument,","[rxdocument,rxdocument,rxdocument..]","]","^[a","_","_deleted:tru","`","`;","`subscript","`{","abov","abstract","access","access.","accident","accomplish","action","activ","active$","actual","ad","adapt","adapter,","adapter.","adapter:","adapters.","add","addit","additionalproperti","advantag","advantages:","affect","afterward","afterwards.","ag","again","again.","age:","age?:","ajv","algorithm","aliv","alive$","allattachments$","allattachments()","alldoc","alldocs.length;","allow","alreadi","altern","alway","amount","amount:","anoth","another.","answer","anyfield","anyth","anyuser.loggedin","anyuser.save();","anyway","api","app","app);","app,","app.","appear","appli","applic","apply.","appropri","apps,","arg","args.human;","args.lastid)","args.limit);","args.minupdatedat)","around,","array","array.","ask","assign","assigned.","assum","assur","async","asynchron","asynchronous.","asyncstorag","asyncstorage'","asyncstorage'));","asyncstorage.","asyncstoragedown","at.","atom","atomicset()","atomicupd","atomicupdate()","atomicupsert()","attach","attachment'","attachment.","attachment.getdata();","attachment.getstringdata();","attachment.remove();","attachments,","attachments:","attribut","attribute.","attributes/methods.","autmat","automat","automatically,","automigr","automigrate:","avail","avoid","await","awaitpersistence()","awesom","b)","b.id)","b.updatedat)","babel","back","bandwidth","bar.","base","basic","batch","batchsize:","batteri","becom","befor","before.","behav","behavior","behavior.","behaviorsubject","being',","belong","best","bestfriend","bestfriend:","beta","better","between","big","bigger","binari","bind","birthyear","bit","blob","blobbuff","block","boolean","boolean!","both","both.","bound","broadcast","browser","browsers,","browsers.","browsers:","buffer.","bug","bug,","bugfix","build","build,","build.","builder","builds.","bulk","bulkinsert","bulkinsert()","c++","cach","calcul","call","call)","call.","called.","can't","cancel","cancel()","canceled,","canceled.","capabl","case","case,","caus","cd","certain","chain","chang","change$","change.","changed.","changeev","changefunct","changeobserv","changeobservable.subscribe({","changes'));","changes';","changes,","changes.","changestream.","channel","characters.","charts,","check","check'","check'));","check';","checkadapt","checkadapter()","cherri","choos","claim","class","classes,","clean","cleanup","clear","client","client'","client.","clientdb","clientdb.collection({","clientdb.items.find().exec();","clientdb.items.sync({","clone","closed,","closed.","code","code.","collect","collection'","collection():","collection,","collection.","collection.options.foo();","collection2","collection2);","collection:","collections,","collections.","color","combin","come","commit","commit.","commithash","common","commonj","community.","compar","comparison","compat","complete$","complete.","completed.","completes.","complex","compliant","composit","compound","compoundindex","compress","compress,","compression'));","compression',","compression';","comput","configur","conflict","conflict,","conflicts,","conform","connect","connections.","cons:","console.","console.dir(active));","console.dir(alive));","console.dir(bestfriend);","console.dir(change));","console.dir(changeevent));","console.dir(collection));","console.dir(completed));","console.dir(doc));","console.dir(docdata));","console.dir(documents));","console.dir(error));","console.dir(error);","console.dir(friends);","console.dir(isname);","console.dir(json));","console.dir(json);","console.dir(mother);","console.dir(mydatabase.heroes.name);","console.dir(ok);","console.dir(results);","console.dir(state),","console.error(error),","console.log('done')","console.log('done'));","console.log('got","console.log('initi","console.log('insert","console.log('long","console.log('nam","console.log('someth","console.log(`serv","console.log(amount);","console.log(attachment.scream());","console.log(collect","console.log(doc.firstname);","console.log(doc.myfield);","console.log(doc.scream());","console.log(doc.whoami());","console.log(heroes.scream());","console.log(heroes.whoami());","console.log(laststate);","console.log(mydocument.deleted);","console.log(mydocument.get('firstname'));","console.log(mydocument.name);","console.log(mydocument.nested.attribute);","const","construct","constructed.","contain","content","continu","contribut","contributing!","contribution,","control","coordin","cor","cordova","cordova'","cordova.sqliteplugin.","core","core,","corner.","correctli","correspond","cors,","cors:","cost.","couchdb","couchdb,","couldn't","count","countalldocuments:","countri","cours","cpu.","creat","created.","createhuman($human:","creation","crown","crypto","cur)","cur.username+","current","custom","cycl","d","d.id","damag","data","data');","data,","data.","data:","databas","database)","database,","database.","database:","databases,","databases.","datamigr","date","date().gettime()","date(olddoc.time).gettime();","dates.","db","db.","db.collection({","db.heroes;","db.items.insert({","db.server({","db.temperature.insert({","db.waitforleadership()","db1","db2","db['heroes']","debug","debug,","debugging.","decid","declar","decode;","decrypt","default","default,","default.","default:","default=tru","defin","definit","definition.","degrees:","delet","deleted$","deleted$.","deleted,","deleted:","deletedflag:","denied$","depend","deprecated.","describ","description:","design","destroy","destroy()","destroyed.","detect,","detection,","dev","develop","developer.","developing,","devic","device,","di","died.","dies.","differ","digest","direct","direction:","directli","directly.","disabl","disablekeycompress","disadvantag","disc","discuss","disk","display","dist","distribut","do","doc","doc.bestfriend_;","doc.firstname);","doc.id);","doc.populate('bestfriend');","doc.putattachment({","doc.scream('aah!');","doc.updatedat","doc:","doc;","docdata","docdata,","docs$","docs.","docs:instal","docs:serv","document","document'","document,","document.","document.queryselector('body').innerhtml","documentdata","documents'));","documents';","documents,","documents.","documents.filter(d","documents.push(doc);","documents.sort((a,","does,","doesdocumentdatamatch()","doesn't","don't","done","done,","done.","done:","down","down');","download","drive.","driver,","due","dump","dump'));","dump';","dump()","dure","each","easier","easily.","easy,","eg:","elect","election'));","election';","electron","else.","emit","emptydatabase.importdump(json)","enabl","enabled.","encode;","encode}","encrypt","encrypted,","encrypted.","encrypted:","endpoint","endpoint,","endpoint.","endpoints.","engine.","enough","ensur","environ","environment,","environment.","equal","equal,","equival","error","error$","error('stop');","error.","error:","errors,","es5","es5.","es6","es8","especi","etc...","eval'","eval()","eval.","even","event","events,","events.","everyth","exact","exactli","exampl","example,","example.","example:","exec()","execut","exist","exist.","exists.","expect","expected.","explicitli","export","expos","express","express();","extend","extrem","fail","failur","fals","false);","false,","false.","false;","family:","fast","faster","faster.","fe:","featur","feature,","feedforrxdbrepl","feedforrxdbreplication(lastid:","feedforrxdbreplication:","fetch","fetch('http://myserver.com/api/countrybycoordinates/'+coordinates+'/')","fetch('https://example.com/api/temp/');","field","field,","field.","fieldnam","fieldname.","fieldnames,","fields.","file","file.","file:","files,","files.","filesystem","filesystem.","fill","filter","filterforminupdatedatandid.slice(0,","final","final,","final:","find","find()","findon","findone()","finish","fire","first","firstnam","firstname:","fistname:","fit","flag","flags.","flexibl","flow","folder","folder)","folder.","follow","following:","foo","foo:","foobar","for,","forc","foreign","form","found","found.","free","friend","friends:","full","fulli","function","function(){","function(olddoc){","function(password)","function(this:","function.","functionality.","functions,","functions.","gain","gener","generated.","get","get$()","get()","get:","getattachment()","getdata()","getlocal()","getstringdata()","getter","getter.","getter/sett","git","gitter.","given","global","global.atob","global.btoa","go","gone","good","graphql","graphql'));","graphql';","grate","greater","hand","hand'","handel","handi","handl","handled.","handled:","handler","happen","happens,","hard","hash","have","header","healthpoint","heatmaps.","heavi","height","help","helper","helpful","here","here,","here.","here]","hero","hero\",","hero.","herocollect","herocollection)","herocollection,","herocollectionmethod","herocollectionmethods:","herodocmethod","herodocmethods,","herodocmethods:","herodoctyp","herodocu","herodocument,","herodocument.","heroes.findone().exec();","heroes.insert({","heroes:","heroschema,","heroschema:","higher","hint","hook","hook,","hook?","hooks)","hooks.","hooks:","http","http'));","http';","http://localhost:3000/db","http://localhost:3000/db/item","http://localhost:4000/","https://github.com/pubkey/rxdb.git","https://github.com/pubkey/rxdb/blob/master/src/plugin.ts#l22","https://pouchdb.com/api.html#repl","huge","human","human',","human:","humanchang","humaninput","humaninput)","humaninput):","humanscollection.findone('alice').exec();","humanscollection.findone('bob').exec();","humanscollection.insert({","hybrid","id","id!,","id,","id.","id:","idb","idb'));","ideas:","ident","identifi","idl","idle.","if(olddoc.tim","ignoredupl","ignoreduplicate:","imag","imagin","immedi","immut","immutable.","implement","impli","import","import/export","important:","importdump()","imported.","improv","in,","in.","includ","incom","increas","index","index,","index:","indexed,","indexeddb","indexes,","indic","info","inherit","initi","inmemori","inmemorycollection,","input","input.","insensit","insert","insert$","insert()","insert.","inserted.","insertlocal()","inserts,","insid","inspect","instal","instanc","instance,","instance.","instances.","instantli","instead","instead.","int!):","int!,","integ","integr","intent","interact","intern","internally,","internally.","internet,","interv","introduct","invalid","io","is:","isnam","isname;","isrxcollect","isrxdatabas","isrxdocu","isrxqueri","issu","it'","it,","it.","items:","itself","javascript","javascript,","join","js","json","jsonschema","jsx.","jump","keep","key","key:","keycompress","keycompression:","keycompressor","keynam","keyword","keyword:","king!');","kitty',","know","known","last","lastnam","lastname,","lastname:","laststat","later","later.","latest","lead","leader","leader,","leader.","leaderelect","leaderelection.","learn","leav","length","less","let","level","leveldb","leveldb'));","leveldown","library.","life","lifecycl","like:","limit","limit:","limited;","link","list","list:","listen","live","live:","liveinterv","liveinterval:","load","local","localdoc","localdoc.foo","localdoc.foo;","localdoc.get$('foo').subscribe(valu","localdoc.get('foo');","localdoc.remove();","localdoc.save();","localdoc.set('foo',","localdocu","locally,","localstorage'));","locat","log","logic","long","longer","look","looks.","lost","lot","machine.","made","main","mainapp","mainapp.listen(3000,","mainapp.use('/',","mainapp.use('/db',","make","manag","mango","mani","manipul","manipulate.","manual","map","mark","match","math.round(new","matter","maximum","md5","mean","means,","meant","memcol","memcol.awaitpersistence();","memcol.find().exec();","memcol.insert({foo:","memdown","memori","memory'));","memory';","memory)","memory.","memoryadapt","merg","messag","messagecol","messagecol.migratepromise(10);","messages'));","messages';","messages.","messageschemav1,","messeng","metadata.","meteor","method","method,","method.","methods,","methods.","methods:","middlewar","middlewares...","migrat","migrated.","migrated:","migratepromise;","migration.","migrationpromis","migrationstrategi","migrationstrategies:","mind","minupdatedat:","minute.","mirgrat","mistake,","mode","mode,","mode.","model","modifi","modifier:","modifyjs.","modul","module,","module.","moment","mongo","mongoose,","mongoose.","more","mother","mother:","mount","mqueri","ms","much","multiinst","multiinstance:","multipl","mupltipl","mutat","mycollect","mycollection.$.subscribe(changeev","mycollection.atomicupsert(docdata);","mycollection.bulkinsert([{","mycollection.customcleanupfunction();","mycollection.destroy();","mycollection.dump()","mycollection.dump(true)","mycollection.find().exec()","mycollection.find().where('age').gt(18)","mycollection.find().where('age').gt(18).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').gt(18);","mycollection.find().where('age').gt(20).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').lt(18);","mycollection.find().where('name').eq('foo')","mycollection.find();","mycollection.find({$or:","mycollection.find({name:","mycollection.findone('foo')","mycollection.findone().exec();","mycollection.findone().where('name').eq('foo')","mycollection.getlocal('foobar');","mycollection.importdump(json)","mycollection.inmemory();","mycollection.insert$.subscribe(changeev","mycollection.insert({","mycollection.insert({/*","mycollection.insertlocal(","mycollection.newdocument({","mycollection.postcreate(function(plaindata,","mycollection.postinsert(function(plaindata,","mycollection.postremove(function(plaindata,","mycollection.postsave(function(plaindata,","mycollection.preinsert(function(plaindata){","mycollection.preremove(function(plaindata,","mycollection.presave(function(plaindata,","mycollection.remove$.subscribe(changeev","mycollection.remove();","mycollection.sync({","mycollection.syncgraphql()","mycollection.syncgraphql().","mycollection.syncgraphql({","mycollection.update$.subscribe(changeev","mycollection.upsert(docdata);","mycollection.upsert({","mycollection.upsertlocal(","mydatabas","mydatabase.collection({","mydatabase.destroy();","mydatabase.dump()","mydatabase.dump(true)","mydatabase.heroes.countalldocuments();","mydatabase.heroes.insert({","mydatabase.heroes.postinsert(","mydatabase.insertlocal(","mydatabase.remove();","mydatabase.requestidlepromise().then(()","mydatabase.requestidlepromise(1000","mydatabase:","mydatabasecollect","mydb.$.subscribe(changeev","mydocument.$","mydocument.allattachments$.subscribe(","mydocument.allattachments();","mydocument.atomicset('firstname',","mydocument.atomicset('name',","mydocument.atomicset('nested.attribute',","mydocument.atomicupdate(changefunction);","mydocument.deleted$.subscribe(st","mydocument.family.mother_;","mydocument.firstnam","mydocument.firstname$.subscribe(newnam","mydocument.friends_;","mydocument.get$('name')","mydocument.get('name');","mydocument.getattachment('cat.jpg');","mydocument.nam","mydocument.name;","mydocument.putattachment({","mydocument.remove();","mydocument.save();","mydocument.set('firstname',","mydocument.tojson();","mydocument.update({","mydocument.whatever.nestedfield","mydocument.whatever.nestedfield;","myheroschema","mymethod.bind(mydocument)","myplugin","mypostinserthook(","myrxcollection.pouch.put({/*","myrxcollection.watchforchanges();","myschema","myschema,","name","name,","name.","name:","name:foobar","names.","nativ","native'","native.","need","need.","ness","nest","nestedvalu","network","never","new","new,","newdocument()","newer","newest","newli","newname));","newname;","next","next(data)","node","node,","nodej","nodejs.","non","normal","nosql","not.","note","noth","notic","notice:","notif","notifiers,","now","now,","npm","null","null,","null;","number","number,","number.","number;","object","object,","object.","object.defineproperty(rxdocument,","objects.","observ","observables:","occur","off,","offlin","offline,","ok","ok,","old","olddata.ag","olddata.nam","olddata;","olddoc.coordinates;","olddoc.sendercountry=response;","olddoc.tim","olddoc;","older","olderdocu","omit","on","onc","once,","once.","one,","ongo","onhumanchang","onlin","open","oper","operations.","oplog","optim","optimis","option","optional.","options.","options:","origin","orm","orm/drm","orm/drm.","other.","otherwis","out","over","overview","overwrit","overwritable:","overwritten","package.json,","package.json.","page","parallel","paramet","parameter,","parameter.","parameters:","paramt","parent","parrallel","part","pass","passportid:","password","password.","password.length","password:","path","path:","peer","pend","per","percent:","percentag","perform","performance,","perman","permissions).","persist","phonegap","pick","piec","plain","plaindata.ag","plaindata.anyfield","play","pleas","plu","plugin","plugin.","plugins:","point","policies.","polling.","polyfil","polyfills,","popul","populate()","port","port:","possibl","post","postcreat","postinsert","postremov","postsav","pouch","pouch/couch","pouchadaptermemori","pouchdb","pouchdb'","pouchdb,","pouchhttpplugin","pouchset","pouchsettings:","power","pr","pre","prefil","preinsert","preremov","presav","prev","prevent","previou","primari","primary,","primary.","primary:","probabl","problem","process","process,","process.brows","produce,","product","production.","projects.","promis","promise(r","promise.","promise;","properli","properti","properties:","property.","pros:","proto.hello","protocol.","prototyp","prototypes:","provid","proxi","pseudo","pull","pull:","pullquerybuild","pullquerybuilder,","pullquerybuilder.","purg","push","push:","pushquerybuild","putattachment()","queri","queries,","queries.","query,","query.","query.$.subscribe(result","query.$.subscribe(us","query.exec();","query.remove();","query.update({","query:","querybuild","querybuilder,","querybuilder.","querychangedetect","querychangedetection:","queryobject","queryobject.exec();","queryobject.sort('name');","queryobjectsort","queryobjectsort.exec();","question","queu","quota","rare","re","react","reactiv","reactn","read","real","realli","realtim","realtime.","reason.","reassign","receiv","reciev","recogn","recommend","reconnect:","record","reduc","redund","ref","ref:","refer","referenc","refhuman","refind","regex","regex:","regexp","regexp('^foo$',","regexp}})","regist","regular","relat","releas","reli","relic","remains:","remot","remote:","remov","remove$","remove()","removed.","removeddoc","render","replac","replic","replicated,","replicated.","replication,","replication.","replications.","replicationst","replicationstate.","replicationstate.active$.subscribe(act","replicationstate.alive$.subscribe(al","replicationstate.awaitinitialreplication();","replicationstate.cancel();","replicationstate.change$.subscribe(chang","replicationstate.complete$.subscribe(complet","replicationstate.denied$.subscribe(docdata","replicationstate.docs$.subscribe(docdata","replicationstate.error$.subscribe(error","replicationstate.isstopped();","replicationstate.run();","repositori","repres","represent","reproduc","request","request,","requestidlecallback","requestidlepromise()","requir","require('@babel/polyfill');","require('asyncstorag","require('leveldown');","require('memdown');","require('rxdb');","require('rxdb/plugins/core');","required.","required:","res)","res.send('hello'));","reset","resolut","resolv","resourc","respons","response.json();","restart","result","result.","results.length);","results:","retry:","return","returning.","reus","rev","revis","right","rootvalu","row","run","run()","run:","running.","runtim","runtime,","runtime.","rx.collection.sync()","rxattach","rxattachemnt","rxattachment.","rxchangeevent.","rxcollect","rxcollection().awaitpersistence()","rxcollection().inmemory();","rxcollection,","rxcollection.","rxcollection.insert","rxcollection.newdocument(initaldata).","rxcollection.sync()","rxcollection.sync().","rxcollection:","rxcollection;","rxcollections,","rxdatabas","rxdatabase,","rxdatabase.","rxdatabase;","rxdb","rxdb'","rxdb,","rxdb.","rxdb.checkadapter('localstorage');","rxdb.create({","rxdb.isrxcollection(myobj);","rxdb.isrxdatabase(myobj);","rxdb.isrxdocument(myobj);","rxdb.isrxquery(myobj);","rxdb.plugin(memoryadapter);","rxdb.plugin(pouchadaptermemory);","rxdb.plugin(pouchhttpplugin);","rxdb.plugin(require('pouchdb","rxdb.plugin(require('rxdb/plugins/adapt","rxdb.plugin(require('rxdb/plugins/ajv","rxdb.plugin(require('rxdb/plugins/attachments'));","rxdb.plugin(require('rxdb/plugins/encryption'));","rxdb.plugin(require('rxdb/plugins/error","rxdb.plugin(require('rxdb/plugins/in","rxdb.plugin(require('rxdb/plugins/json","rxdb.plugin(require('rxdb/plugins/key","rxdb.plugin(require('rxdb/plugins/lead","rxdb.plugin(require('rxdb/plugins/loc","rxdb.plugin(require('rxdb/plugins/no","rxdb.plugin(require('rxdb/plugins/repl","rxdb.plugin(require('rxdb/plugins/replication'));","rxdb.plugin(require('rxdb/plugins/schema","rxdb.plugin(require('rxdb/plugins/server'));","rxdb.plugin(require('rxdb/plugins/update'));","rxdb.plugin(require('rxdb/plugins/valid","rxdb.plugin(require('rxdb/plugins/validate'));","rxdb.plugin(require('rxdb/plugins/watch","rxdb.plugin(rxdbadaptercheckmodule);","rxdb.plugin(rxdbajvvalidatemodule);","rxdb.plugin(rxdbattachmentsmodule);","rxdb.plugin(rxdbencryptionmodule);","rxdb.plugin(rxdberrormessagesmodule);","rxdb.plugin(rxdbinmemorymodule);","rxdb.plugin(rxdbjsondumpmodule);","rxdb.plugin(rxdbkeycompressionmodule);","rxdb.plugin(rxdbleaderelectionmodule);","rxdb.plugin(rxdblocaldocumentsmodule);","rxdb.plugin(rxdbnovalidatemodule);","rxdb.plugin(rxdbreplicationgraphql);","rxdb.plugin(rxdbreplicationmodule);","rxdb.plugin(rxdbschemacheckmodule);","rxdb.plugin(rxdbservermodule);","rxdb.plugin(rxdbserverplugin);","rxdb.plugin(rxdbupdatemodule);","rxdb.plugin(rxdbvalidatemodule);","rxdb.plugin(rxdbwatchforchangesmodule);","rxdb.plugin(rxdbzschemavalidatemodule);","rxdb.plugin(sqliteadapter);","rxdb.removedatabase('mydatabasename',","rxdb:","rxdbadaptercheckmodul","rxdbajvvalidatemodul","rxdbattachmentsmodul","rxdbencryptionmodul","rxdberrormessagesmodul","rxdbinmemorymodul","rxdbjsondumpmodul","rxdbkeycompressionmodul","rxdbleaderelectionmodul","rxdblocaldocumentsmodul","rxdbnovalidatemodul","rxdbreplicationgraphql","rxdbreplicationmodul","rxdbschemacheckmodul","rxdbservermodul","rxdbserverplugin","rxdbupdatemodul","rxdbvalidatemodul","rxdbwatchforchangesmodul","rxdbzschemavalidatemodul","rxdocument","rxdocument)","rxdocument){","rxdocument,","rxdocument.","rxdocument.atomicupdate.","rxdocument.remov","rxdocument.sav","rxdocument.upd","rxdocument;","rxdocument[alice]","rxdocument],","rxgraphqlreplicationst","rxj","rxjsonschema","rxjsonschema,","rxlocaldocu","rxlocaldocument.","rxqueri","rxquery'","rxquery,","rxquery.","rxquery.find().","rxquery.update.","rxreplicationst","rxschema","rxschema.","safe","same","save","save'","save()","saved.","schema","schema\",","schema'","schema'));","schema',","schema';","schema,","schema.","schema.org.","schema:","schema?","schemacheck","schemas,","schemas.","schemaversions.","schemawithdefaultag","schemawithfinalag","schemawithindex","schemawithonetomanyrefer","scope","scream:","screams:","search","second","secondari","seconds.","secret","secur","see","see:","selectors.","self","semi","send","sender","sens","sent","separ","seri","server","server()","server,","server.","serverless.","serverurl,","server}","set","set()","set).","set.","sethuman(human:","sethuman:","setter","settimeout(res,","settings:","setup","sever","share","shell","shim","short","show","side","side,","side.","signal","similar","simpl","simple.","simplifi","simul","singl","site","size,","size.","skeletor!!'","skill","slow","small","solut","solv","someth","something,","sometim","soon","sort","sortabl","sorteddocu","sourc","space.","spawn","spec","special","specif","specifi","speed","spin","sql","sqlite","sqlite'","sqlite'));","sqliteadapt","sqliteadapterfactori","sqliteadapterfactory(sqlite)","src","standard","standart","start","startserv","startserver:","state","state);","state,","statement","static","static.","statics,","statics:","stay","stefe'","step","steve'","sth","still","stop","stopped.","storag","storage.","store","store.","stored.","strang","strategi","strategies:","stream","stream.","string","string!,","string)","string,","string.","string;","structur","submit","subscrib","subscript","subscriptioncli","subscriptionclient(","succeed","success","success:","suffix","suit","sum","support","sure","switch","sync","sync()","sync.","synchron","synchronis","syntax","syntax,","syntax.","system","systems.","tab","tab.","table.","tabs,","tabs.","take","task","tasks.","team","tell","temp","temp,","tempdoc","tempdoc.ag","tempdoc.lastnam","tempdoc.save();","temperatur","temporari","ten","terminates.","test","test/unit","test:nod","tests,","thank","them,","them.","then,","therefor","these","thing","things.","this,","this.","this.find().exec();","this.firstnam","this.nam","this.name;","this:","thousand","through","throw","thrown.","time","time,","time.","time:","timeout","times.","timespan,","timestamp","title:","to,","to.","togeth","tojson()","top","toplist","total:","track","traffic","transform","transmit","transpil","transport","tri","trigger","trivial","true","true);","true,","true.","true/fals","true;","truth","tutori","tutorial.","tutorial:","two","type","type.","type:","typed!","typeof","types,","typescript","typescript.","u","ui","undefin","underscor","underscore_","unencrypt","uniqu","unique,","unit","unix","unless","unset","until","up","updat","update$","update()","update/insert/remov","updatedat","updatedat.","updatedat:","upon","upsert","upsert()","upsertlocal()","url","url:","us","usag","use.","useabl","used:","useful","user","user'","user,","user.","users'","users.","userscollection.find().where('loggedin').eq(true).sort('points');","valid","valid.","validate'));","validate';","validatepassword:","validation.","valu","value,","value.","value:","values.","vanillaj","var","variabl","variables.","variables:","variou","veri","version","version,","version.","version:","versions.","via","visitor","wait","wait..","waitforleadership()","waitforleadership:","want","wast","watch","way","websit","websites,","websocket","websql","websql'));","websql.","what.touppercase();","what:","whatev","when:","whenev","where.","whether","while,","whoami:","whole","whose","wide","wide.","will,","window","window.","wipe","wire","with:","within","without","won't","work","work!","work.","worked,","works!","worry,","worst","write","written","wrong');","wrong.","ws';","wsclient","wsclient.request({","you'd","you'r","you.","youngest","z","z0","z][[a","z][a","za","zero","{","{$eq:","{$regex:","{app,","{decode,","{object}","{}","{},","||","}","})","});","},","};","}]);","}`;","}})","♛"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"\n \n \n \n\n\n\n A realtime Database for JavaScript Applications\n\n\n RxDB (short for Reactive Database) is a NoSQL-database for JavaScript Applications like Websites, hybrid Apps, Electron-Apps and NodeJs.\n Reactive means that you can not only query the current state, but subscribe to all state-changes like the result of a query or even a single field of a document.\n This is useful for UI-based apps that always display the realtime state to the user.\n RxDB can do a realtime replication with any CouchDB compliant endpoint and also with GraphQL endpoints.\n\n\n\n \n \n \n \n \n \n\n \n -->\n\n\n\n\n If you are new to RxDB, you should start here.\n\n"},"install.html":{"url":"install.html","title":"Install","keywords":"","body":"Install\nnpm\nTo install the latest release of rxdb and its dependencies and save it to your package.json, run:\nnpm i rxdb --save\npeer-dependency\nYou also need to install the peer-dependency rxjs if you have not installed it before.\nnpm i rxjs --save\npolyfills\nRxDB is coded with es8 and transpiled to es5. This means you have to install polyfills to support older browsers. For example you can use the babel-polyfills with:\nnpm i @babel/polyfill --save\nIf you need polyfills, you have to import them in your code.\nrequire('@babel/polyfill');\n\nLatest\nIf you need the latest development state of RxDB, add it as git-dependency into your package.json.\n \"dependencies\": {\n \"rxdb\": \"git+https://git@github.com/pubkey/rxdb.git#commitHash\"\n }\n\nReplace commitHash with the hash of the latest build-commit.\nImport\nTo import rxdb, add this to your javascript file:\n// es6\nimport RxDB from 'rxdb';\n\n// CommonJS\nvar RxDB = require('rxdb');\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-database.html":{"url":"rx-database.html","title":"RxDatabase","keywords":"","body":"RxDatabase\nA RxDatabase-Object contains your collections and handles the synchronisation of change-events.\nCreation\nThe database is created by the asynchronous .create()-function of the main RxDB-module. It has the following parameters:\nconst db = await RxDB.create({\n name: 'heroesdb', // \nname\nThe database-name is a string which uniquely identifies the database. When two RxDatabases have the same name and use the same storage-adapter, their data can be assumed as equal and they will share change-events between each other.\nDepending on the adapter this can also be used to define the storage-folder of your data.\nadapter\nRxDB uses adapters to define where the data is actually stored at. You can use different adapters depending on which environment your database runs in. This has the advantage that you can use the same RxDB code in different environments and just switch out the adapter.\nExample for browsers:\n\n// this adapter stores the data in indexeddb\nRxDB.plugin(require('pouchdb-adapter-idb'));\n\nconst db = await RxDB.create({\n name: 'mydatabase',\n adapter: 'idb' // name of the adapter\n});\n\n Check out the List of adapters for RxDB to learn which adapter you should use. \npassword\n(optional)\nIf you want to use encrypted fields in the collections of a database, you have to set a password for it. The password must be a string with at least 12 characters.\nmultiInstance\n(optional=true)\nWhen you create more than one instance of the same database in a single javascript-runtime, you should set multiInstance to true. This will enable the event-sharing between the two instances serverless. This should be set to false when you have single-instances like a single nodejs-process, a react-native-app, a cordova-app or a single-window electron-app.\nqueryChangeDetection\n(optional=false)\nIf set to true, this enables the QueryChangeDetection for the database.\nignoreDuplicate\n(optional=false)\nIf you create multiple RxDatabase-instances with the same name and same adapter, it's very likely that you have done something wrong.\nTo prevent this common mistake, RxDB will throw an error when you do this.\nIn some rare cases like unit-tests, you want to do this intentional by setting ignoreDuplicate to true.\nconst db1 = await RxDB.create({\n name: 'heroesdb',\n adapter: 'websql',\n ignoreDuplicate: true\n});\nconst db2 = await RxDB.create({\n name: 'heroesdb',\n adapter: 'websql',\n ignoreDuplicate: true // this create-call will not throw because you explicitly allow it\n});\n\npouchSettings\nYou can pass settings directly to the pouchdb database create options through this property. This settings will be added to all pouchdb-instances that are created for this database.\nFunctions\nObserve with $\nCalling this will return an rxjs-Observable which streams every change to data of this database.\nmyDb.$.subscribe(changeEvent => console.dir(changeEvent));\n\ndump()\nUse this function to create a json-export from every piece of data in every collection of this database. You can pass true as a parameter to decrypt the encrypted data-fields of your document.\nmyDatabase.dump()\n .then(json => console.dir(json));\n\n// decrypted dump\nmyDatabase.dump(true)\n .then(json => console.dir(json));\n\nimportDump()\nTo import the json-dumps into your database, use this function.\n// import the dump to the database\nemptyDatabase.importDump(json)\n .then(() => console.log('done'));\n\nserver()\nSpawns a couchdb-compatible server from the database. Read more\nwaitForLeadership()\nReturns a Promise which resolves when the RxDatabase becomes elected leader.\nrequestIdlePromise()\nReturns a promise which resolves when the database is in idle. This works similar to requestIdleCallback but tracks the idle-ness of the database instead of the CPU.\nUse this for semi-important tasks like cleanups which should not affect the speed of important tasks.\n\nmyDatabase.requestIdlePromise().then(() => {\n // this will run at the moment the database has nothing else to do\n myCollection.customCleanupFunction();\n});\n\n// with timeout\nmyDatabase.requestIdlePromise(1000 /* time in ms */).then(() => {\n // this will run at the moment the database has nothing else to do\n // or the timeout has passed\n myCollection.customCleanupFunction();\n});\n\ndestroy()\nDestroys the databases object-instance. This is to free up memory and stop all observings and replications.\nReturns a Promise that resolves when the database is destroyed.\nawait myDatabase.destroy();\n\nremove()\nRemoves the database and wipes all data of it from the storage.\nawait myDatabase.remove();\n// database is now gone\n\n// NOTICE: You can also remove a database without its instance\nRxDB.removeDatabase('mydatabasename', 'localstorage');\n\ncheckAdapter()\nChecks if the given adapter can be used with RxDB in the current environment.\nRxDB.plugin(require('pouchdb-adapter-localstorage')); // adapter must be added before\n\nconst ok = await RxDB.checkAdapter('localstorage');\nconsole.dir(ok); // true on most browsers, false on nodejs\n\nisRxDatabase\nReturns true if the given object is an instance of RxDatabase. Returns false if not.\nconst is = RxDB.isRxDatabase(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-schema.html":{"url":"rx-schema.html","title":"RxSchema","keywords":"","body":"RxSchema\nSchemas define how your data looks. Which field should be used as primary, which fields should be used as indexes and what should be encrypted. The schema also validates that every inserted document of your collections conforms to the schema. Every collection has its own schema. With RxDB, schemas are defined with the jsonschema-standard which you might know from other projects.\nExample\nIn this example-schema we define a hero-collection with the following settings:\n\nthe version-number of the schema is 0\nthe name-property is the primary. This means its an unique, indexed, required string which can be used to definitely find a single document.\nthe color-field is required for every document\nthe healthpoints-field must be a number between 0 and 100\nthe secret-field stores an encrypted value\nthe birthyear-field is final which means it is required and cannot be changed\nthe skills-attribute must be an array with objects which contain the name and the damage-attribute. There is a maximum of 5 skills per hero.\nAllows adding attachments and store them encrypted\n{\n \"title\": \"hero schema\",\n \"version\": 0,\n \"description\": \"describes a simple hero\",\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"primary\": true\n },\n \"color\": {\n \"type\": \"string\"\n },\n \"healthpoints\": {\n \"type\": \"number\",\n \"min\": 0,\n \"max\": 100\n },\n \"secret\": {\n \"type\": \"string\",\n \"encrypted\": true\n },\n \"birthyear\": {\n \"type\": \"number\",\n \"final\": true,\n \"min\": 1900,\n \"max\": 2050\n },\n \"skills\": {\n \"type\": \"array\",\n \"maxItems\": 5,\n \"uniqueItems\": true,\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"damage\": {\n \"type\": \"number\"\n }\n }\n }\n }\n },\n \"required\": [\"color\"],\n \"attachments\": {\n \"encrypted\": true\n }\n}\n\n\n\nCreate a collection with the schema\nawait myDatabase.collection({\n name: 'heroes',\n schema: myHeroSchema\n});\nconsole.dir(myDatabase.heroes.name);\n// heroes\n\nversion\nThe version field is a number, starting with 0.\nWhen the version is greater than 0, you have to provide the migrationStrategies to create a collection with this schema.\nkeyCompression\nSince version 8.0.0, the keyCompression is disabled by default. If you have a huge amount of documents it makes sense to enable the keyCompression and save disk-space.\nNotice that keyCompression can only be used on the top-level of a schema.\nconst mySchema = {\n keyCompression: true, // set this to true, to enable the keyCompression\n version: 0,\n title: 'human schema no compression',\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n }\n },\n required: ['firstName', 'lastName']\n};\n\nIndexes\nRxDB supports secondary indexes which are defined at the schema-level of the collection.\nTo add a simple index, add index: true inside field options.\nTo add compound-indexes, add them in an array to a compoundIndexes-field at the top-level of the schema-definition.\nIndex is only allowed on field types string, integer and number\nIndex-example\nconst schemaWithIndexes = {\n version: 0,\n title: 'human schema no compression',\n keyCompression: true,\n type: 'object',\n properties: {\n firstName: {\n type: 'string',\n index: true // \nattachments\nTo use attachments in the collection, you have to add the attachments-attribute to the schema. See RxAttachment.\ndefault\nDefault values can only be defined for first-level fields.\nWhenever you insert a document or create a temporary-document, unset fields will be filled with default-values.\nconst schemaWithDefaultAge = {\n version: 0,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer',\n default: 20 // \nfinal\nBy setting a field to final, you make sure it cannot be modified later. Final fields are always required.\nFinal fields cannot be observed because they anyway will not change.\nAdvantages:\n\nWith final fields you can ensure that no other in your dev-team accidentally modifies the data\nWhen you enable the query-change-detection, some performance-improvements are done\n\nconst schemaWithFinalAge = {\n version: 0,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer',\n final: true\n }\n },\n};\n\nencryption\nBy setting a field to encrypted: true it will be stored encrypted inside of the data-store. The encryption will run internally, so when you get the RxDocument, you can access the unencrypted value.\nYou can set all fields to be encrypted, even nested objects. You can not run queries over encrypted fields.\n\"mySecretField\": {\n \"type\": \"string\",\n \"encrypted\": true\n},\n\nNOTICE: Not everything within the jsonschema-spec is allowed\nThe schema is not only used to validate objects before they are written into the database, but also used to map getters to observe and populate single fieldnames, keycompression and other things. Therefore you can not use every schema which would be valid for the spec of json-schema.org.\nFor example, fieldnames must match the regex ^[a-zA-Z][[a-zA-Z0-9_]*]?[a-zA-Z0-9]$ and additionalProperties is always set to false. But don't worry, RxDB will instantly throw an error when you pass a invalid schema into it.\n\nIf you are new to RxDB, you should continue here\n"},"rx-collection.html":{"url":"rx-collection.html","title":"RxCollection","keywords":"","body":"RxCollection\nA collection stores documents of the same type.\nCreating a Collection\nTo create a collection you need a RxDatabase object which has the .collection()-method. Every collection needs a collection name and a valid RxSchema. Other attributes are optional.\nmyDatabase.collection({\n name: 'humans',\n schema: mySchema,\n pouchSettings: {} // (optional)\n statics: {}, // (optional) // ORM-functions for this collection\n methods: {}, // (optional) ORM-functions for documents\n attachments: {}, // (optional) ORM-functions for attachments\n options: {}, // (optional) Custom paramters that might be used in plugins\n migrationStrategies: {}, // (optional)\n autoMigrate: true, // (optional)\n})\n .then(collection => console.dir(collection));\n\nname\nThe name uniquely identifies the collection and should be used to refind the collection in the database. Two different collections in the same database can never have the same name. Collection names must match the following regex: ^[a-z][a-z0-9]*$.\nschema\nThe schema defines how your data looks and how it should be handled. You can pass a RxSchema object or a simple javascript-object from which the schema will be generated.\npouchSettings\nYou can pass settings directly to the pouchdb database create options through this property.\nORM-functions\nWith the parameters statics, methods and attachments, you can defined ORM-functions that are applied to each of these objects that belong to this collection. See ORM/DRM.\nMigration\nWith the parameters migrationStrategies and autoMigrate you can specify how mirgration between different schema-versions should be done. See Migration.\nGet a collection from the database\nTo get an existing collection from the database, call the collection name directly on the database:\n// newly created collection\nconst collection = await db.collection({\n name: 'heroes',\n schema: mySchema\n});\nconst collection2 = db.heroes;\n// or\n// const collection2 = db['heroes']\n\nconsole.log(collection == collection2);\n// true\n\nFunctions\nObserve $\nCalling this will return an rxjs-Observable which streams every change to data of this collection.\nmyCollection.$.subscribe(changeEvent => console.dir(changeEvent));\n\n// you can also observe single event-types with insert$ update$ remove$\nmyCollection.insert$.subscribe(changeEvent => console.dir(changeEvent));\nmyCollection.update$.subscribe(changeEvent => console.dir(changeEvent));\nmyCollection.remove$.subscribe(changeEvent => console.dir(changeEvent));\n\ninsert()\nUse this to insert new documents into the database. The collection will validate the schema and automatically encrypt any encrypted fields. Returns the new RxDocument.\nconst doc = await myCollection.insert({\n name: 'foo',\n lastname: 'bar'\n});\n\nbulkInsert()\nWhen you have to insert many documents at once, use bulk insert. This is much faster then calling .insert() multiple times.\nReturns an object with a success- and error-array.\nconst result = await myCollection.bulkInsert([{\n name: 'foo1',\n lastname: 'bar1'\n},\n{\n name: 'foo2',\n lastname: 'bar2'\n}]);\n\n// > {\n// success: [RxDocument, RxDocument],\n// error: []\n// }\n\nNOTICE: bulkInsert will not fail on update conflicts and you cannot expect that on failure the other documents are not inserted.\nnewDocument()\nSometimes it can be helpful to spawn and use documents before saving them into the database.\nThis is useful especially when you want to use the ORM methods or prefill values from form data.\nYou can create temporary documents by calling RxCollection.newDocument(initalData).\nconst tempDoc = myCollection.newDocument({\n firstName: 'Bob'\n});\n\n// fill in data later\ntempDoc.lastName = 'Kelso';\ntempDoc.age = 77;\n\n// saving a temporary document will transform it to a standard RxDocument\nawait tempDoc.save();\n\nupsert()\nInserts the document if it does not exist within the collection, otherwise it will overwrite it. Returns the new or overwritten RxDocument.\nconst doc = await myCollection.upsert({\n name: 'foo',\n lastname: 'bar2'\n});\n\natomicUpsert()\nWhen you run many upsert operations on the same RxDocument in a very short timespan, you might get a 409 Conflict error.\nThis means that you tried to run a .upsert() on the document, while the previous upsert operation was still running.\nTo prevent these types of errors, you can run atomic upsert operations.\nThe behavior is similar to RxDocument.atomicUpdate.\nconst docData = {\n name: 'Bob', // primary\n lastName: 'Kelso'\n};\n\nmyCollection.upsert(docData);\nmyCollection.upsert(docData);\n// -> throws because of parrallel update to the same document\n\nmyCollection.atomicUpsert(docData);\nmyCollection.atomicUpsert(docData);\nmyCollection.atomicUpsert(docData);\n\n// wait until last upsert finished\nawait myCollection.atomicUpsert(docData);\n// -> works\n\nfind()\nTo find documents in your collection, use this method. See RxQuery.find().\n// find all that are older then 18\nconst olderDocuments = await myCollection\n .find()\n .where('age')\n .gt(18)\n .exec(); // execute\n\nfindOne()\nThis does basically what find() does, but it returns only a single document. You can pass a primary value to find a single document more easily.\nTo find documents in your collection, use this method. See RxQuery.find().\n// get document with name:foobar\nmyCollection.findOne().where('name').eq('foo')\n .exec().then(doc => console.dir(doc));\n\n// get document by primary, functionally identical to above query\nmyCollection.findOne('foo')\n .exec().then(doc => console.dir(doc));\n\ndump()\nUse this function to create a json export from every document in the collection. You can pass true as parameter to decrypt the encrypted data fields of your documents.\nmyCollection.dump()\n .then(json => console.dir(json));\n\n// decrypted dump\nmyCollection.dump(true)\n .then(json => console.dir(json));\n\nimportDump()\nTo import the json dump into your collection, use this function.\n// import the dump to the database\nmyCollection.importDump(json)\n .then(() => console.log('done'));\n\nsync()\nThis method allows you to replicate data between other RxCollections, pouchdb instances or remote servers which support the couchdb-sync-protocol.\nFull documentation on how to use replication is here.\nremove()\nRemoves all known data of the collection and its previous versions.\nThis removes the documents, the schemas, and older schemaVersions.\nawait myCollection.remove();\n// collection is now removed and can be re-created\n\ndestroy()\nDestroys the collection's object instance. This is to free up memory and stop all observings and replications.\nawait myCollection.destroy();\n\nisRxCollection\nReturns true if the given object is an instance of RxCollection. Returns false if not.\nconst is = RxDB.isRxCollection(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-document.html":{"url":"rx-document.html","title":"RxDocument","keywords":"","body":"RxDocument\nA document is a single object which is stored in a collection. It can be compared to a single record in a relational database table. You get an RxDocument either as return on inserts, or as result-set of queries.\ninsert\nTo insert a document into a collection, you have to call the collection's .insert()-function.\nmyCollection.insert({\n name: 'foo',\n lastname: 'bar'\n});\n\nfind\nTo find documents in a collection, you have to call the collection's .find()-function. See RxQuery.\nmyCollection.find().exec() // console.dir(documents));\n\nFunctions\nget()\nThis will get a single field of the document. If the field is encrypted, it will be automatically decrypted before returning.\nvar name = myDocument.get('name'); // returns the name\n\nget$()\nThis function returns an observable of the given paths-value.\nThe current value of this path will be emitted each time the document changes.\n// get the life-updating value of 'name'\nvar isName;\nmyDocument.get$('name')\n .subscribe(newName => {\n isName = newName;\n });\n\nawait myDocument.atomicSet('name', 'foobar2');\nconsole.dir(isName); // isName is now 'foobar2'\n\nproxy-get\nAll properties of a RxDocument are assigned as getters so you can also directly access values instead of using the get()-function.\n // Identical to myDocument.get('name');\n var name = myDocument.name;\n // Can also get nested values.\n var nestedValue = myDocument.whatever.nestedfield;\n\n // Also useable with observables:\n myDocument.firstName$.subscribe(newName => console.log('name is: ' + newName));\n // > 'name is: Stefe'\n await myDocument.atomicSet('firstName', 'Steve');\n // > 'name is: Steve'\n\nupdate()\nUpdates the document based on the mongo-update-syntax, based on modifyjs.\nawait myDocument.update({\n $inc: {\n age: 1 // increases age by 1\n },\n $set: {\n fistName: 'foobar' // sets firstName to foobar\n }\n});\n\natomicUpdate()\nUpdates a documents data based on a function that transforms the current data and returns the new value.\n\nconst changeFunction = (oldData) => {\n oldData.age = oldData.age + 1;\n oldData.name = 'foooobarNew';\n return oldData;\n}\nawait myDocument.atomicUpdate(changeFunction);\nconsole.log(myDocument.name); // 'foooobarNew'\n\natomicSet()\nWorks like atomicUpdate but only sets the value for a single attribute.\nawait myDocument.atomicSet('nested.attribute', 'foobar');\nconsole.log(myDocument.nested.attribute); // 'foobar'\n\nObserve $\nCalling this will return an rxjs-Observable which emits all change-Events belonging to this document.\n// get all changeEvents\nmyDocument.$\n .subscribe(changeEvent => console.dir(changeEvent));\n\nremove()\nThis removes the document from the collection. Notice that this will not purge the document from the store but set _deleted:true like described in the pouchdb-docs in option 3.\nmyDocument.remove();\n\ndeleted$\nEmits a boolean value, depending on whether the RxDocument is deleted or not.\nlet lastState = null;\nmyDocument.deleted$.subscribe(state => lastState = state);\n\nconsole.log(lastState);\n// false\n\nawait myDocument.remove();\n\nconsole.log(lastState);\n// true\n\nget deleted\nA getter to get the current value of deleted$.\nconsole.log(myDocument.deleted);\n// false\n\nawait myDocument.remove();\n\nconsole.log(myDocument.deleted);\n// true\n\ntoJSON()\nReturns the document's data as plain json object.\nconst json = myDocument.toJSON();\nconsole.dir(json);\n/* { passportId: 'h1rg9ugdd30o',\n firstName: 'Carolina',\n lastName: 'Gibson',\n age: 33 ...\n*/\n\nset()\nOnly temporary documents\nTo change data in your document, use this function. It takes the field-path and the new value as parameter. Note that calling the set-function will not change anything in your storage directly. You have to call .save() after to submit changes.\nmyDocument.set('firstName', 'foobar');\nconsole.log(myDocument.get('firstName')); // \nproxy-set\nOnly temporary documents\nAll properties of an RxDocument are assigned as setters to it so you can also directly set values instead of using the set()-function.\nmyDocument.firstName = 'foobar';\nmyDocument.whatever.nestedfield = 'foobar2';\n\nsave()\nOnly temporary documents\nThis will update the document in the storage if it has been changed. Call this after modifying the document (via set() or proxy-set).\nmyDocument.name = 'foobar';\nawait myDocument.save(); // submit the changes to the storage\n\nNOTICE: All methods of RxDocument are bound to the instance\nWhen you get a method from a RxDocument, the method is automatically bound to the documents instance. This means you do not have to use things like myMethod.bind(myDocument) like you would do in jsx.\nisRxDocument\nReturns true if the given object is an instance of RxDocument. Returns false if not.\nconst is = RxDB.isRxDocument(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-query.html":{"url":"rx-query.html","title":"RxQuery","keywords":"","body":"RxQuery\nA query allows to find documents in your collection.\nLike most other noSQL-Databases, RxDB uses the mango-query-syntax. It is also possible to use chained methods.\nfind()\nTo create a basic RxQuery, call .find() on a collection and insert selectors. The result-set of normal queries is an array with documents.\n// find all that are older then 18\nconst query = myCollection\n .find()\n .where('age')\n .gt(18);\n\nfindOne()\nA findOne-query has only a single RxDocument or null as result-set.\n// find the youngest one\nconst query = myCollection\n .findOne()\n .sort('age')\n\nexec()\nReturns a Promise that resolves with the result-set of the query.\nconst query = myCollection.find();\nconst results = await query.exec();\nconsole.dir(results); // > [RxDocument,RxDocument,RxDocument..]\n\nObserve $\nAn BehaviorSubject see that always has the current result-set as value.\nThis is extremely helpfull when used together with UIs that shell always show the same state as what is written in the database.\nconst query = myCollection.find();\nquery.$.subscribe(results => {\n console.log('got results: ' + results.length);\n});\n// > 'got results: 5' // BehaviorSubjects emit on subscription\n\nawait myCollection.insert({/* ... */}); // insert one\n// > 'got results: 6' // $.subscribe() was called again with the new results\n\nupdate()\nRuns and update on every RxDocument of the query-result.\nconst query = myCollection.find().where('age').gt(18);\nawait query.update({\n $inc: {\n age: 1 // increases age of every found document by 1\n }\n});\n\nremove()\nDeletes all found documents. Returns a promise which resolves to the deleted documents.\n// All documents where the age is less than 18\nconst query = myCollection.find().where('age').lt(18);\n// Remove the documents from the collection\nconst removedDocs = await query.remove();\n\ndoesDocumentDataMatch()\nReturns true if the given document data matches the query.\nconst documentData = {\n id: 'foobar',\n age: 19\n};\n\nmyCollection.find().where('age').gt(18).doesDocumentDataMatch(documentData); // > true\n\nmyCollection.find().where('age').gt(20).doesDocumentDataMatch(documentData); // > false\n\nExamples\nHere some examples to fast learn how to write queries without reading the docs.\n\nPouch-find-docs - learn how to use mango-queries\nmquery-docs - learn how to use chained-queries\n\n// directly pass search-object\nmyCollection.find({name: {$eq: 'foo'}})\n .exec().then(documents => console.dir(documents));\n\n// find by using sql equivalent '%like%' syntax\n// This example will fe: match 'foo' but also 'fifoo' or 'foofa' or 'fifoofa'\nmyCollection.find({name: {$regex: '.*foo.*'}})\n .exec().then(documents => console.dir(documents));\n\n// find using a composite statement eg: $or\n// This example checks where name is either foo or if name is not existant on the document\nmyCollection.find({$or: [ { name: { $eq: 'foo' } }, { name: { $exists: false } }})\n .exec().then(documents => console.dir(documents));\n\n// do a case insensitive search\n// This example will match 'foo' or 'FOO' or 'FoO' etc...\nvar regexp = new RegExp('^foo$', 'i');\nmyCollection.find({name: {$regex: regexp}})\n .exec().then(documents => console.dir(documents));\n\n// chained queries\nmyCollection.find().where('name').eq('foo')\n .exec().then(documents => console.dir(documents));\n\nNOTICE: RxQuery's are immutable\nBecause RxDB is a reactive database, we can do heavy performance-optimisation on query-results which change over time. To be able to do this, RxQuery's have to be immutable.\nThis means, when you have a RxQuery and run a .where() on it, the original RxQuery-Object is not changed. Instead the where-function returns a new RxQuery-Object with the changed where-field. Keep this in mind if you create RxQuery's and change them afterwards.\nExample:\nconst queryObject = myCollection.find().where('age').gt(18);\n// Creates a new RxQuery object, does not modify previous one\nqueryObject.sort('name');\nconst results = await queryObject.exec();\nconsole.dir(results); // result-documents are not sorted by name\n\nconst queryObjectSort = queryObject.sort('name');\nconst results = await queryObjectSort.exec();\nconsole.dir(results); // result-documents are now sorted\n\nisRxQuery\nReturns true if the given object is an instance of RxQuery. Returns false if not.\nconst is = RxDB.isRxQuery(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-attachment.html":{"url":"rx-attachment.html","title":"RxAttachment","keywords":"","body":"Attachments\nLike pouchdb, RxDB can store attachments which has a better performance and a higher quota-limit then regular data.\nYou can store string, binary files, images and whatever you want side by side with your documents.\nBefore you can use attachments, you have to ensure that the attachments-object is set in the schema of your RxCollection.\n\nconst mySchema = {\n version: 0,\n type: 'object',\n properties: {\n // .\n // .\n // .\n },\n attachments: {\n encrypted: true // if true, the attachment-data will be encrypted with the db-password\n }\n};\n\nconst myCollection = await myDatabase.collection({\n name: 'humans',\n schema: mySchema\n});\n\nputAttachment()\nAdds an attachment to a RxDocument. Returns a Promise with the new attachment.\nconst attachment = await myDocument.putAttachment({\n id, // string, name of the attachment like 'cat.jpg'\n data, // (string|Blob|Buffer) data of the attachment\n type // (string) type of the attachment-data like 'image/jpeg'\n});\n\ngetAttachment()\nReturns an RxAttachment by its id. Returns null when the attachment does not exist.\nconst attachment = myDocument.getAttachment('cat.jpg');\n\nallAttachments()\nReturns an array of all attachments of the RxDocument.\nconst attachments = myDocument.allAttachments();\n\nallAttachments$\nGets an Observable which emits a stream of all attachments from the document. Re-emits each time an attachment gets added or removed from the RxDocument.\nconst all = [];\nmyDocument.allAttachments$.subscribe(\n attachments => all = attachments\n);\n\nRxAttachment\nThe attachments of RxDB are represented by the type RxAttachment which has the following attributes/methods.\ndoc\nThe RxDocument which the attachment is assigned to.\nid\nThe id as string of the attachment.\ntype\nThe type as string of the attachment.\nlength\nThe length of the data of the attachment as number.\ndigest\nThe md5-sum of the attachments data as string.\nrev\nThe revision-number of the attachment as number.\nremove()\nRemoves the attachment. Returns a Promise that resolves when done.\nconst attachment = myDocument.getAttachment('cat.jpg');\nawait attachment.remove();\n\ngetData()\nReturns a Promise which resolves the attachment's data as Blob or Buffer. (async)\nconst attachment = myDocument.getAttachment('cat.jpg');\nconst blobBuffer = await attachment.getData();\n\ngetStringData()\nReturns a Promise which resolves the attachment's data as string.\nconst attachment = await myDocument.getAttachment('cat.jpg');\nconst data = await attachment.getStringData();\n\n\nIf you are new to RxDB, you should continue here\n"},"middleware.html":{"url":"middleware.html","title":"Middleware-hooks","keywords":"","body":"Middleware\nRxDB supports middleware-hooks like mongoose.\nMiddleware (also called pre and post hooks) are functions which are passed control during execution of asynchronous functions.\nThe hooks are specified on RxCollection-level and help to create a clear what-happens-when-structure of your code.\nHooks can be defined to run parallel or as series one after another.\nHooks can be synchronous or asynchronous when they return a Promise.\nTo stop the operation at a specific hook, throw an error.\nList\nRxDB supports the following hooks:\n\npreInsert\npostInsert\npreSave\npostSave\npreRemove\npostRemove\npostCreate\n\nWhy is there no validate-hook?\nDifferent to mongoose, the validation on document-data is running on the field-level for every change to a document.\nThis means if you set the value lastName of a RxDocument, then the validation will only run on the changed field, not the whole document.\nTherefore it is not useful to have validate-hooks when a document is written to the database.\nUse Cases\nMiddleware are useful for atomizing model logic and avoiding nested blocks of async code.\nHere are some other ideas:\n\ncomplex validation\nremoving dependent documents\nasynchronous defaults\nasynchronous tasks that a certain action triggers\ntriggering custom events\nnotifications\n\nUsage\nAll hooks have the plain data as first parameter, and all but preInsert also have the RxDocument-instance as second parameter. If you want to modify the data in the hook, change attributes of the first parameter.\nAll hook functions are also this-bind to the RxCollection-instance.\nInsert\nAn insert-hook receives the data-object of the new document.\nlifecycle\n\nRxCollection.insert is called\npreInsert series-hooks\npreInsert parallel-hooks\nschema validation runs\nnew document is written to database\npostInsert series-hooks\npostInsert parallel-hooks\nevent is emitted to RxDatabase and RxCollection\n\npreInsert\n// series\nmyCollection.preInsert(function(plainData){\n // set age to 50 before saving\n plainData.age = 50;\n}, false);\n\n// parallel\nmyCollection.preInsert(function(plainData){\n\n}, true);\n\n// async\nmyCollection.preInsert(function(plainData){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the insert-operation\nmyCollection.preInsert(function(plainData){\n throw new Error('stop');\n}, false);\n\npostInsert\n// series\nmyCollection.postInsert(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.postInsert(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.postInsert(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\nSave\nA save-hook receives the document which is saved.\nlifecycle\n\nRxDocument.save is called\npreSave series-hooks\npreSave parallel-hooks\nupdated document is written to database\npostSave series-hooks\npostSave parallel-hooks\nevent is emitted to RxDatabase and RxCollection\n\npreSave\n// series\nmyCollection.preSave(function(plainData, rxDocument){\n // modify anyField before saving\n plainData.anyField = 'anyValue';\n}, false);\n\n// parallel\nmyCollection.preSave(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.preSave(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the save-operation\nmyCollection.preSave(function(plainData, rxDocument){\n throw new Error('stop');\n}, false);\n\npostSave\n// series\nmyCollection.postSave(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.postSave(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.postSave(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\nRemove\nAn remove-hook receives the document which is removed.\nlifecycle\n\nRxDocument.remove is called\npreRemove series-hooks\npreRemove parallel-hooks\ndeleted document is written to database\npostRemove series-hooks\npostRemove parallel-hooks\nevent is emitted to RxDatabase and RxCollection\n\npreRemove\n// series\nmyCollection.preRemove(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.preRemove(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.preRemove(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the remove-operation\nmyCollection.preRemove(function(plainData, rxDocument){\n throw new Error('stop');\n}, false);\n\npostRemove\n// series\nmyCollection.postRemove(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.postRemove(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.postRemove(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\npostCreate\nThis hook is called whenever a RxDocument is constructed.\nYou can use postCreate to modify every RxDocument-instance of the collection.\nThis adds a flexible way to add specify behavior to every document. You can also use it to add custom getter/setter to documents. PostCreate-hooks cannot be asynchronous.\nmyCollection.postCreate(function(plainData, rxDocument){\n Object.defineProperty(rxDocument, 'myField', {\n get: () => 'foobar',\n });\n});\n\nconst doc = await myCollection.findOne().exec();\n\nconsole.log(doc.myField);\n// 'foobar'\n\nNotice: This hook does not run on already created or cached documents. Make sure to add postCreate-hooks before interacting with the collection.\n\nIf you are new to RxDB, you should continue here\n"},"orm.html":{"url":"orm.html","title":"ORM/DRM","keywords":"","body":"Object-Data-Relational-Mapping\nLike mongoose, RxDB has ORM-capabilities which can be used to add specific behavior to documents and collections.\nstatics\nStatics are defined collection-wide and can be called on the collection.\nAdd statics to a collection\nTo add static functions, pass a statics-object when you create your collection. The object contains functions, mapped to their function-names.\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n statics: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\n\nconsole.log(heroes.scream());\n// 'AAAH!!'\n\nYou can also use the this-keyword which resolves to the collection:\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n statics: {\n whoAmI: function(){\n return this.name;\n }\n }\n});\nconsole.log(heroes.whoAmI());\n// 'heroes'\n\ninstance-methods\nInstance-methods are defined collection-wide. They can be called on the RxDocuments of the collection.\nAdd instance-methods to a collection\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n methods: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\nconst doc = await heroes.findOne().exec();\nconsole.log(doc.scream());\n// 'AAAH!!'\n\nHere you can also use the this-keyword:\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n methods: {\n whoAmI: function(){\n return 'I am ' + this.name + '!!';\n }\n }\n});\nawait heroes.insert({\n name: 'Skeletor'\n});\nconst doc = await heroes.findOne().exec();\nconsole.log(doc.whoAmI());\n// 'I am Skeletor!!'\n\nattachment-methods\nAttachment-methods are defined collection-wide. They can be called on the RxAttachemnts of the RxDocuments of the collection.\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n attachments: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\nconst doc = await heroes.findOne().exec();\nconst attachment = await doc.putAttachment({\n id: 'cat.txt',\n data: 'meow I am a kitty',\n type: 'text/plain'\n});\nconsole.log(attachment.scream());\n// 'AAAH!!'\n\n\nIf you are new to RxDB, you should continue here\n"},"population.html":{"url":"population.html","title":"Population","keywords":"","body":"Population\nThere are no joins in RxDB but sometimes we still want references to documents in other collections. This is where population comes in. You can specify a relation from one RxDocument to another RxDocument in the same or another RxCollection of the same database.\nThen you can get the referenced document with the population-getter.\nThis works exactly like population with mongoose.\nSchema with ref\nThe ref-keyword describes to which collection the field-value belongs to.\nexport const refHuman = {\n title: 'human related to other human',\n version: 0,\n properties: {\n name: {\n primary: true,\n type: 'string'\n },\n bestFriend: {\n ref: 'human', // refers to collection human\n type: 'string' // ref-values must always be string (primary of foreign RxDocument)\n }\n }\n};\n\nYou can also have a one-to-may reference by using a string-array.\nexport const schemaWithOneToManyReference = {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string',\n primary: true\n },\n friends: {\n type: 'array',\n ref: 'human',\n items: {\n type: 'string'\n }\n }\n }\n};\n\npopulate()\nvia method\nTo get the referred RxDocument, you can use the populate()-method.\nIt takes the field-path as attribute and returns a Promise which resolves to the foreign document or null if not found.\nawait humansCollection.insert({\n name: 'Alice',\n bestFriend: 'Carol'\n});\nawait humansCollection.insert({\n name: 'Bob',\n bestFriend: 'Alice'\n});\nconst doc = await humansCollection.findOne('Bob').exec();\nconst bestFriend = await doc.populate('bestFriend');\nconsole.dir(bestFriend); //> RxDocument[Alice]\n\nvia getter\nYou can also get the populated RxDocument with the direct getter. Therefore you have to add an underscore suffix _ to the fieldname.\nThis works also on nested values.\nawait humansCollection.insert({\n name: 'Alice',\n bestFriend: 'Carol'\n});\nawait humansCollection.insert({\n name: 'Bob',\n bestFriend: 'Alice'\n});\nconst doc = await humansCollection.findOne('Bob').exec();\nconst bestFriend = await doc.bestFriend_; // notice the underscore_\nconsole.dir(bestFriend); //> RxDocument[Alice]\n\nExample with nested reference\nconst myCollection = await myDatabase.collection({\n name: 'human',\n schema: {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string'\n },\n family: {\n type: 'object',\n properties: {\n mother: {\n type: 'string',\n ref: 'human'\n }\n }\n }\n }\n }\n});\n\nconst mother = await myDocument.family.mother_;\nconsole.dir(mother); //> RxDocument\n\nExample with array\nconst myCollection = await myDatabase.collection({\n name: 'human',\n schema: {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string'\n },\n friends: {\n type: 'array',\n ref: 'human',\n items: {\n type: 'string'\n }\n }\n }\n }\n});\n\n//[insert other humans here]\n\nawait myCollection.insert({\n name: 'Alice',\n friends: [\n 'Bob',\n 'Carol',\n 'Dave'\n ]\n});\n\nconst doc = await humansCollection.findOne('Alice').exec();\nconst friends = await myDocument.friends_;\nconsole.dir(friends); //> Array.\n\n\nIf you are new to RxDB, you should continue here\n"},"data-migration.html":{"url":"data-migration.html","title":"DataMigration","keywords":"","body":"DataMigration\nImagine you have your awesome messenger-app distributed to many users. After a while, you decide that in your new version, you want to change the schema of the messages-collection. Instead of saving the message-date like 2017-02-12T23:03:05+00:00 you want to have the unix-timestamp like 1486940585 to make it easier to compare dates. To accomplish this, you change the schema and increase the version-number and you also change your code where you save the incoming messages. But one problem remains: what happens with the messages which are already saved on the user's device in the old schema?\nWith RxDB you can provide migrationStrategies for your collections that automatically (or on call) transform your existing data from older to newer schemas. This assures that the client's data always matches your newest code-version.\nProviding strategies\nUpon creation of a collection, you have to provide migrationStrategies when your schema's version-number is greater than 0. To do this, you have to add an object to the migrationStrategies property where a function for every schema-version is assigned. A migrationStrategy is a function which gets the old document-data as a parameter and returns the new, transformed document-data. If the strategy returns null, the document will be removed instead of migrated.\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n // 1 means, this transforms data from version 0 to version 1\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n }\n }\n});\n\nAsynchronous strategies can also be used:\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n },\n /**\n * 2 means, this transforms data from version 1 to version 2\n * this returns a promise which resolves with the new document-data\n */\n 2: function(oldDoc){\n // in the new schema (version: 2) we defined 'senderCountry' as required field (string)\n // so we must get the country of the message-sender from the server\n const coordinates = oldDoc.coordinates;\n return fetch('http://myserver.com/api/countryByCoordinates/'+coordinates+'/')\n .then(response => {\n const response = response.json();\n oldDoc.senderCountry=response;\n return oldDoc;\n });\n }\n }\n});\n\nyou can also filter which documents should be migrated:\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n // 1 means, this transforms data from version 0 to version 1\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n },\n /**\n * this removes all documents older then 2017-02-12\n * they will not appear in the new collection\n */\n 2: function(oldDoc){\n if(oldDoc.time \nautoMigrate\nBy default, the migration automatically happens when the collection is created. If you have lots of data or the migrationStrategies take a long time, it might be better to start the migration 'by hand' and show the migration-state to the user as a loading-bar.\nconst messageCol = await myDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n autoMigrate: false, // console.dir(state),\n error => console.error(error),\n done => console.log('done')\n);\n\n// the emitted states look like this:\n{\n done: false, // true if finished\n total: 50, // amount of documents which must be migrated\n handled: 0, // amount of handled docs\n success: 0, // handled docs which succeeded\n deleted: 0, // handled docs which got deleted\n percent: 0 // percentage\n}\n\nIf you don't want to show the state to the user, you can also use .migratePromise():\n const migrationPromise = messageCol.migratePromise(10);\n await migratePromise;\n\nHint\nIf your migration takes a long time, combine it with the leaderElection to make sure you don't waste your users' resources by running it in 2 open tabs.\n\nIf you are new to RxDB, you should continue here\n"},"leader-election.html":{"url":"leader-election.html","title":"LeaderElection","keywords":"","body":"Leader-Election\nRxDB comes with a leader-election which elects a leading instance between different instances in the same javascript runtime.\nBefore you read this, please check out on how many of your open browser-tabs you have opened the same website more than once. Count them, I will wait..\nSo if you would now inspect the traffic that theses open tabs produce, you can see that many of them send exact the same data over wire for every tab. No matter if the data is sent with an open websocket or by polling.\nUse-case-example\nImagine we have a website which displays the current temperature of the visitors location in various charts, numbers or heatmaps. To always display the live-data, the website opens a websocket to our API-Server which sends the current temperature every 10 seconds. Using the way most sites are currently build, we can now open it in 5 browser-tabs and it will open 5 websockets which send data 6*5=30 times per minute. This will not only waste the power of your clients device, but also wastes your api-servers resources by opening redundant connections.\nSolution\nThe solution to this redundancy is the usage of a leader-election-algorithm which makes sure that always exactly one tab is managing the remote-data-access. The managing tab is the elected leader and stays leader until it is closed. No matter how many tabs are opened or closed, there must be always exactly one leader.\nYou could now start implementing a messaging-system between your browser-tabs, hand out which one is leader, solve conflicts and reassign a new leader when the old one 'dies'.\nOr just use RxDB which does all these things for you.\nCode-example\nTo make it easy, here is an example where the temperature is pulled every ten seconds and saved to a collection. The pulling starts at the moment where the opened tab becomes the leader.\nconst db = await RxDB.create({\n name: 'weatherDB',\n adapter: 'localstorage',\n password: 'myPassword',\n multiInstance: true\n});\nawait db.collection({\n name: 'temperature',\n schema: mySchema\n});\n\ndb.waitForLeadership()\n .then(() => {\n console.log('Long lives the king!'); // {\n const temp = await fetch('https://example.com/api/temp/');\n db.temperature.insert({\n degrees: temp,\n time: new Date().getTime()\n });\n }, 1000 * 10);\n });\n\nLive-Example\nIn this example the leader is marked with the crown ♛\n\nTry it out\nRun the vanillaJS-example where the leading tab is marked with a crown on the top-right-corner.\nNotice\nThe leader election is implemented via the broadcast-channel module.\nThe leader is elected between different processes on the same javascript-runtime. Like multiple tabs in the same browser or mupltiple NodeJs-processes on the same machine. It will not run between different replicated instances.\n\nIf you are new to RxDB, you should continue here\n"},"replication.html":{"url":"replication.html","title":"Replication CouchDB","keywords":"","body":"Replication\nOne of the most powerful features with CouchDB, PouchDB and RxDB is sync.\nYou can sync every RxCollection with another RxCollection, a PouchDB-instance or a remote pouch/couch-DB.\nRx.Collection.sync()\nTo replicate the collection with another instance, use RxCollection.sync().\nIt basically does the same as pouchdb-sync but also adds event-handlers to make sure that change-events will be recognized in the internal event-stream.\n\n// you need these plugins to sync\nRxDB.plugin(require('pouchdb-adapter-http')); // enable syncing over http (remote database)\n\nconst replicationState = myCollection.sync({\n remote: 'http://localhost:10102/db/', // remote database. This can be the serverURL, another RxCollection or a PouchDB-instance\n waitForLeadership: true, // (optional) [default=true] to save performance, the sync starts on leader-instance only\n direction: { // direction (optional) to specify sync-directions\n pull: true, // default=true\n push: true // default=true\n },\n options: { // sync-options (optional) from https://pouchdb.com/api.html#replication\n live: true,\n retry: true\n },\n query: myCollection.find().where('age').gt(18) // query (optional) only documents that match that query will be synchronised\n});\n\nRxReplicationState\nThe method RxCollection.sync() returns a RxReplicationState which can be used to observe events via rxjs-observables and to cancel the replication.\nchange$\nEmits the change-events every time some documents get replicated.\nreplicationState.change$.subscribe(change => console.dir(change));\n\ndocs$\nEmits each replicated document-data.\nreplicationState.docs$.subscribe(docData => console.dir(docData));\n\ndenied$\nEmits when a document failed to replicate (e.g. due to permissions).\nreplicationState.denied$.subscribe(docData => console.dir(docData));\n\nactive$\nEmits true or false depending if the replication is transmitting data. A false value does not imply the connection has died.\nreplicationState.active$.subscribe(active => console.dir(active));\n\nalive$\nEmits true or false depending if the replication is alive - data is transmitting properly between databases. A false value implies the connection has died -if you're replicating to a remote database, for example. It will only emit false if there are pending changes that couldn't be replicated -it won't emit immediately after the connection dies.\nreplicationState.alive$.subscribe(alive => console.dir(alive));\n\ncomplete$\nEmits true or false depending if the replication is completed.\nIf you do a live: true-sync (default) the replication never completes.\nOnly one-time-replications will complete.\nreplicationState.complete$.subscribe(completed => console.dir(completed));\n\nerror$\nIf errors occur during the replication, they will get emitted here.\nreplicationState.error$.subscribe(error => console.dir(error));\n\ncancel()\nCalling this method will cancel the replication.\nawait replicationState.cancel(); // cancel() is async\n\n\nIf you are new to RxDB, you should continue here\n"},"replication-graphql.html":{"url":"replication-graphql.html","title":"Replication GraphQL","keywords":"","body":"Replication with GraphQL (beta)\nWith RxDB you can do a two-way replication with a GraphQL endpoint. This allows you to replicate data from the server into the client-side database and then query and modify it in realtime.\nWhen the user is offline, you still can use the data and later sync it with the server when the client is online again like in other Offline-First systems.\nComparison to Couchdb-Sync\nPros:\n\nThe GraphQL-replication is faster and needs less resources\nYou do not need a couchdb-compliant endpoint, only a GraphQL-endpoint\n\nCons:\n\nYou can not replicate multiple databases with each other\nIt is assumed that the GraphQL-server is the single source of truth\nYou have to setup things at the server side while with couchdb-sync you only have to start a server\n\nNOTICE: To play around, check out the full example of the RxDB GraphQL replication with server and client\nUsage\nData Design\nTo use the GraphQL-replication you first have to ensure that your data is sortable by update time and your documents never get deleted, only have a deleted-flag set.\nFor example if your documents look like this,\n{\n \"id\": \"foobar\",\n \"name\": \"Alice\",\n \"lastName\": \"Wilson\",\n \"updatedAt\": 1564783474,\n \"deleted\": false\n}\n\nThen your data is always sortable by updatedAt. This ensures that when RxDB fetches 'new' changes, it can send the latest updatedAt to the GraphQL-endpoint and then recieve all newer documents.\nDeleted documents still exist but have deleted: true set. This ensures that when RxDB fetches new documents, even the deleted documents are send back and can be known at the client-side.\nGraphQL Server\nAt the server-side, there must exist an endpoint which returns newer rows when the last replicated document is used as input. For example lets say you create a Query feedForRxDBReplication which returns a list of newer documents, related to the given one, sorted by updatedAt.\nFor the push-replication, you also need a modifier which lets RxDB update data with a changed document as input.\ninput HumanInput {\n id: ID!,\n name: String!,\n lastName: String!,\n updatedAt: Int!,\n deleted: Boolean!\n}\ntype Human {\n id: ID!,\n name: String!,\n lastName: String!,\n updatedAt: Int!,\n deleted: Boolean!\n}\ntype Query {\n feedForRxDBReplication(lastId: String!, minUpdatedAt: Int!, limit: Int!): [Human!]!\n}\ntype Mutation {\n setHuman(human: HumanInput): Human\n}\nThe resolver would then look like:\nconst rootValue = {\n feedForRxDBReplication: args => {\n // sorted by updatedAt first and the id as second\n const sortedDocuments = documents.sort((a, b) => {\n if (a.updatedAt > b.updatedAt) return 1;\n if (a.updatedAt b.id) return 1;\n if (a.id {\n if (doc.updatedAt args.minUpdatedAt) return true;\n if (doc.updatedAt === args.minUpdatedAt) {\n // if updatedAt is equal, compare by id\n if (doc.id > args.lastId) return true;\n else return false;\n }\n });\n\n // only return some documents in one batch\n const limited = filterForMinUpdatedAtAndId.slice(0, args.limit);\n\n return limited;\n },\n // a modifier that updates the state on the server\n setHuman: args => {\n const doc = args.human;\n documents = documents.filter(d => d.id !== doc.id);\n doc.updatedAt = Math.round(new Date().getTime() / 1000);\n documents.push(doc);\n return doc;\n },\n}\n\nRxDB Client\nImport the plugin\nThe graphql-replication is not part of the default-build of RxDB. You have to import the plugin before you can use it.\n// es6-import\nimport RxDBReplicationGraphQL from 'rxdb/plugins/replication-graphql';\nRxDB.plugin(RxDBReplicationGraphQL);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/replication-graphql'));\n\nPull replication\nFor the pull-replication, you first need a pullQueryBuilder. This is a function that gets the last replicated document as input and returns an object with a GraphQL-query and its variables. RxDB will use the query builder to construct what is later send to the GraphQL endpoint.\nconst pullQueryBuilder = doc => {\n if (!doc) {\n // the first pull does not have a start-document\n doc = {\n id: '',\n updatedAt: 0\n };\n }\n const query = `{\n feedForRxDBReplication(lastId: \"${doc.name}\", minUpdatedAt: ${doc.updatedAt}, limit: 5) {\n id,\n name,\n lastName,\n updatedAt\n deleted\n }\n }`;\n return {\n query,\n variables: {}\n };\n};\n\nWith the queryBuilder, you can then setup the pull-replication.\nconst replicationState = myCollection.syncGraphQL({\n url: 'http://example.com/graphql', // url to the GraphQL endpoint\n pull: {\n pullQueryBuilder, // the queryBuilder from above\n modifier: doc => doc // (optional) modifies all pulled documents before they are handeled by RxDB\n },\n deletedFlag: 'deleted', // the flag which indicates if a pulled document is deleted\n live: true // if this is true, rxdb will watch for ongoing changes and sync them, when false, a one-time-replication will be done\n});\n\nPush replication\nFor the push-replication, you also need a queryBuilder. Here, the builder recieves a changed document as input which has to be send to the server. It also returns a GraphQL-Query and its data.\nconst pushQueryBuilder = doc => {\n const query = `\n mutation CreateHuman($human: HumanInput) {\n setHuman(human: $human) {\n id,\n updatedAt\n }\n }\n `;\n const variables = {\n human: doc\n };\n return {\n query,\n variables\n };\n};\n\nWith the queryBuilder, you can then setup the push-replication.\nconst replicationState = myCollection.syncGraphQL({\n url: 'http://example.com/graphql', // url to the GraphQL endpoint\n push: {\n pullQueryBuilder, // the queryBuilder from above\n batchSize: 5, // (optional) amount of documents that will be send in one batch\n modifier: d => d // (optional) modifies all pushed documents before they are send to the GraphQL endpoint\n },\n deletedFlag: 'deleted', // the flag which indicates if a pulled document is deleted\n live: true // if this is true, rxdb will watch for ongoing changes and sync them\n});\n\nOf course you can start the push- and the pull-replication in a single call to myCollection.syncGraphQL().\nUsing subscriptions\nFor the pull-replication, RxDB will run the pull-function every 10 seconds to fetch new documents from the server.\nThis means that when a change happens on the server, RxDB will, in the worst case, take 10 seconds until the changes is replicated to the client.\nTo improve this, it is recommended to setup GraphQL Subscriptions which will trigger the replication cycle when a change happens on the server.\nimport {\n SubscriptionClient\n} from 'subscriptions-transport-ws';\n\n// start the replication\nconst replicationState = myCollection.syncGraphQL({\n url: 'http://example.com/graphql',\n pull: {\n pullQueryBuilder,\n },\n deletedFlag: 'deleted', // the flag which indicates if a pulled document is deleted\n live: true,\n /**\n * Because we use the subscriptions as notifiers,\n * we can set the liveInterval to a very height value.\n */\n liveInterval: 60 * 1000\n});\n\n\n// setup the subscription client\nconst wsClient = new SubscriptionClient(\n 'ws://example.com/subscriptions', {\n reconnect: true,\n }\n);\n\nconst query = `subscription onHumanChanged {\n humanChanged {\n id\n }\n}`;\nconst changeObservable = wsClient.request({ query });\n// subscribe to all events\nchangeObservable.subscribe({\n next(data) {\n /**\n * When a change happens, call .run() on the replicationState.\n * This will trigger the pull-handler and download changes from the server.\n */\n replicationState.run();\n }\n});\n\nConflict Resolution\nRxDB assumes that the Conflict Resolution will happen on the server side.\nWhen the clients sends a document to the server which causes a conflict, this has to be resolved there and then the resulting document can be synced down to RxDB. While CouchDB uses revision-flags for conflicts, you can use any logic like relying on the updatedAt date or other flags.\nRxGraphQLReplicationState\nWhen you call myCollection.syncGraphQL() it returns a RxGraphQLReplicationState which can be used to subscribe to events, for debugging or other functions.\n.isStopped()\nReturns true if the replication is stopped. This can be if a non-live replication is finished or a replication got canceled.\nreplicationState.isStopped(); // true/false\n\n.awaitInitialReplication()\nReturns a Promise that is resolved as soon as the initial replication is done.\nawait replicationState.awaitInitialReplication();\nconsole.log('initial sync done, client data is equal to server data');\n\n.run()\nTriggers a replication cycle with the server. This is done automatically if the data changes on the client side or the pull-interval is called. This returns a Promise which is resolved when the run-cycle is done. Calling run() many times is no problem because it is queued internally.\nawait replicationState.run();\n\n.cancel()\nCancels the replication. This is done autmatically if the RxCollection or it's RxDatabase is destroyed.\nawait replicationState.cancel();\n\n.recieved$\nAn Observable that emits each document that is recieved from the endpoint.\n.send$\nAn Observable that emits each document that is send to the endpoint.\n.error$\nAn Observable that emits each error that happens during the replication. Use this if something does not work for debugging. RxDB will handle network errors automatically, other errors must be solved by the developer.\nreplicationState.error$.subscribe(error => {\n console.log('something was wrong');\n console.dir(error);\n});\n\n.canceled$\nAn Observable that emits true when the replication is canceled, false if not.\n.active$\nAn Observable that emits true when the replication is doing something, false when not.\nNOTICE: To play around, check out the full example of the RxDB GraphQL replication with server and client\n\nIf you are new to RxDB, you should continue here\n"},"query-change-detection.html":{"url":"query-change-detection.html","title":"QueryChangeDetection","keywords":"","body":"QueryChangeDetection\nSimilar to Meteors oplog-observe-driver,\nRxDB has a QueryChangeDetection to optimize observed or reused queries. This makes sure that when you update/insert/remove documents, the query does not have to re-run over the whole database but the new results will be calculated from the events. This creates a huge performance gain with zero cost.\nNOTICE:\nQueryChangeDetection is currently in beta and disabled by default.\nYou can enable it by passing the queryChangeDetection-field when creating a database.\nconst db = await RxDB.create({\n name: 'heroesdb',\n adapter: 'memory',\n queryChangeDetection: true // \nUse-case-example\nImagine you have a very big collection with many user-documents. At your page you want to display a toplist with users which have the most points and are currently logged in.\nYou create a query and subscribe to it.\nconst query = usersCollection.find().where('loggedIn').eq(true).sort('points');\nquery.$.subscribe(users => {\n document.querySelector('body').innerHTML = users\n .reduce((prev, cur) => prev + cur.username+ '', '');\n});\n\nAs you may detect, the query can take a very long time to run because you have thousands of users in the collection.\nThen, when a user logs off, the whole query will re-run over the database which takes a really long time yet again.\nanyUser.loggedIn = false;\nawait anyUser.save();\n\nBut not with QueryChangeDetection enabled.\nNow, when one user logs off, it will calculate the new results from the current results plus the RxChangeEvent. This can often be done in-memory without making IO-requests to the storage-engine. QueryChangeDetection not only works on subscribed queries, but also when you do multiple .exec()'s on the same query.\n\nIf you are new to RxDB, you should continue here\n"},"in-memory.html":{"url":"in-memory.html","title":"InMemory","keywords":"","body":"InMemory Collections\nWhen you do a heavy amount of operations on a RxCollection, you might want to optimize this by using the in-memory-replication of the collection. The in-memory-replication behaves equal to the original collection but is stored in the Memory of your computer instead of the hard drive. It inherits the statics of the original collection, but not its hooks -so you should register them separately in the case you'd want them to apply.\nPros:\n\nFaster queries\nFaster writes\nQuerying works over encrypted fields\n\nCons:\n\nThe original collection has to be small enough to fit into the memory\nNo attachment-support\nInitial creation takes longer (all data is loaded from disc into the memory)\n\nencryption\nEncrypted fields are automatically decrypted inside of the memory-collection. This means you can do queries over encrypted fields.\nreplication\nThe memory-collection is two-way-replicated with its original collection. This means when you change documents on one of them, the update and the change-event will fire on both.\nRxCollection().inMemory();\nReturns a promise that resolves with another RxCollection that is the in-memory-replicated version of the original collection. The memory-collection has the same documents as it's parent and also shares the same event-stream.\n\n// IMPORTANT: You have to add the memory-adapter before you can use inMemory-Collections\n// RUN 'npm install pouchdb-adapter-memory --save'\nimport PouchAdapterMemory from 'pouchdb-adapter-memory';\nRxDB.plugin(PouchAdapterMemory);\n\nconst memCol = await myCollection.inMemory();\n\n// now u can use memCol as it would be myCollection\nconst docs = await memCol.find().exec(); // has same result as on the original collection\n\nRxCollection().awaitPersistence()\nWhen you do a write into the inMemoryCollection, it takes some time until the change is replicated at the parents collections.\nTo know when you can be sure that all writes have been replicated, call awaitPersistence()\nconst memCol = await myCollection.inMemory();\n\nawait memCol.insert({foo: 'bar'});\n\nawait memCol.awaitPersistence(); // after this you can be sure that everything is replicated\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-local-document.html":{"url":"rx-local-document.html","title":"LocalDocuments","keywords":"","body":"Local Documents\nLocal documents are a special class of documents which are used to store local metadata.\nThey come in handy when you want to store settings or additional data next to your documents.\n\nLocal Documents can exist on RxDatabase or RxCollection\nLocal Document do not have to match the collections schema\nLocal Documents do not get replicated\nLocal Documents will not be found on queries\nLocal Documents can not have attachments\nLocal Documents will not get handled by the data-migration\n\ninsertLocal()\nCreates a local document for the database or collection. Throws if a local document with the same id already exists. Returns a Promise which resolves the new RxLocalDocument.\nconst localDoc = await myCollection.insertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\n// you can also use local-documents on a database\nconst localDoc = await myDatabase.insertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\nupsertLocal()\nCreates a local document for the database or collection if not exists. Overwrites the if exists. Returns a Promise which resolves the RxLocalDocument.\nconst localDoc = await myCollection.upsertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\ngetLocal()\nFind a RxLocalDocument by it's id. Returns a Promise which resolves the RxLocalDocument or null if not exists.\nconst localDoc = await myCollection.getLocal('foobar');\n\nRxLocalDocument\nA RxLocalDocument behaves like a normal RxDocument.\nconst localDoc = await myCollection.getLocal('foobar');\n\n// access data\nconst foo = localDoc.get('foo');\n\n// change data\nlocalDoc.set('foo', 'bar2');\nawait localDoc.save();\n\n// observe data\nlocalDoc.get$('foo').subscribe(value => { /* .. */ });\n\n// remove it\nawait localDoc.remove();\n\nNOTICE: Because the local document does not have a schema, accessing the documents data-fields via pseudo-proxy will not work.\nconst foo = localDoc.foo; // undefined\nconst foo = localDoc.get('foo'); // works!\n\nlocalDoc.foo = 'bar'; // does not work!\nlocalDoc.set('foo', 'bar'); // works\n\n\nIf you are new to RxDB, you should continue here\n"},"custom-build.html":{"url":"custom-build.html","title":"Custom Build","keywords":"","body":"Custom Build\nBy default, if you import RxDB into your javascript, a full batteries-included build will be imported. This has the advantage that you don't have to choose which things you need and which not. The disadvantage is the build-size. Often you don't need most of the functionality and you could save a lot of bandwidth by cherry-picking only the things you really need. For this, RxDB supports custom builds.\nCore\nThe core-module is the part of RxDB which is always needed to provide basic functionality. If you need a custom build, you start with the core and then add all modules that you need.\n// es6-import\nimport RxDB from 'rxdb/plugins/core';\n\n// es5-require\nconst RxDB = require('rxdb/plugins/core');\n\nrequired modules\nSome parts of RxDB are not in the core, but are required. This means they must always be overwrite by at least one plugin.\nvalidate\nThe validation-module does the schema-validation when you insert or update a RxDocument. To use RxDB you always have to add a validation-module.\nThis one is using is-my-json-valid but you can also use your own validator instead. To import the default validation-module, do this:\n// es6-import\nimport RxDBValidateModule from 'rxdb/plugins/validate';\nRxDB.plugin(RxDBValidateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/validate'));\n\najv-validate\nAnother validation-module that does the schema-validation. This one is using ajv as validator which is a bit faster. Better compliant to the jsonschema-standart but also has a bigger build-size.\n// es6-import\nimport RxDBAjvValidateModule from 'rxdb/plugins/ajv-validate';\nRxDB.plugin(RxDBAjvValidateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/ajv-validate'));\n\nvalidate-z-schema\nBoth is-my-json-valid and ajv-validate use eval() to perform validation which might not be wanted when 'unsafe-eval' is not allowed in Content Security Policies. This one is using z-schema as validator which doesn't use eval.\n// es6-import\nimport RxDBZSchemaValidateModule from 'rxdb/plugins/validate-z-schema';\nRxDB.plugin(RxDBZSchemaValidateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/validate-z-schema'));\n\nno-validate\nA validation module that does nothing at handles all data as valid. Use this as an alternative for the normal validator when you can rely on the input of the database.\nThis is meant for production to reduce the build-size, do not use this in dev-mode.\n// es6-import\nimport RxDBNoValidateModule from 'rxdb/plugins/no-validate';\nRxDB.plugin(RxDBNoValidateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/no-validate'));\n\noptional modules\nSome modules are optional and only needed if you use their functionality.\nerror-messages\nBecause error-messages are hard to compress, RxDB will throw error-codes by default. In development you should always include this plugin so full messages will be thrown.\n// es6-import\nimport RxDBErrorMessagesModule from 'rxdb/plugins/error-messages';\nRxDB.plugin(RxDBErrorMessagesModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/error-messages'));\n\nschema-check\nThe schemacheck-module does additional checks on your jsonschema before you create a RxCollection. This ensure that your collection-schema is correctly working with rxdb. You should always enable this plugin on dev-mode.\n// es6-import\nimport RxDBSchemaCheckModule from 'rxdb/plugins/schema-check';\nRxDB.plugin(RxDBSchemaCheckModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/schema-check'));\n\nreplication\nAdds the replication-functionality to RxDB which allows you to replicate the database with a CouchDB compliant endpoint.\n// es6-import\nimport RxDBReplicationModule from 'rxdb/plugins/replication';\nRxDB.plugin(RxDBReplicationModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/replication'));\n\nreplication-graphql\nAllows you to do a replication with a GraphQL endpoint.\nSee: Replication with GraphQL\n// es6-import\nimport RxDBReplicationGraphQL from 'rxdb/plugins/replication-graphql';\nRxDB.plugin(RxDBReplicationGraphQL);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/replication-graphql'));\n\nattachments\nAdds the attachments-functionality to RxDB.\n// es6-import\nimport RxDBAttachmentsModule from 'rxdb/plugins/attachments';\nRxDB.plugin(RxDBAttachmentsModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/attachments'));\n\nin-memory\nAdds the in-memory-replication to the collections.\n// es6-import\nimport RxDBInMemoryModule from 'rxdb/plugins/in-memory';\nRxDB.plugin(RxDBInMemoryModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/in-memory'));\n\nlocal-documents\nAdds the local-documents to the collections and databases.\n// es6-import\nimport RxDBLocalDocumentsModule from 'rxdb/plugins/local-documents';\nRxDB.plugin(RxDBLocalDocumentsModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/local-documents'));\n\njson-dump\nAdds the json import/export-functionality to RxDB.\n// es6-import\nimport RxDBJsonDumpModule from 'rxdb/plugins/json-dump';\nRxDB.plugin(RxDBJsonDumpModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/json-dump'));\n\nkey-compression\nThe keycompressor-module is needed when you have keyCompression enabled. This is done by default so make sure that you set disableKeyCompression to true when you do not have this module.\n// es6-import\nimport RxDBKeyCompressionModule from 'rxdb/plugins/key-compression';\nRxDB.plugin(RxDBKeyCompressionModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/key-compression'));\n\nleader-election\nThe leaderelection-module is needed when want to use the leaderelection.\n// es6-import\nimport RxDBLeaderElectionModule from 'rxdb/plugins/leader-election';\nRxDB.plugin(RxDBLeaderElectionModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/leader-election'));\n\nencryption\nThe encryption-module is using crypto-js and is only needed when you create your RxDB-Database with a password.\n// es6-import\nimport RxDBEncryptionModule from 'rxdb/plugins/encryption';\nRxDB.plugin(RxDBEncryptionModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/encryption'));\n\nupdate\nThe update-module is only required when you use RxDocument.update or RxQuery.update.\n// es6-import\nimport RxDBUpdateModule from 'rxdb/plugins/update';\nRxDB.plugin(RxDBUpdateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/update'));\n\nwatch-for-changes\nWhen you write data on the internal pouchdb of a collection, by default the changeEvent will not be emitted to RxDB's changestream.\nThe watch-for-changes plugin lets you tell the collection to actively watch for changes on the pouchdb-instance whose origin is not RxDB.\nThis plugin is used internally by the replication-plugin and the in-memory-plugin.\n// es6-import\nimport RxDBWatchForChangesModule from 'rxdb/plugins/watch-for-changes';\nRxDB.plugin(RxDBWatchForChangesModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/watch-for-changes'));\n\n// you can now call this once and then do writes on the pouchdb\nmyRxCollection.watchForChanges();\n\n// now write sth on the pouchdb\nmyRxCollection.pouch.put({/* ... */});\n\nadapter-check\nThis module add the checkAdapter-function to RxDB.\n// es6-import\nimport RxDBAdapterCheckModule from 'rxdb/plugins/adapter-check';\nRxDB.plugin(RxDBAdapterCheckModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/adapter-check'));\n\nserver\nSpawns a couchdb-compatible server from a RxDatabase. Use this to replicate data from your electron-node to the browser-window. Or to fast setup a dev-environment.\nSee: Tutorial: Using the RxDB Server-Plugin\nDo never expose this server to the internet, use a couchdb-instance at production.\n// run 'npm install express-pouchdb' before you use this plugin\n\n// This plugin is not included into the default RxDB-build. You have to manually add it.\nimport RxDBServerModule from 'rxdb/plugins/server';\nRxDB.plugin(RxDBServerModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/server'));\n\n\nIf you are new to RxDB, you should continue here\n"},"plugins.html":{"url":"plugins.html","title":"Plugins","keywords":"","body":"Plugins\nCreating an own plugin is very simple. A plugin is basically an javascript-object which overwrites or extends RxDB's internal classes, prototypes and hooks.\nA basic plugins:\n\nconst myPlugin = {\n rxdb: true, // this must be true so rxdb knows that this is a rxdb-plugin and not a pouchdb-plugin\n /**\n * every value in this object can manipulate the prototype of the keynames class\n * You can manipulate every prototype in this list:\n * @link https://github.com/pubkey/rxdb/blob/master/src/plugin.ts#L22\n */\n prototypes: {\n /**\n * add a function to RxCollection so you can call 'myCollection.hello()'\n *\n * @param {object} prototype of RxCollection\n */\n RxCollection: (proto) => {\n proto.hello = function(){\n return 'world';\n };\n }\n },\n /**\n * some methods are static and can be overwritten in the overwriteable-object\n */\n overwritable: {\n validatePassword: function(password) {\n if (password && typeof password !== 'string' || password.length \nProperties\nrxdb\nThe rxdb-property signals that this plugin is and rxdb-plugin and not a pouchdb-plugin. The value should always be true.\nprototypes\nThe prototypes-property contains a function for each of RxDB's internal prototype that you want to manipulate. Each function gets the prototype-object of the corresponding class as parameter and than can modify it. You can see a list of all available prototypes here\noverwritable\nSome of RxDB's functions are not inside of a class-prototype but are static. You can set and overwrite them with the overwritable-object. You can see a list of all overwriteables here.\nhooks\nSometimes you don't want to overwrite an existing RxDB-method, but extend it. You can do this by adding hooks which will be called each time the code jumps into the hooks corresponding call. You can find a list of all hooks here here.\noptions\nRxDatabase and RxCollection have an additional options-parameter, which can be filled with any data required be the plugin.\nconst collection = myDatabase.collection({\n name: 'foo'.\n schema: mySchema,\n options: { // anything can be passed into the options\n foo: ()=>'bar'\n }\n})\n\n// Afterwards you can use theses options in your plugin.\n\ncollection.options.foo(); // 'bar'\n\n\nIf you are new to RxDB, you should continue here\n"},"adapters.html":{"url":"adapters.html","title":"Adapters","keywords":"","body":"Adapters\nRxDB itself is not a self-contained database. It uses adapters that define where the data is stored. Depending on which environment you work in, you can choose between different adapters. For example in the browser you want to store the data inside of IndexedDB but on NodeJs you want to store the data on the filesystem.\nThis page is an overview over the different adapters with recommendations on what to use where.\nPlease always ensure that your pouchdb adapter-version is the same as pouchdb-core in the rxdb package.json. Otherwise you might have strange problems\nAny environment\nMemory\nIn any environment, you can use the memory-adapter. It stores the data in the javascript runtime memory. This means it is not persistent and the data is lost when the process terminates.\nUse this adapter when:\n\nYou want to have a really good performance\nYou do not want persistent state, for example in your test suite\n\n// npm install pouchdb-adapter-memory --save\nRxDB.plugin(require('pouchdb-adapter-memory'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'memory' // the name of your adapter\n});\n\nMemdown\nWith RxDB you can also use adapters that implement abstract-leveldown like the memdown-adapter.\n// npm install memdown --save\n// npm install pouchdb-adapter-leveldb --save\nRxDB.plugin(require('pouchdb-adapter-leveldb')); // leveldown adapters need the leveldb plugin to work\n\nconst memdown = require('memdown');\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: memdown // the full leveldown-module\n});\n\nBrowser\nIndexedDB\nThe IndexedDB adapter stores the data inside of IndexedDB use this in browsers environments as default.\n// npm install pouchdb-adapter-idb --save\nRxDB.plugin(require('pouchdb-adapter-idb'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'idb' // the name of your adapter\n});\n\nWebsql\nThis adapter stores the data inside of websql. It has a different performance behavior. Websql is deprecated. You should not use the websql adapter unless you have a really good reason.\n// npm install pouchdb-adapter-websql --save\nRxDB.plugin(require('pouchdb-adapter-websql'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'websql' // the name of your adapter\n});\n\nNodeJS\nleveldown\nThis adapter uses a LevelDB C++ binding to store that data on the filesystem. It has the best performance compared to other filesystem adapters. This adapter can not be used when multiple nodejs-processes access the same filesystem folders for storage.\n// npm install leveldown --save\n// npm install pouchdb-adapter-leveldb --save\nRxDB.plugin(require('pouchdb-adapter-leveldb')); // leveldown adapters need the leveldb plugin to work\nconst leveldown = require('leveldown');\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: leveldown // the full leveldown-module\n});\n\n// or use a specific folder to store the data\nconst database = await RxDB.create({\n name: '/root/user/project/mydatabase',\n adapter: leveldown // the full leveldown-module\n});\n\nNode-Websql\nThis adapter uses the node-websql-shim to store data on the filesystem. It's advantages are that it does not need a leveldb build and it can be used when multiple nodejs-processes use the same database-files.\n// npm install pouchdb-adapter-node-websql --save\nRxDB.plugin(require('pouchdb-adapter-node-websql'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'websql' // the name of your adapter\n});\n\n// or use a specific folder to store the data\nconst database = await RxDB.create({\n name: '/root/user/project/mydatabase',\n adapter: 'websql' // the name of your adapter\n});\n\nReact-Native\nasyncstorage\nUses react-native's asyncstorage.\n// npm install pouchdb-adapter-asyncstorage --save\nRxDB.plugin(require('pouchdb-adapter-asyncstorage'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'node-asyncstorage' // the name of your adapter\n});\n\nreact-native-sqlite\nUses ReactNative SQLite as storage. Claims to be much faster than the asyncstorage adapter.\nTo use it, you have to do some steps from this tutorial.\nFirst install pouchdb-adapter-react-native-sqlite and react-native-sqlite-2.\nnpm install pouchdb-adapter-react-native-sqlite react-native-sqlite-2\n\nThen you have to link the library.\nreact-native link react-native-sqlite-2\n\nYou also have to add some polyfills which are need but not included in react-native.\nnpm install base-64 events\n\nimport {decode, encode} from 'base-64'\n\nif (!global.btoa) {\n global.btoa = encode;\n}\n\nif (!global.atob) {\n global.atob = decode;\n}\n\n// Avoid using node dependent modules\nprocess.browser = true;\n\nThen you can use it inside of your code.\nimport * as RxDB from 'rxdb';\nimport SQLite from 'react-native-sqlite-2'\nimport SQLiteAdapterFactory from 'pouchdb-adapter-react-native-sqlite'\n\nconst SQLiteAdapter = SQLiteAdapterFactory(SQLite)\n\nRxDB.plugin(SQLiteAdapter);\nRxDB.plugin(require('pouchdb-adapter-http'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'react-native-sqlite' // the name of your adapter\n});\n\nasyncstorage-down\nA leveldown adapter that stores on asyncstorage.\n// npm install pouchdb-adapter-asyncstorage-down --save\nRxDB.plugin(require('pouchdb-adapter-leveldb')); // leveldown adapters need the leveldb plugin to work\n\nconst asyncstorageDown = require('asyncstorage-down');\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: asyncstorageDown // the full leveldown-module\n});\n\nCordova / Phonegap\ncordova-sqlite\nUses cordova's global cordova.sqlitePlugin.\n// npm install pouchdb-adapter-cordova-sqlite --save\nRxDB.plugin(require('pouchdb-adapter-cordova-sqlite'));\n\nconst database = await RxDB.create({\n name: 'mydatabase',\n adapter: 'node-cordova-sqlite' // the name of your adapter\n});\n\n\nIf you are new to RxDB, you should continue here\n"},"tutorials/typescript.html":{"url":"tutorials/typescript.html","title":"Use RxDB with Typescript","keywords":"","body":"Using RxDB with TypeScript\n\nIn this tutorial you learn how to use RxDB with TypeScript.\nWe will create a basic database with one collection and several ORM-methods, fully typed!\nRxDB directly comes with it's typings and you do not have to install anything else.\nOur way to go is\n\nFirst define how the documents look like\nThen define how the collections look like\nThen define how the database looks like\n\nDeclare the types\nFirst you import the types from RxDB.\nimport RxDB, {\n RxDatabase,\n RxCollection,\n RxJsonSchema,\n RxDocument\n} from 'rxdb';\n\nThen you can declare the base-type for your document. The base-type is basically the typescript-representation of the jsonschema of the collection. If you have many collections, you could also generate the base-type with json-schema-to-typescript\ntype HeroDocType = {\n passportId: string;\n firstName: string;\n lastName: string;\n age?: number; // optional\n};\n\nWe also add some ORM-methods for the document.\ntype HeroDocMethods = {\n scream: (v: string) => string;\n};\n\nWe can merge these into our HeroDocument.\ntype HeroDocument = RxDocument;\n\nNow we can define type for the collection which contains the documents.\n\n// we declare one static ORM-method for the collection\ntype HeroCollectionMethods = {\n countAllDocuments: () => Promise;\n}\n\n// and then merge all our types\ntype HeroCollection = RxCollection;\n\nBefore we can define the database, we make a helper-type which contains all collections of it.\ntype MyDatabaseCollections = {\n heroes: HeroCollection\n}\n\nNow the database.\ntype MyDatabase = RxDatabase;\n\nUsing the types\nNow that we have declare all our types, we can use them.\n\n/**\n * create database and collections\n */\nconst myDatabase: MyDatabase = await RxDB.create({\n name: 'mydb',\n adapter: 'memory'\n});\n\nconst heroSchema: RxJsonSchema = {\n title: 'human schema',\n description: 'describes a human being',\n version: 0,\n keyCompression: true,\n type: 'object',\n properties: {\n passportId: {\n type: 'string',\n primary: true\n },\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer'\n }\n },\n required: ['firstName', 'lastName']\n};\n\nconst heroDocMethods: HeroDocMethods = {\n scream: function(this: HeroDocument, what: string) {\n return this.firstName + ' screams: ' + what.toUpperCase();\n }\n};\n\nconst heroCollectionMethods: HeroCollectionMethods = {\n countAllDocuments: async function(this: HeroCollection) {\n const allDocs = await this.find().exec();\n return allDocs.length;\n }\n};\n\nawait myDatabase.collection({\n name: 'heroes',\n schema: heroSchema,\n methods: heroDocMethods,\n statics: heroCollectionMethods\n});\n\n// add a preInsert-hook\nmyDatabase.heroes.postInsert(\n function myPostInsertHook(\n this: HeroCollection, // own collection is bound to the scope\n docData, // documents data\n doc // RxDocument\n ) {\n console.log('insert to ' + this.name + '-collection: ' + doc.firstName);\n },\n false // not async\n);\n\n/**\n * use the database\n */\n\n// insert a document\nconst doc: HeroDocument = await myDatabase.heroes.insert({\n passportId: 'myId',\n firstName: 'piotr',\n lastName: 'potter',\n age: 5\n});\n\n// access a property\nconsole.log(doc.firstName);\n\n// use a orm method\ndoc.scream('AAH!');\n\n// use a static orm method from the collection\nconst amount: number = await myDatabase.heroes.countAllDocuments();\nconsole.log(amount);\n\n\n/**\n * clean up\n */\nmyDatabase.destroy();\n\n\nIf you are new to RxDB, you should continue here\n"},"tutorials/server.html":{"url":"tutorials/server.html","title":"Using the Server Plugin","keywords":"","body":"Using the Server Plugin\nIn this tutorial you learn how to use the server plugin and replicate data from a node-process to the client.\nThe server plugin is usefull\n\nTo simulate the couchdb in developer-mode without setting up a real one\nTo replicate data between the renderer and the node-process in an electron-app\nTo fast spin up a prototype-app without having to define an API\n\nIt shell never be used open accessible to the internet, use a couchdb-instance at production.\nIn NodeJs\nBecause the server plugin only works in node, it is not part of the default rxdb-build. You have to import it before you can use it.\nimport RxDB from 'rxdb';\n\n// add the server-plugin\nimport RxDBServerPlugin from 'rxdb/plugins/server';\nRxDB.plugin(RxDBServerPlugin);\n\n// add the memory-adapter\nimport * as MemoryAdapter from 'pouchdb-adapter-memory';\nRxDB.plugin(MemoryAdapter);\n\nYou also have to install the module express-pouchdb which does not come with RxDB.\n npm install express-pouchdb --save\n\nNow we can create a database and a collection.\n// create database\nconst db = await RxDB.create({\n name: 'mydb',\n adapter: 'memory'\n});\n\n// create collection\nconst mySchema = {\n version: 0,\n type: 'object',\n properties: {\n key: {\n type: 'string',\n primary: true\n },\n value: {\n type: 'string'\n }\n }\n};\nawait db.collection({\n name: 'items',\n schema: mySchema\n});\n\n// insert one document\nawait db.items.insert({\n key: 'foo',\n value: 'bar'\n});\n\nNow we can spawn the server.\nconst {app, server} = db.server({\n path: '/db', // (optional)\n port: 3000, // (optional)\n cors: true, // (optional), enable CORS-headers\n startServer: true // (optional), start express server\n});\n\nTo ensure that everything is ok,\n\nOpen http://localhost:3000/db to get the database-info\nOpen http://localhost:3000/db/items to get the collection-info\n\nServer as a part of bigger Express app\nYou can create server without starting it. It allows to use server as a part of bigger Express app.\nconst {app, server} = db.server({\n path: '/', // omitted when startServer is false and force set to /\n port: 3000, // omitted when startServer is false\n cors: false, // disable CORS-headers (default) - you probably want to configure CORS in your main app\n startServer: false // do not start express server\n});\n\nThen you can mount rxdb server express app in your express app\nconst {app, server} = db.server({\n startServer: false\n});\nconst mainApp = express();\n\n// configure CORS, other middlewares...\n\nmainApp.use('/db', app);\nmainApp.use('/', (req, res) => res.send('hello'));\nmainApp.listen(3000, () => console.log(`Server listening on port 3000`));\n\nTo ensure that everything is ok,\n\nOpen http://localhost:3000/db to get the database-info\nOpen http://localhost:3000/db/items to get the collection-info\n\nOn the client\nOn the client you can now also create a database and replicate it with our server.\nStart with creating the database and collection.\nimport RxDB from 'rxdb';\n\n// we need the http-plugin to relicate over http\nimport * as PouchHttpPlugin from 'pouchdb-adapter-http';\nRxDB.plugin(PouchHttpPlugin);\n\n\nconst clientDB = await RxDB.create({\n name: 'clientdb',\n adapter: 'memory'\n});\n\n// create a collection\nawait clientDB.collection({\n name: 'items',\n schema: mySchema\n});\n\nNow you replicate the client collection with the server.\nclientDB.items.sync({\n remote: 'http://localhost:3000/db/items'\n});\n\nAfter the replication worked, the client has the same document.\nconst docs = await clientDB.items.find().exec();\n\n\nIf you are new to RxDB, you should continue here\n"},"questions-answers.html":{"url":"questions-answers.html","title":"Questions & Answers","keywords":"","body":"Questions and answers\nCan't change the schema\nWhen you make changes to the schema of a collection, you sometimes can get an error like\nError: collection(): another instance created this collection with a different schema.\nThis means you have created a collection before and added document-data to it.\nWhen you now just change the schema, it is likely that the new schema does not match the saved documents inside of the collection.\nThis would cause strange bugs and would be hard to debug, so RxDB check's if your schema has changed and throws an error.\nTo change the schema in production-mode, do the following\n\nIncrease the version by 1\nAdd the appropriate migrationStrategies so the saved data will be modified to match the new schema\n\nIn development-mode, the schema-change can be simplified by one of these strategies:\n\nUse the memory-adapter so your db resets on restart and your schema is not safed permanently\nCall RxDB.removeDatabase('mydatabasename', 'adapter'); before creating a new RxDatabase-instance\nAdd a timestamp as suffix to the database-name to create a new one each run like name: 'heroesDB' + new Date().getTime()\n\n"},"contribute.html":{"url":"contribute.html","title":"Contribute","keywords":"","body":"Contribution\nWe are open to, and grateful for, any contributions made by the community.\nDeveloping\nRequirements\nBefore you can start developing, do the following:\n\nMake sure you have installed nodejs with version 7 or higher\nClone the repository git clone https://github.com/pubkey/rxdb.git\nInstall the dependencies cd rxdb && npm install\nMake sure that the tests work for you npm run test\n\nFlow\nWhile developing you should run npm run dev and leave it open in the console. This will run the unit-tests on every file-change. If you have a slow device, you can also manually run npm run test:node every time you want to check if the tests work.\nAdding tests\nBefore you start creating a bugfix or a feature, you should create a test to reproduce it. Tests are in the test/unit-folder.\nIf you want to reproduce a bug, you can modify the test in this file.\nMaking a PR\nIf you make a pull-request, ensure the following:\n\nEvery feature or bugfix must be committed together with a unit-test which ensures everything works as expected.\nDo not commit build-files (anything in the dist-folder)\nBefore you add non-trivial changes, create an issue to discuss if this will be merged and you don't waste your time.\nTo run the unit and integration-tests, do npm run test and ensure everything works as expected\n\nGetting help\nIf you need help with your contribution, ask at gitter.\nDocs\nThe source of the documentation is at the docs-src-folder.\nTo read the docs locally, run npm run docs docs:install && npm run docs:serve and open http://localhost:4000/\nThank you for contributing!\n"}}} \ No newline at end of file diff --git a/docs/tutorials/server.html b/docs/tutorials/server.html index 45abf9301ea..1697f1ac1ce 100644 --- a/docs/tutorials/server.html +++ b/docs/tutorials/server.html @@ -1718,7 +1718,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"next":{"title":"Questions & Answers","level":"1.23","depth":1,"path":"questions-answers.md","ref":"./questions-answers.md","articles":[]},"previous":{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"path":"tutorials/typescript.md","ref":"./tutorials/typescript.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"tutorials/server.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":"..","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"next":{"title":"Questions & Answers","level":"1.23","depth":1,"path":"questions-answers.md","ref":"./questions-answers.md","articles":[]},"previous":{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"path":"tutorials/typescript.md","ref":"./tutorials/typescript.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"tutorials/server.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":"..","book":{"language":""}}); }); diff --git a/docs/tutorials/typescript.html b/docs/tutorials/typescript.html index ef8d21f1c49..17e7459252b 100644 --- a/docs/tutorials/typescript.html +++ b/docs/tutorials/typescript.html @@ -1737,7 +1737,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"next":{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]},"previous":{"title":"Tutorials","level":"1.22","depth":1,"ref":"","articles":[{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"path":"tutorials/typescript.md","ref":"./tutorials/typescript.md","articles":[]},{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]}]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"tutorials/typescript.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-02T20:01:47.549Z"},"basePath":"..","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"next":{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]},"previous":{"title":"Tutorials","level":"1.22","depth":1,"ref":"","articles":[{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"path":"tutorials/typescript.md","ref":"./tutorials/typescript.md","articles":[]},{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]}]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @patreon ":"https://www.patreon.com/rxdb/"}},"gitbook":"3.2.3"},"file":{"path":"tutorials/typescript.md","mtime":"2019-12-02T16:25:27.634Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-01-06T16:40:03.123Z"},"basePath":"..","book":{"language":""}}); }); diff --git a/package.json b/package.json index e4d4159207d..ff31a1aa662 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "rxdb", "description": "A realtime Database for JavaScript Applications", - "version": "8.7.4", + "version": "8.7.5", "author": "pubkey", "repository": { "type": "git",