@medplum/fhir-router 4.4.2 → 4.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,14 +1,14 @@
1
- "use strict";var co=Object.create;var Ft=Object.defineProperty;var uo=Object.getOwnPropertyDescriptor;var po=Object.getOwnPropertyNames;var lo=Object.getPrototypeOf,fo=Object.prototype.hasOwnProperty;var mo=(e,t)=>{for(var r in t)Ft(e,r,{get:t[r],enumerable:!0})},oi=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of po(t))!fo.call(e,i)&&i!==r&&Ft(e,i,{get:()=>t[i],enumerable:!(n=uo(t,i))||n.enumerable});return e};var si=(e,t,r)=>(r=e!=null?co(lo(e)):{},oi(t||!e||!e.__esModule?Ft(r,"default",{value:e,enumerable:!0}):r,e)),ho=e=>oi(Ft({},"__esModule",{value:!0}),e);var uc={};mo(uc,{FhirRepository:()=>Or,FhirRouter:()=>ti,MemoryRepository:()=>Hn,RepositoryMode:()=>Lt,Router:()=>At,createResourceImpl:()=>so,makeSimpleRequest:()=>cc,processBatch:()=>kt,updateResourceImpl:()=>ao});module.exports=ho(uc);var I=require("@medplum/core"),yo=50,To=8,go=/urn(:|%3A)uuid(:|%3A)[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/,ai="urn:uuid";async function kt(e,t,r,n){return new wr(r,t,n,e).run()}var wr=class{constructor(t,r,n,i){this.router=t,this.repo=r,this.bundle=n,this.req=i,this.resolvedIdentities=Object.create(null)}async run(){let t=this.bundle.type;if(t!=="batch"&&t!=="transaction")throw new I.OperationOutcomeError((0,I.badRequest)("Unrecognized bundle type: "+t));let r=new Array(this.bundle.entry?.length??0),n=await this.preprocessBundle(r);if(!this.isTransaction())return this.processBatch(n,r);if(n.updates>yo)throw new I.OperationOutcomeError((0,I.badRequest)("Transaction contains more update operations than allowed"));if(n.requiresStrongTransaction&&r.length>To)throw new I.OperationOutcomeError((0,I.badRequest)("Transaction requires strict isolation but has too many entries"));return this.repo.withTransaction(()=>this.processBatch(n,r),{serializable:n.requiresStrongTransaction})}async preprocessBundle(t){let r=this.bundle.entry;if(!r?.length)throw new I.OperationOutcomeError((0,I.badRequest)("Missing bundle entries"));let n={transaction:[],batch:[],delete:[],create:[],update:[],patch:[],operation:[],"search-system":[],"search-type":[],read:[],vread:[],"history-system":[],"history-type":[],"history-instance":[]},i=new Set,o=!1,s=0;for(let c=0;c<r.length;c++){let p=r[c];if(!p.request?.method){t[c]=st((0,I.badRequest)("Missing Bundle entry request method",`Bundle.entry[${c}].request.method`));continue}let d=await this.preprocessEntry(p,c,i);if(d){if(!this.isTransaction()){t[c]=st(d);continue}throw new I.OperationOutcomeError(d)}let T=this.getRouteForEntry(p)?.data?.interaction;if(!T||!n[T])throw new I.OperationOutcomeError((0,I.badRequest)(`Invalid REST interaction in batch: ${p.request?.method} ${p.request?.url}`));T==="create"&&p.request?.ifNoneExist?o=!0:T==="update"?(p.request?.url.includes("?")&&(o=!0),s++):T==="delete"&&p.request?.url.includes("?")&&(o=!0),n[T].push(c)}let a=[];for(let c of Object.values(n))a.push(...c);return{ordering:a,requiresStrongTransaction:o,updates:s}}async preprocessEntry(t,r,n){if(!t.request?.url)return(0,I.badRequest)("Missing Bundle entry request URL",`Bundle.entry[${r}].request.url`);let i;try{i=await this.resolveIdentity(t,`Bundle.entry[${r}]`)}catch(o){if(o instanceof I.OperationOutcomeError)return o.outcome;throw o}if(i&&(this.resolvedIdentities[i.placeholder]=i.reference,this.isTransaction())){if(n.has(i.reference))throw new I.OperationOutcomeError((0,I.badRequest)("Duplicate resource identity found in Bundle"));n.add(i.reference)}}async resolveIdentity(t,r){let i=this.getRouteForEntry(t)?.data?.interaction;if(!i)throw new I.OperationOutcomeError(I.notFound);switch(i){case"create":return this.resolveCreateIdentity(t);case"delete":case"update":case"patch":return this.resolveModificationIdentity(t,r);default:return}}getRouteForEntry(t){return this.router.find(t.request?.method,t.request?.url??"")}async resolveCreateIdentity(t){if(!t.fullUrl?.startsWith(ai))return;let r=t.fullUrl;if(t.request?.ifNoneExist){let n=await this.repo.searchResources((0,I.parseSearchRequest)(t.request.url+"?"+t.request.ifNoneExist));if(n.length===1)return{placeholder:r,reference:(0,I.getReferenceString)(n[0])}}if(t.resource)return t.resource.id=this.repo.generateId(),{placeholder:r,reference:(0,I.getReferenceString)(t.resource)}}async resolveModificationIdentity(t,r){if(!t.fullUrl?.startsWith(ai))return;let n=t.fullUrl;if(t.request?.url?.includes("?")){let i=t.request.method,o=(0,I.parseSearchRequest)(t.request.url);o.count=2,o.offset=0,o.sortRules=void 0;let[s,a]=await this.repo.searchResources(o);if(!s)switch(i){case"DELETE":return;case"PUT":if(t.resource){if(t.resource.id)throw new I.OperationOutcomeError((0,I.badRequest)("Cannot provide ID for create by update"));return t.resource.id=this.repo.generateId(),{placeholder:n,reference:(0,I.getReferenceString)(t.resource)}}return;default:throw new I.OperationOutcomeError((0,I.badRequest)(`Conditional ${t.request.method} did not match any resources`,r+".request.url"))}if(a)throw new I.OperationOutcomeError((0,I.badRequest)(`Conditional ${t.request.method} matched multiple resources`,r+".request.url"));let c=(0,I.getReferenceString)(s);return t.request.url=c,t.resource&&(t.resource.id=s.id),{placeholder:n,reference:c}}if(t.request?.url.includes("/"))return{placeholder:n,reference:t.request.url}}async processBatch(t,r){let n=this.bundle.type,i=this.bundle.entry;if(!i)throw new I.OperationOutcomeError((0,I.badRequest)("Missing bundle entry"));let o={type:"batch",bundleType:n,count:i.length,size:JSON.stringify(this.bundle).length};this.router.dispatchEvent(o);let s;for(let c=0;c<t.ordering.length;c++){let p=t.ordering[c],l=i[p],d=this.rewriteIdsInObject(l);try{r[p]=await this.processBatchEntry(d)}catch(m){if(this.isTransaction())throw m;if(s=(0,I.append)(s,m.message),m instanceof I.OperationOutcomeError&&(0,I.getStatus)(m.outcome)===429){for(let T=c;T<t.ordering.length;T++){let g=t.ordering[T];r[g]=st(m.outcome)}break}r[p]=st((0,I.normalizeOperationOutcome)(m));continue}}let a={type:"batch",bundleType:n,errors:s};return this.router.dispatchEvent(a),{resourceType:"Bundle",type:`${n}-response`,entry:r}}async processBatchEntry(t){let r=this.getRouteForEntry(t);if(!r)throw new I.OperationOutcomeError(I.notFound);let n=this.parseBatchRequest(t,r),[i,o]=await r.handler(n,this.repo,this.router,{batch:!0});if(!(0,I.isOk)(i)&&this.isTransaction())throw new I.OperationOutcomeError(i);return st(i,o)}parseBatchRequest(t,r){let n=t.request,i=Object.create(null);n.ifNoneExist&&(i["if-none-exist"]=n.ifNoneExist),n.ifMatch&&(i["if-match"]=n.ifMatch),n.ifNoneMatch&&(i["if-none-match"]=n.ifNoneMatch),n.ifModifiedSince&&(i["if-modified-since"]=n.ifModifiedSince);let o;return n.method==="PATCH"?o=this.parsePatchBody(t):o=t.resource,{method:n.method,url:r?.query?n.url.slice(0,n.url.indexOf("?")):n.url,pathname:"",params:r?.params??Object.create(null),query:r?.query??Object.create(null),body:o,headers:i,config:this.req.config}}parsePatchBody(t){let r=t.resource,n;if(r?.resourceType==="Binary"){if(!r.data)throw new I.OperationOutcomeError((0,I.badRequest)("Missing entry.resource.data"));n=JSON.parse(Buffer.from(r.data,"base64").toString("utf8"))}else if(r?.resourceType==="Parameters"){if(r.parameter){n=[];for(let i of r.parameter)if(i.name==="operation"){let o=this.parsePatchParameter(i);n.push(o)}}}else throw new I.OperationOutcomeError((0,I.badRequest)("Patch entry must include a Binary or Parameters resource"));if(!Array.isArray(n))throw new I.OperationOutcomeError((0,I.badRequest)("Decoded PATCH body must be an array"));return this.rewriteIdsInArray(n)}parsePatchParameter(t){let r=t.part?.find(i=>i.name==="op")?.valueCode;if(!r)throw new I.OperationOutcomeError((0,I.badRequest)("PATCH Parameters missing op"));let n={op:r};switch(r){case"add":case"replace":case"test":for(let i of t.part)i.name==="path"?n.path=i.valueString:i.name==="value"&&(n.value=JSON.parse(i.valueString??""));break;case"copy":case"move":for(let i of t.part)i.name==="path"?n.path=i.valueString:i.name==="from"&&(n.from=i.valueString);break;case"remove":n.path=t.part?.find(i=>i.name==="path")?.valueString;break}return n}rewriteIds(t){return Array.isArray(t)?this.rewriteIdsInArray(t):typeof t=="string"?this.rewriteIdsInString(t):typeof t=="object"&&t!==null?this.rewriteIdsInObject(t):t}rewriteIdsInArray(t){return t.map(r=>this.rewriteIds(r))}rewriteIdsInObject(t){return Object.fromEntries(Object.entries(t).map(([r,n])=>[r,this.rewriteIds(n)]))}rewriteIdsInString(t){let r=go.exec(t)?.[0];if(!r)return t;let n=r.replaceAll("%3A",":"),i=this.resolvedIdentities[n];return i?t.replaceAll(r,i):t}isTransaction(){return this.bundle.type==="transaction"&&!!this.req.config?.transactions}};function st(e,t){return{response:{outcome:e,status:(0,I.getStatus)(e).toString(),location:(0,I.isOk)(e)&&t?.id?(0,I.getReferenceString)(t):void 0},resource:t}}var S=require("@medplum/core");var k=require("@medplum/core"),no=si(require("dataloader"));function _(e,t){if(!!!e)throw new Error(t)}function ce(e){return typeof e?.then=="function"}function q(e){return typeof e=="object"&&e!==null}function $(e,t){if(!!!e)throw new Error(t??"Unexpected invariant triggered.")}var Eo=/\r\n|[\n\r]/g;function Qe(e,t){let r=0,n=1;for(let i of e.body.matchAll(Eo)){if(typeof i.index=="number"||$(!1),i.index>=t)break;r=i.index+i[0].length,n+=1}return{line:n,column:t+1-r}}function Dr(e){return Ct(e.source,Qe(e.source,e.start))}function Ct(e,t){let r=e.locationOffset.column-1,n="".padStart(r)+e.body,i=t.line-1,o=e.locationOffset.line-1,s=t.line+o,a=t.line===1?r:0,c=t.column+a,p=`${e.name}:${s}:${c}
2
- `,l=n.split(/\r\n|[\n\r]/g),d=l[i];if(d.length>120){let m=Math.floor(c/80),T=c%80,g=[];for(let M=0;M<d.length;M+=80)g.push(d.slice(M,M+80));return p+ci([[`${s} |`,g[0]],...g.slice(1,m+1).map(M=>["|",M]),["|","^".padStart(T)],["|",g[m+1]]])}return p+ci([[`${s-1} |`,l[i-1]],[`${s} |`,d],["|","^".padStart(c)],[`${s+1} |`,l[i+1]]])}function ci(e){let t=e.filter(([n,i])=>i!==void 0),r=Math.max(...t.map(([n])=>n.length));return t.map(([n,i])=>n.padStart(r)+(i?" "+i:"")).join(`
3
- `)}function vo(e){let t=e[0];return t==null||"kind"in t||"length"in t?{nodes:t,source:e[1],positions:e[2],path:e[3],originalError:e[4],extensions:e[5]}:t}var f=class e extends Error{constructor(t,...r){var n,i,o;let{nodes:s,source:a,positions:c,path:p,originalError:l,extensions:d}=vo(r);super(t),this.name="GraphQLError",this.path=p??void 0,this.originalError=l??void 0,this.nodes=ui(Array.isArray(s)?s:s?[s]:void 0);let m=ui((n=this.nodes)===null||n===void 0?void 0:n.map(g=>g.loc).filter(g=>g!=null));this.source=a??(m==null||(i=m[0])===null||i===void 0?void 0:i.source),this.positions=c??m?.map(g=>g.start),this.locations=c&&a?c.map(g=>Qe(a,g)):m?.map(g=>Qe(g.source,g.start));let T=q(l?.extensions)?l?.extensions:void 0;this.extensions=(o=d??T)!==null&&o!==void 0?o:Object.create(null),Object.defineProperties(this,{message:{writable:!0,enumerable:!0},name:{enumerable:!1},nodes:{enumerable:!1},source:{enumerable:!1},positions:{enumerable:!1},originalError:{enumerable:!1}}),l!=null&&l.stack?Object.defineProperty(this,"stack",{value:l.stack,writable:!0,configurable:!0}):Error.captureStackTrace?Error.captureStackTrace(this,e):Object.defineProperty(this,"stack",{value:Error().stack,writable:!0,configurable:!0})}get[Symbol.toStringTag](){return"GraphQLError"}toString(){let t=this.message;if(this.nodes)for(let r of this.nodes)r.loc&&(t+=`
1
+ "use strict";var ao=Object.create;var Ft=Object.defineProperty;var co=Object.getOwnPropertyDescriptor;var uo=Object.getOwnPropertyNames;var po=Object.getPrototypeOf,lo=Object.prototype.hasOwnProperty;var fo=(e,t)=>{for(var r in t)Ft(e,r,{get:t[r],enumerable:!0})},oi=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of uo(t))!lo.call(e,i)&&i!==r&&Ft(e,i,{get:()=>t[i],enumerable:!(n=co(t,i))||n.enumerable});return e};var si=(e,t,r)=>(r=e!=null?ao(po(e)):{},oi(t||!e||!e.__esModule?Ft(r,"default",{value:e,enumerable:!0}):r,e)),mo=e=>oi(Ft({},"__esModule",{value:!0}),e);var cc={};fo(cc,{FhirRepository:()=>Or,FhirRouter:()=>ti,MemoryRepository:()=>Hn,RepositoryMode:()=>Lt,Router:()=>At,createResourceImpl:()=>oo,makeSimpleRequest:()=>ac,processBatch:()=>kt,updateResourceImpl:()=>so});module.exports=mo(cc);var I=require("@medplum/core"),ho=50,yo=8,To=/urn(:|%3A)uuid(:|%3A)[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/;async function kt(e,t,r,n){return new wr(r,t,n,e).run()}var wr=class{constructor(t,r,n,i){this.router=t,this.repo=r,this.bundle=n,this.req=i,this.resolvedIdentities=Object.create(null)}async run(){let t=this.bundle.type;if(t!=="batch"&&t!=="transaction")throw new I.OperationOutcomeError((0,I.badRequest)("Unrecognized bundle type: "+t));let r=new Array(this.bundle.entry?.length??0),n=await this.preprocessBundle(r);if(!this.isTransaction())return this.processBatch(n,r);if(n.updates>ho)throw new I.OperationOutcomeError((0,I.badRequest)("Transaction contains more update operations than allowed"));if(n.requiresStrongTransaction&&r.length>yo)throw new I.OperationOutcomeError((0,I.badRequest)("Transaction requires strict isolation but has too many entries"));return this.repo.withTransaction(()=>this.processBatch(n,r),{serializable:n.requiresStrongTransaction})}async preprocessBundle(t){let r=this.bundle.entry;if(!r?.length)throw new I.OperationOutcomeError((0,I.badRequest)("Missing bundle entries"));let n={transaction:[],batch:[],delete:[],create:[],update:[],patch:[],operation:[],"search-system":[],"search-type":[],read:[],vread:[],"history-system":[],"history-type":[],"history-instance":[]},i=new Set,o=!1,s=0;for(let c=0;c<r.length;c++){let p=r[c];if(!p.request?.method){t[c]=st((0,I.badRequest)("Missing Bundle entry request method",`Bundle.entry[${c}].request.method`));continue}let d=await this.preprocessEntry(p,c,i);if(d){if(!this.isTransaction()){t[c]=st(d);continue}throw new I.OperationOutcomeError(d)}let T=this.getRouteForEntry(p)?.data?.interaction;if(!T||!n[T])throw new I.OperationOutcomeError((0,I.badRequest)(`Invalid REST interaction in batch: ${p.request?.method} ${p.request?.url}`));T==="create"&&p.request?.ifNoneExist?o=!0:T==="update"?(p.request?.url.includes("?")&&(o=!0),s++):T==="delete"&&p.request?.url.includes("?")&&(o=!0),n[T].push(c)}let a=[];for(let c of Object.values(n))a.push(...c);return{ordering:a,requiresStrongTransaction:o,updates:s}}async preprocessEntry(t,r,n){if(!t.request?.url)return(0,I.badRequest)("Missing Bundle entry request URL",`Bundle.entry[${r}].request.url`);let i;try{i=await this.resolveIdentity(t,`Bundle.entry[${r}]`)}catch(o){if(o instanceof I.OperationOutcomeError)return o.outcome;throw o}if(i&&(this.resolvedIdentities[i.placeholder]=i.reference,this.isTransaction())){if(n.has(i.reference))throw new I.OperationOutcomeError((0,I.badRequest)("Duplicate resource identity found in Bundle"));n.add(i.reference)}}async resolveIdentity(t,r){let i=this.getRouteForEntry(t)?.data?.interaction;if(!i)throw new I.OperationOutcomeError(I.notFound);switch(i){case"create":return this.resolveCreateIdentity(t);case"delete":case"update":case"patch":return this.resolveModificationIdentity(t,r);default:return}}getRouteForEntry(t){return this.router.find(t.request?.method,t.request?.url??"")}async resolveCreateIdentity(t){let r=t.fullUrl??"";if(t.request?.ifNoneExist){let n=await this.repo.searchResources((0,I.parseSearchRequest)(t.request.url+"?"+t.request.ifNoneExist));if(n.length===1)return{placeholder:r,reference:(0,I.getReferenceString)(n[0])}}if(t.resource)return t.resource.id=this.repo.generateId(),{placeholder:r,reference:(0,I.getReferenceString)(t.resource)}}async resolveModificationIdentity(t,r){let n=t.fullUrl??"";if(t.request?.url?.includes("?")){let i=t.request.method,o=(0,I.parseSearchRequest)(t.request.url);o.count=2,o.offset=0,o.sortRules=void 0;let[s,a]=await this.repo.searchResources(o);if(!s)switch(i){case"DELETE":return;case"PUT":if(t.resource){if(t.resource.id)throw new I.OperationOutcomeError((0,I.badRequest)("Cannot provide ID for create by update"));return t.resource.id=this.repo.generateId(),{placeholder:n,reference:(0,I.getReferenceString)(t.resource)}}return;default:throw new I.OperationOutcomeError((0,I.badRequest)(`Conditional ${t.request.method} did not match any resources`,r+".request.url"))}if(a)throw new I.OperationOutcomeError((0,I.badRequest)(`Conditional ${t.request.method} matched multiple resources`,r+".request.url"));let c=(0,I.getReferenceString)(s);return t.request.url=c,t.resource&&(t.resource.id=s.id),{placeholder:n,reference:c}}if(t.request?.url.includes("/"))return{placeholder:n,reference:t.request.url}}async processBatch(t,r){let n=this.bundle.type,i=this.bundle.entry;if(!i)throw new I.OperationOutcomeError((0,I.badRequest)("Missing bundle entry"));let o={type:"batch",bundleType:n,count:i.length,size:JSON.stringify(this.bundle).length};this.router.dispatchEvent(o);let s;for(let c=0;c<t.ordering.length;c++){let p=t.ordering[c],l=i[p],d=this.rewriteIdsInObject(l);try{r[p]=await this.processBatchEntry(d)}catch(m){if(this.isTransaction())throw m;if(s=(0,I.append)(s,m.message),m instanceof I.OperationOutcomeError&&(0,I.getStatus)(m.outcome)===429){for(let T=c;T<t.ordering.length;T++){let g=t.ordering[T];r[g]=st(m.outcome)}break}r[p]=st((0,I.normalizeOperationOutcome)(m));continue}}let a={type:"batch",bundleType:n,errors:s};return this.router.dispatchEvent(a),{resourceType:"Bundle",type:`${n}-response`,entry:r}}async processBatchEntry(t){let r=this.getRouteForEntry(t);if(!r)throw new I.OperationOutcomeError(I.notFound);let n=this.parseBatchRequest(t,r),[i,o]=await r.handler(n,this.repo,this.router,{batch:!0});if(!(0,I.isOk)(i)&&this.isTransaction())throw new I.OperationOutcomeError(i);return st(i,o)}parseBatchRequest(t,r){let n=t.request,i=Object.create(null);n.ifNoneExist&&(i["if-none-exist"]=n.ifNoneExist),n.ifMatch&&(i["if-match"]=n.ifMatch),n.ifNoneMatch&&(i["if-none-match"]=n.ifNoneMatch),n.ifModifiedSince&&(i["if-modified-since"]=n.ifModifiedSince);let o;return n.method==="PATCH"?o=this.parsePatchBody(t):o=t.resource,{method:n.method,url:r?.query?n.url.slice(0,n.url.indexOf("?")):n.url,pathname:"",params:r?.params??Object.create(null),query:r?.query??Object.create(null),body:o,headers:i,config:this.req.config}}parsePatchBody(t){let r=t.resource,n;if(r?.resourceType==="Binary"){if(!r.data)throw new I.OperationOutcomeError((0,I.badRequest)("Missing entry.resource.data"));n=JSON.parse(Buffer.from(r.data,"base64").toString("utf8"))}else if(r?.resourceType==="Parameters"){if(r.parameter){n=[];for(let i of r.parameter)if(i.name==="operation"){let o=this.parsePatchParameter(i);n.push(o)}}}else throw new I.OperationOutcomeError((0,I.badRequest)("Patch entry must include a Binary or Parameters resource"));if(!Array.isArray(n))throw new I.OperationOutcomeError((0,I.badRequest)("Decoded PATCH body must be an array"));return this.rewriteIdsInArray(n)}parsePatchParameter(t){let r=t.part?.find(i=>i.name==="op")?.valueCode;if(!r)throw new I.OperationOutcomeError((0,I.badRequest)("PATCH Parameters missing op"));let n={op:r};switch(r){case"add":case"replace":case"test":for(let i of t.part)i.name==="path"?n.path=i.valueString:i.name==="value"&&(n.value=JSON.parse(i.valueString??""));break;case"copy":case"move":for(let i of t.part)i.name==="path"?n.path=i.valueString:i.name==="from"&&(n.from=i.valueString);break;case"remove":n.path=t.part?.find(i=>i.name==="path")?.valueString;break}return n}rewriteIds(t){return Array.isArray(t)?this.rewriteIdsInArray(t):typeof t=="string"?this.rewriteIdsInString(t):typeof t=="object"&&t!==null?this.rewriteIdsInObject(t):t}rewriteIdsInArray(t){return t.map(r=>this.rewriteIds(r))}rewriteIdsInObject(t){return Object.fromEntries(Object.entries(t).map(([r,n])=>[r,this.rewriteIds(n)]))}rewriteIdsInString(t){let r=To.exec(t)?.[0];if(!r)return t;let n=r.replaceAll("%3A",":"),i=this.resolvedIdentities[n];return i?t.replaceAll(r,i):t}isTransaction(){return this.bundle.type==="transaction"&&!!this.req.config?.transactions}};function st(e,t){return{response:{outcome:e,status:(0,I.getStatus)(e).toString(),location:(0,I.isOk)(e)&&t?.id?(0,I.getReferenceString)(t):void 0},resource:t}}var S=require("@medplum/core");var k=require("@medplum/core"),ro=si(require("dataloader"));function _(e,t){if(!!!e)throw new Error(t)}function ce(e){return typeof e?.then=="function"}function q(e){return typeof e=="object"&&e!==null}function $(e,t){if(!!!e)throw new Error(t??"Unexpected invariant triggered.")}var go=/\r\n|[\n\r]/g;function Qe(e,t){let r=0,n=1;for(let i of e.body.matchAll(go)){if(typeof i.index=="number"||$(!1),i.index>=t)break;r=i.index+i[0].length,n+=1}return{line:n,column:t+1-r}}function Dr(e){return Ct(e.source,Qe(e.source,e.start))}function Ct(e,t){let r=e.locationOffset.column-1,n="".padStart(r)+e.body,i=t.line-1,o=e.locationOffset.line-1,s=t.line+o,a=t.line===1?r:0,c=t.column+a,p=`${e.name}:${s}:${c}
2
+ `,l=n.split(/\r\n|[\n\r]/g),d=l[i];if(d.length>120){let m=Math.floor(c/80),T=c%80,g=[];for(let M=0;M<d.length;M+=80)g.push(d.slice(M,M+80));return p+ai([[`${s} |`,g[0]],...g.slice(1,m+1).map(M=>["|",M]),["|","^".padStart(T)],["|",g[m+1]]])}return p+ai([[`${s-1} |`,l[i-1]],[`${s} |`,d],["|","^".padStart(c)],[`${s+1} |`,l[i+1]]])}function ai(e){let t=e.filter(([n,i])=>i!==void 0),r=Math.max(...t.map(([n])=>n.length));return t.map(([n,i])=>n.padStart(r)+(i?" "+i:"")).join(`
3
+ `)}function Eo(e){let t=e[0];return t==null||"kind"in t||"length"in t?{nodes:t,source:e[1],positions:e[2],path:e[3],originalError:e[4],extensions:e[5]}:t}var f=class e extends Error{constructor(t,...r){var n,i,o;let{nodes:s,source:a,positions:c,path:p,originalError:l,extensions:d}=Eo(r);super(t),this.name="GraphQLError",this.path=p??void 0,this.originalError=l??void 0,this.nodes=ci(Array.isArray(s)?s:s?[s]:void 0);let m=ci((n=this.nodes)===null||n===void 0?void 0:n.map(g=>g.loc).filter(g=>g!=null));this.source=a??(m==null||(i=m[0])===null||i===void 0?void 0:i.source),this.positions=c??m?.map(g=>g.start),this.locations=c&&a?c.map(g=>Qe(a,g)):m?.map(g=>Qe(g.source,g.start));let T=q(l?.extensions)?l?.extensions:void 0;this.extensions=(o=d??T)!==null&&o!==void 0?o:Object.create(null),Object.defineProperties(this,{message:{writable:!0,enumerable:!0},name:{enumerable:!1},nodes:{enumerable:!1},source:{enumerable:!1},positions:{enumerable:!1},originalError:{enumerable:!1}}),l!=null&&l.stack?Object.defineProperty(this,"stack",{value:l.stack,writable:!0,configurable:!0}):Error.captureStackTrace?Error.captureStackTrace(this,e):Object.defineProperty(this,"stack",{value:Error().stack,writable:!0,configurable:!0})}get[Symbol.toStringTag](){return"GraphQLError"}toString(){let t=this.message;if(this.nodes)for(let r of this.nodes)r.loc&&(t+=`
4
4
 
5
5
  `+Dr(r.loc));else if(this.source&&this.locations)for(let r of this.locations)t+=`
6
6
 
7
- `+Ct(this.source,r);return t}toJSON(){let t={message:this.message};return this.locations!=null&&(t.locations=this.locations),this.path!=null&&(t.path=this.path),this.extensions!=null&&Object.keys(this.extensions).length>0&&(t.extensions=this.extensions),t}};function ui(e){return e===void 0||e.length===0?void 0:e}function G(e,t,r){return new f(`Syntax Error: ${r}`,{source:e,positions:[t]})}var at=class{constructor(t,r,n){this.start=t.start,this.end=r.end,this.startToken=t,this.endToken=r,this.source=n}get[Symbol.toStringTag](){return"Location"}toJSON(){return{start:this.start,end:this.end}}},Be=class{constructor(t,r,n,i,o,s){this.kind=t,this.start=r,this.end=n,this.line=i,this.column=o,this.value=s,this.prev=null,this.next=null}get[Symbol.toStringTag](){return"Token"}toJSON(){return{kind:this.kind,value:this.value,line:this.line,column:this.column}}},Ar={Name:[],Document:["definitions"],OperationDefinition:["name","variableDefinitions","directives","selectionSet"],VariableDefinition:["variable","type","defaultValue","directives"],Variable:["name"],SelectionSet:["selections"],Field:["alias","name","arguments","directives","selectionSet"],Argument:["name","value"],FragmentSpread:["name","directives"],InlineFragment:["typeCondition","directives","selectionSet"],FragmentDefinition:["name","variableDefinitions","typeCondition","directives","selectionSet"],IntValue:[],FloatValue:[],StringValue:[],BooleanValue:[],NullValue:[],EnumValue:[],ListValue:["values"],ObjectValue:["fields"],ObjectField:["name","value"],Directive:["name","arguments"],NamedType:["name"],ListType:["type"],NonNullType:["type"],SchemaDefinition:["description","directives","operationTypes"],OperationTypeDefinition:["type"],ScalarTypeDefinition:["description","name","directives"],ObjectTypeDefinition:["description","name","interfaces","directives","fields"],FieldDefinition:["description","name","arguments","type","directives"],InputValueDefinition:["description","name","type","defaultValue","directives"],InterfaceTypeDefinition:["description","name","interfaces","directives","fields"],UnionTypeDefinition:["description","name","directives","types"],EnumTypeDefinition:["description","name","directives","values"],EnumValueDefinition:["description","name","directives"],InputObjectTypeDefinition:["description","name","directives","fields"],DirectiveDefinition:["description","name","arguments","locations"],SchemaExtension:["directives","operationTypes"],ScalarTypeExtension:["name","directives"],ObjectTypeExtension:["name","interfaces","directives","fields"],InterfaceTypeExtension:["name","interfaces","directives","fields"],UnionTypeExtension:["name","directives","types"],EnumTypeExtension:["name","directives","values"],InputObjectTypeExtension:["name","directives","fields"]},No=new Set(Object.keys(Ar));function ct(e){let t=e?.kind;return typeof t=="string"&&No.has(t)}var U;(function(e){e.QUERY="query",e.MUTATION="mutation",e.SUBSCRIPTION="subscription"})(U||(U={}));var b;(function(e){e.QUERY="QUERY",e.MUTATION="MUTATION",e.SUBSCRIPTION="SUBSCRIPTION",e.FIELD="FIELD",e.FRAGMENT_DEFINITION="FRAGMENT_DEFINITION",e.FRAGMENT_SPREAD="FRAGMENT_SPREAD",e.INLINE_FRAGMENT="INLINE_FRAGMENT",e.VARIABLE_DEFINITION="VARIABLE_DEFINITION",e.SCHEMA="SCHEMA",e.SCALAR="SCALAR",e.OBJECT="OBJECT",e.FIELD_DEFINITION="FIELD_DEFINITION",e.ARGUMENT_DEFINITION="ARGUMENT_DEFINITION",e.INTERFACE="INTERFACE",e.UNION="UNION",e.ENUM="ENUM",e.ENUM_VALUE="ENUM_VALUE",e.INPUT_OBJECT="INPUT_OBJECT",e.INPUT_FIELD_DEFINITION="INPUT_FIELD_DEFINITION"})(b||(b={}));var u;(function(e){e.NAME="Name",e.DOCUMENT="Document",e.OPERATION_DEFINITION="OperationDefinition",e.VARIABLE_DEFINITION="VariableDefinition",e.SELECTION_SET="SelectionSet",e.FIELD="Field",e.ARGUMENT="Argument",e.FRAGMENT_SPREAD="FragmentSpread",e.INLINE_FRAGMENT="InlineFragment",e.FRAGMENT_DEFINITION="FragmentDefinition",e.VARIABLE="Variable",e.INT="IntValue",e.FLOAT="FloatValue",e.STRING="StringValue",e.BOOLEAN="BooleanValue",e.NULL="NullValue",e.ENUM="EnumValue",e.LIST="ListValue",e.OBJECT="ObjectValue",e.OBJECT_FIELD="ObjectField",e.DIRECTIVE="Directive",e.NAMED_TYPE="NamedType",e.LIST_TYPE="ListType",e.NON_NULL_TYPE="NonNullType",e.SCHEMA_DEFINITION="SchemaDefinition",e.OPERATION_TYPE_DEFINITION="OperationTypeDefinition",e.SCALAR_TYPE_DEFINITION="ScalarTypeDefinition",e.OBJECT_TYPE_DEFINITION="ObjectTypeDefinition",e.FIELD_DEFINITION="FieldDefinition",e.INPUT_VALUE_DEFINITION="InputValueDefinition",e.INTERFACE_TYPE_DEFINITION="InterfaceTypeDefinition",e.UNION_TYPE_DEFINITION="UnionTypeDefinition",e.ENUM_TYPE_DEFINITION="EnumTypeDefinition",e.ENUM_VALUE_DEFINITION="EnumValueDefinition",e.INPUT_OBJECT_TYPE_DEFINITION="InputObjectTypeDefinition",e.DIRECTIVE_DEFINITION="DirectiveDefinition",e.SCHEMA_EXTENSION="SchemaExtension",e.SCALAR_TYPE_EXTENSION="ScalarTypeExtension",e.OBJECT_TYPE_EXTENSION="ObjectTypeExtension",e.INTERFACE_TYPE_EXTENSION="InterfaceTypeExtension",e.UNION_TYPE_EXTENSION="UnionTypeExtension",e.ENUM_TYPE_EXTENSION="EnumTypeExtension",e.INPUT_OBJECT_TYPE_EXTENSION="InputObjectTypeExtension"})(u||(u={}));function Mt(e){return e===9||e===32}function qe(e){return e>=48&&e<=57}function pi(e){return e>=97&&e<=122||e>=65&&e<=90}function ut(e){return pi(e)||e===95}function Pt(e){return pi(e)||qe(e)||e===95}function li(e){var t;let r=Number.MAX_SAFE_INTEGER,n=null,i=-1;for(let s=0;s<e.length;++s){var o;let a=e[s],c=Io(a);c!==a.length&&(n=(o=n)!==null&&o!==void 0?o:s,i=s,s!==0&&c<r&&(r=c))}return e.map((s,a)=>a===0?s:s.slice(r)).slice((t=n)!==null&&t!==void 0?t:0,i+1)}function Io(e){let t=0;for(;t<e.length&&Mt(e.charCodeAt(t));)++t;return t}function fi(e,t){let r=e.replace(/"""/g,'\\"""'),n=r.split(/\r\n|[\n\r]/g),i=n.length===1,o=n.length>1&&n.slice(1).every(T=>T.length===0||Mt(T.charCodeAt(0))),s=r.endsWith('\\"""'),a=e.endsWith('"')&&!s,c=e.endsWith("\\"),p=a||c,l=!(t!=null&&t.minimize)&&(!i||e.length>70||p||o||s),d="",m=i&&Mt(e.charCodeAt(0));return(l&&!m||o)&&(d+=`
7
+ `+Ct(this.source,r);return t}toJSON(){let t={message:this.message};return this.locations!=null&&(t.locations=this.locations),this.path!=null&&(t.path=this.path),this.extensions!=null&&Object.keys(this.extensions).length>0&&(t.extensions=this.extensions),t}};function ci(e){return e===void 0||e.length===0?void 0:e}function G(e,t,r){return new f(`Syntax Error: ${r}`,{source:e,positions:[t]})}var at=class{constructor(t,r,n){this.start=t.start,this.end=r.end,this.startToken=t,this.endToken=r,this.source=n}get[Symbol.toStringTag](){return"Location"}toJSON(){return{start:this.start,end:this.end}}},Be=class{constructor(t,r,n,i,o,s){this.kind=t,this.start=r,this.end=n,this.line=i,this.column=o,this.value=s,this.prev=null,this.next=null}get[Symbol.toStringTag](){return"Token"}toJSON(){return{kind:this.kind,value:this.value,line:this.line,column:this.column}}},Ar={Name:[],Document:["definitions"],OperationDefinition:["name","variableDefinitions","directives","selectionSet"],VariableDefinition:["variable","type","defaultValue","directives"],Variable:["name"],SelectionSet:["selections"],Field:["alias","name","arguments","directives","selectionSet"],Argument:["name","value"],FragmentSpread:["name","directives"],InlineFragment:["typeCondition","directives","selectionSet"],FragmentDefinition:["name","variableDefinitions","typeCondition","directives","selectionSet"],IntValue:[],FloatValue:[],StringValue:[],BooleanValue:[],NullValue:[],EnumValue:[],ListValue:["values"],ObjectValue:["fields"],ObjectField:["name","value"],Directive:["name","arguments"],NamedType:["name"],ListType:["type"],NonNullType:["type"],SchemaDefinition:["description","directives","operationTypes"],OperationTypeDefinition:["type"],ScalarTypeDefinition:["description","name","directives"],ObjectTypeDefinition:["description","name","interfaces","directives","fields"],FieldDefinition:["description","name","arguments","type","directives"],InputValueDefinition:["description","name","type","defaultValue","directives"],InterfaceTypeDefinition:["description","name","interfaces","directives","fields"],UnionTypeDefinition:["description","name","directives","types"],EnumTypeDefinition:["description","name","directives","values"],EnumValueDefinition:["description","name","directives"],InputObjectTypeDefinition:["description","name","directives","fields"],DirectiveDefinition:["description","name","arguments","locations"],SchemaExtension:["directives","operationTypes"],ScalarTypeExtension:["name","directives"],ObjectTypeExtension:["name","interfaces","directives","fields"],InterfaceTypeExtension:["name","interfaces","directives","fields"],UnionTypeExtension:["name","directives","types"],EnumTypeExtension:["name","directives","values"],InputObjectTypeExtension:["name","directives","fields"]},vo=new Set(Object.keys(Ar));function ct(e){let t=e?.kind;return typeof t=="string"&&vo.has(t)}var U;(function(e){e.QUERY="query",e.MUTATION="mutation",e.SUBSCRIPTION="subscription"})(U||(U={}));var b;(function(e){e.QUERY="QUERY",e.MUTATION="MUTATION",e.SUBSCRIPTION="SUBSCRIPTION",e.FIELD="FIELD",e.FRAGMENT_DEFINITION="FRAGMENT_DEFINITION",e.FRAGMENT_SPREAD="FRAGMENT_SPREAD",e.INLINE_FRAGMENT="INLINE_FRAGMENT",e.VARIABLE_DEFINITION="VARIABLE_DEFINITION",e.SCHEMA="SCHEMA",e.SCALAR="SCALAR",e.OBJECT="OBJECT",e.FIELD_DEFINITION="FIELD_DEFINITION",e.ARGUMENT_DEFINITION="ARGUMENT_DEFINITION",e.INTERFACE="INTERFACE",e.UNION="UNION",e.ENUM="ENUM",e.ENUM_VALUE="ENUM_VALUE",e.INPUT_OBJECT="INPUT_OBJECT",e.INPUT_FIELD_DEFINITION="INPUT_FIELD_DEFINITION"})(b||(b={}));var u;(function(e){e.NAME="Name",e.DOCUMENT="Document",e.OPERATION_DEFINITION="OperationDefinition",e.VARIABLE_DEFINITION="VariableDefinition",e.SELECTION_SET="SelectionSet",e.FIELD="Field",e.ARGUMENT="Argument",e.FRAGMENT_SPREAD="FragmentSpread",e.INLINE_FRAGMENT="InlineFragment",e.FRAGMENT_DEFINITION="FragmentDefinition",e.VARIABLE="Variable",e.INT="IntValue",e.FLOAT="FloatValue",e.STRING="StringValue",e.BOOLEAN="BooleanValue",e.NULL="NullValue",e.ENUM="EnumValue",e.LIST="ListValue",e.OBJECT="ObjectValue",e.OBJECT_FIELD="ObjectField",e.DIRECTIVE="Directive",e.NAMED_TYPE="NamedType",e.LIST_TYPE="ListType",e.NON_NULL_TYPE="NonNullType",e.SCHEMA_DEFINITION="SchemaDefinition",e.OPERATION_TYPE_DEFINITION="OperationTypeDefinition",e.SCALAR_TYPE_DEFINITION="ScalarTypeDefinition",e.OBJECT_TYPE_DEFINITION="ObjectTypeDefinition",e.FIELD_DEFINITION="FieldDefinition",e.INPUT_VALUE_DEFINITION="InputValueDefinition",e.INTERFACE_TYPE_DEFINITION="InterfaceTypeDefinition",e.UNION_TYPE_DEFINITION="UnionTypeDefinition",e.ENUM_TYPE_DEFINITION="EnumTypeDefinition",e.ENUM_VALUE_DEFINITION="EnumValueDefinition",e.INPUT_OBJECT_TYPE_DEFINITION="InputObjectTypeDefinition",e.DIRECTIVE_DEFINITION="DirectiveDefinition",e.SCHEMA_EXTENSION="SchemaExtension",e.SCALAR_TYPE_EXTENSION="ScalarTypeExtension",e.OBJECT_TYPE_EXTENSION="ObjectTypeExtension",e.INTERFACE_TYPE_EXTENSION="InterfaceTypeExtension",e.UNION_TYPE_EXTENSION="UnionTypeExtension",e.ENUM_TYPE_EXTENSION="EnumTypeExtension",e.INPUT_OBJECT_TYPE_EXTENSION="InputObjectTypeExtension"})(u||(u={}));function Mt(e){return e===9||e===32}function qe(e){return e>=48&&e<=57}function ui(e){return e>=97&&e<=122||e>=65&&e<=90}function ut(e){return ui(e)||e===95}function Pt(e){return ui(e)||qe(e)||e===95}function pi(e){var t;let r=Number.MAX_SAFE_INTEGER,n=null,i=-1;for(let s=0;s<e.length;++s){var o;let a=e[s],c=No(a);c!==a.length&&(n=(o=n)!==null&&o!==void 0?o:s,i=s,s!==0&&c<r&&(r=c))}return e.map((s,a)=>a===0?s:s.slice(r)).slice((t=n)!==null&&t!==void 0?t:0,i+1)}function No(e){let t=0;for(;t<e.length&&Mt(e.charCodeAt(t));)++t;return t}function li(e,t){let r=e.replace(/"""/g,'\\"""'),n=r.split(/\r\n|[\n\r]/g),i=n.length===1,o=n.length>1&&n.slice(1).every(T=>T.length===0||Mt(T.charCodeAt(0))),s=r.endsWith('\\"""'),a=e.endsWith('"')&&!s,c=e.endsWith("\\"),p=a||c,l=!(t!=null&&t.minimize)&&(!i||e.length>70||p||o||s),d="",m=i&&Mt(e.charCodeAt(0));return(l&&!m||o)&&(d+=`
8
8
  `),d+=r,(l||p)&&(d+=`
9
- `),'"""'+d+'"""'}var h;(function(e){e.SOF="<SOF>",e.EOF="<EOF>",e.BANG="!",e.DOLLAR="$",e.AMP="&",e.PAREN_L="(",e.PAREN_R=")",e.SPREAD="...",e.COLON=":",e.EQUALS="=",e.AT="@",e.BRACKET_L="[",e.BRACKET_R="]",e.BRACE_L="{",e.PIPE="|",e.BRACE_R="}",e.NAME="Name",e.INT="Int",e.FLOAT="Float",e.STRING="String",e.BLOCK_STRING="BlockString",e.COMMENT="Comment"})(h||(h={}));var lt=class{constructor(t){let r=new Be(h.SOF,0,0,0,0);this.source=t,this.lastToken=r,this.token=r,this.line=1,this.lineStart=0}get[Symbol.toStringTag](){return"Lexer"}advance(){return this.lastToken=this.token,this.token=this.lookahead()}lookahead(){let t=this.token;if(t.kind!==h.EOF)do if(t.next)t=t.next;else{let r=bo(this,t.end);t.next=r,r.prev=t,t=r}while(t.kind===h.COMMENT);return t}};function mi(e){return e===h.BANG||e===h.DOLLAR||e===h.AMP||e===h.PAREN_L||e===h.PAREN_R||e===h.SPREAD||e===h.COLON||e===h.EQUALS||e===h.AT||e===h.BRACKET_L||e===h.BRACKET_R||e===h.BRACE_L||e===h.PIPE||e===h.BRACE_R}function Ye(e){return e>=0&&e<=55295||e>=57344&&e<=1114111}function Ut(e,t){return hi(e.charCodeAt(t))&&yi(e.charCodeAt(t+1))}function hi(e){return e>=55296&&e<=56319}function yi(e){return e>=56320&&e<=57343}function Le(e,t){let r=e.source.body.codePointAt(t);if(r===void 0)return h.EOF;if(r>=32&&r<=126){let n=String.fromCodePoint(r);return n==='"'?`'"'`:`"${n}"`}return"U+"+r.toString(16).toUpperCase().padStart(4,"0")}function j(e,t,r,n,i){let o=e.line,s=1+r-e.lineStart;return new Be(t,r,n,o,s,i)}function bo(e,t){let r=e.source.body,n=r.length,i=t;for(;i<n;){let o=r.charCodeAt(i);switch(o){case 65279:case 9:case 32:case 44:++i;continue;case 10:++i,++e.line,e.lineStart=i;continue;case 13:r.charCodeAt(i+1)===10?i+=2:++i,++e.line,e.lineStart=i;continue;case 35:return Ro(e,i);case 33:return j(e,h.BANG,i,i+1);case 36:return j(e,h.DOLLAR,i,i+1);case 38:return j(e,h.AMP,i,i+1);case 40:return j(e,h.PAREN_L,i,i+1);case 41:return j(e,h.PAREN_R,i,i+1);case 46:if(r.charCodeAt(i+1)===46&&r.charCodeAt(i+2)===46)return j(e,h.SPREAD,i,i+3);break;case 58:return j(e,h.COLON,i,i+1);case 61:return j(e,h.EQUALS,i,i+1);case 64:return j(e,h.AT,i,i+1);case 91:return j(e,h.BRACKET_L,i,i+1);case 93:return j(e,h.BRACKET_R,i,i+1);case 123:return j(e,h.BRACE_L,i,i+1);case 124:return j(e,h.PIPE,i,i+1);case 125:return j(e,h.BRACE_R,i,i+1);case 34:return r.charCodeAt(i+1)===34&&r.charCodeAt(i+2)===34?wo(e,i):So(e,i)}if(qe(o)||o===45)return Oo(e,i,o);if(ut(o))return Do(e,i);throw G(e.source,i,o===39?`Unexpected single quote character ('), did you mean to use a double quote (")?`:Ye(o)||Ut(r,i)?`Unexpected character: ${Le(e,i)}.`:`Invalid character: ${Le(e,i)}.`)}return j(e,h.EOF,n,n)}function Ro(e,t){let r=e.source.body,n=r.length,i=t+1;for(;i<n;){let o=r.charCodeAt(i);if(o===10||o===13)break;if(Ye(o))++i;else if(Ut(r,i))i+=2;else break}return j(e,h.COMMENT,t,i,r.slice(t+1,i))}function Oo(e,t,r){let n=e.source.body,i=t,o=r,s=!1;if(o===45&&(o=n.charCodeAt(++i)),o===48){if(o=n.charCodeAt(++i),qe(o))throw G(e.source,i,`Invalid number, unexpected digit after 0: ${Le(e,i)}.`)}else i=Fr(e,i,o),o=n.charCodeAt(i);if(o===46&&(s=!0,o=n.charCodeAt(++i),i=Fr(e,i,o),o=n.charCodeAt(i)),(o===69||o===101)&&(s=!0,o=n.charCodeAt(++i),(o===43||o===45)&&(o=n.charCodeAt(++i)),i=Fr(e,i,o),o=n.charCodeAt(i)),o===46||ut(o))throw G(e.source,i,`Invalid number, expected digit but got: ${Le(e,i)}.`);return j(e,s?h.FLOAT:h.INT,t,i,n.slice(t,i))}function Fr(e,t,r){if(!qe(r))throw G(e.source,t,`Invalid number, expected digit but got: ${Le(e,t)}.`);let n=e.source.body,i=t+1;for(;qe(n.charCodeAt(i));)++i;return i}function So(e,t){let r=e.source.body,n=r.length,i=t+1,o=i,s="";for(;i<n;){let a=r.charCodeAt(i);if(a===34)return s+=r.slice(o,i),j(e,h.STRING,t,i+1,s);if(a===92){s+=r.slice(o,i);let c=r.charCodeAt(i+1)===117?r.charCodeAt(i+2)===123?_o(e,i):xo(e,i):Lo(e,i);s+=c.value,i+=c.size,o=i;continue}if(a===10||a===13)break;if(Ye(a))++i;else if(Ut(r,i))i+=2;else throw G(e.source,i,`Invalid character within String: ${Le(e,i)}.`)}throw G(e.source,i,"Unterminated string.")}function _o(e,t){let r=e.source.body,n=0,i=3;for(;i<12;){let o=r.charCodeAt(t+i++);if(o===125){if(i<5||!Ye(n))break;return{value:String.fromCodePoint(n),size:i}}if(n=n<<4|pt(o),n<0)break}throw G(e.source,t,`Invalid Unicode escape sequence: "${r.slice(t,t+i)}".`)}function xo(e,t){let r=e.source.body,n=di(r,t+2);if(Ye(n))return{value:String.fromCodePoint(n),size:6};if(hi(n)&&r.charCodeAt(t+6)===92&&r.charCodeAt(t+7)===117){let i=di(r,t+8);if(yi(i))return{value:String.fromCodePoint(n,i),size:12}}throw G(e.source,t,`Invalid Unicode escape sequence: "${r.slice(t,t+6)}".`)}function di(e,t){return pt(e.charCodeAt(t))<<12|pt(e.charCodeAt(t+1))<<8|pt(e.charCodeAt(t+2))<<4|pt(e.charCodeAt(t+3))}function pt(e){return e>=48&&e<=57?e-48:e>=65&&e<=70?e-55:e>=97&&e<=102?e-87:-1}function Lo(e,t){let r=e.source.body;switch(r.charCodeAt(t+1)){case 34:return{value:'"',size:2};case 92:return{value:"\\",size:2};case 47:return{value:"/",size:2};case 98:return{value:"\b",size:2};case 102:return{value:"\f",size:2};case 110:return{value:`
10
- `,size:2};case 114:return{value:"\r",size:2};case 116:return{value:" ",size:2}}throw G(e.source,t,`Invalid character escape sequence: "${r.slice(t,t+2)}".`)}function wo(e,t){let r=e.source.body,n=r.length,i=e.lineStart,o=t+3,s=o,a="",c=[];for(;o<n;){let p=r.charCodeAt(o);if(p===34&&r.charCodeAt(o+1)===34&&r.charCodeAt(o+2)===34){a+=r.slice(s,o),c.push(a);let l=j(e,h.BLOCK_STRING,t,o+3,li(c).join(`
11
- `));return e.line+=c.length-1,e.lineStart=i,l}if(p===92&&r.charCodeAt(o+1)===34&&r.charCodeAt(o+2)===34&&r.charCodeAt(o+3)===34){a+=r.slice(s,o),s=o+1,o+=4;continue}if(p===10||p===13){a+=r.slice(s,o),c.push(a),p===13&&r.charCodeAt(o+1)===10?o+=2:++o,a="",s=o,i=o;continue}if(Ye(p))++o;else if(Ut(r,o))o+=2;else throw G(e.source,o,`Invalid character within String: ${Le(e,o)}.`)}throw G(e.source,o,"Unterminated string.")}function Do(e,t){let r=e.source.body,n=r.length,i=t+1;for(;i<n;){let o=r.charCodeAt(i);if(Pt(o))++i;else break}return j(e,h.NAME,t,i,r.slice(t,i))}function y(e){return $t(e,[])}function $t(e,t){switch(typeof e){case"string":return JSON.stringify(e);case"function":return e.name?`[function ${e.name}]`:"[function]";case"object":return Ao(e,t);default:return String(e)}}function Ao(e,t){if(e===null)return"null";if(t.includes(e))return"[Circular]";let r=[...t,e];if(Fo(e)){let n=e.toJSON();if(n!==e)return typeof n=="string"?n:$t(n,r)}else if(Array.isArray(e))return Co(e,r);return ko(e,r)}function Fo(e){return typeof e.toJSON=="function"}function ko(e,t){let r=Object.entries(e);return r.length===0?"{}":t.length>2?"["+Mo(e)+"]":"{ "+r.map(([i,o])=>i+": "+$t(o,t)).join(", ")+" }"}function Co(e,t){if(e.length===0)return"[]";if(t.length>2)return"[Array]";let r=Math.min(10,e.length),n=e.length-r,i=[];for(let o=0;o<r;++o)i.push($t(e[o],t));return n===1?i.push("... 1 more item"):n>1&&i.push(`... ${n} more items`),"["+i.join(", ")+"]"}function Mo(e){let t=Object.prototype.toString.call(e).replace(/^\[object /,"").replace(/]$/,"");if(t==="Object"&&typeof e.constructor=="function"){let r=e.constructor.name;if(typeof r=="string"&&r!=="")return r}return t}var Po=globalThis.process&&process.env.NODE_ENV==="production",re=Po?function(t,r){return t instanceof r}:function(t,r){if(t instanceof r)return!0;if(typeof t=="object"&&t!==null){var n;let i=r.prototype[Symbol.toStringTag],o=Symbol.toStringTag in t?t[Symbol.toStringTag]:(n=t.constructor)===null||n===void 0?void 0:n.name;if(i===o){let s=y(t);throw new Error(`Cannot use ${i} "${s}" from another module or realm.
9
+ `),'"""'+d+'"""'}var h;(function(e){e.SOF="<SOF>",e.EOF="<EOF>",e.BANG="!",e.DOLLAR="$",e.AMP="&",e.PAREN_L="(",e.PAREN_R=")",e.SPREAD="...",e.COLON=":",e.EQUALS="=",e.AT="@",e.BRACKET_L="[",e.BRACKET_R="]",e.BRACE_L="{",e.PIPE="|",e.BRACE_R="}",e.NAME="Name",e.INT="Int",e.FLOAT="Float",e.STRING="String",e.BLOCK_STRING="BlockString",e.COMMENT="Comment"})(h||(h={}));var lt=class{constructor(t){let r=new Be(h.SOF,0,0,0,0);this.source=t,this.lastToken=r,this.token=r,this.line=1,this.lineStart=0}get[Symbol.toStringTag](){return"Lexer"}advance(){return this.lastToken=this.token,this.token=this.lookahead()}lookahead(){let t=this.token;if(t.kind!==h.EOF)do if(t.next)t=t.next;else{let r=Io(this,t.end);t.next=r,r.prev=t,t=r}while(t.kind===h.COMMENT);return t}};function di(e){return e===h.BANG||e===h.DOLLAR||e===h.AMP||e===h.PAREN_L||e===h.PAREN_R||e===h.SPREAD||e===h.COLON||e===h.EQUALS||e===h.AT||e===h.BRACKET_L||e===h.BRACKET_R||e===h.BRACE_L||e===h.PIPE||e===h.BRACE_R}function Ye(e){return e>=0&&e<=55295||e>=57344&&e<=1114111}function Ut(e,t){return mi(e.charCodeAt(t))&&hi(e.charCodeAt(t+1))}function mi(e){return e>=55296&&e<=56319}function hi(e){return e>=56320&&e<=57343}function Le(e,t){let r=e.source.body.codePointAt(t);if(r===void 0)return h.EOF;if(r>=32&&r<=126){let n=String.fromCodePoint(r);return n==='"'?`'"'`:`"${n}"`}return"U+"+r.toString(16).toUpperCase().padStart(4,"0")}function j(e,t,r,n,i){let o=e.line,s=1+r-e.lineStart;return new Be(t,r,n,o,s,i)}function Io(e,t){let r=e.source.body,n=r.length,i=t;for(;i<n;){let o=r.charCodeAt(i);switch(o){case 65279:case 9:case 32:case 44:++i;continue;case 10:++i,++e.line,e.lineStart=i;continue;case 13:r.charCodeAt(i+1)===10?i+=2:++i,++e.line,e.lineStart=i;continue;case 35:return bo(e,i);case 33:return j(e,h.BANG,i,i+1);case 36:return j(e,h.DOLLAR,i,i+1);case 38:return j(e,h.AMP,i,i+1);case 40:return j(e,h.PAREN_L,i,i+1);case 41:return j(e,h.PAREN_R,i,i+1);case 46:if(r.charCodeAt(i+1)===46&&r.charCodeAt(i+2)===46)return j(e,h.SPREAD,i,i+3);break;case 58:return j(e,h.COLON,i,i+1);case 61:return j(e,h.EQUALS,i,i+1);case 64:return j(e,h.AT,i,i+1);case 91:return j(e,h.BRACKET_L,i,i+1);case 93:return j(e,h.BRACKET_R,i,i+1);case 123:return j(e,h.BRACE_L,i,i+1);case 124:return j(e,h.PIPE,i,i+1);case 125:return j(e,h.BRACE_R,i,i+1);case 34:return r.charCodeAt(i+1)===34&&r.charCodeAt(i+2)===34?Lo(e,i):Oo(e,i)}if(qe(o)||o===45)return Ro(e,i,o);if(ut(o))return wo(e,i);throw G(e.source,i,o===39?`Unexpected single quote character ('), did you mean to use a double quote (")?`:Ye(o)||Ut(r,i)?`Unexpected character: ${Le(e,i)}.`:`Invalid character: ${Le(e,i)}.`)}return j(e,h.EOF,n,n)}function bo(e,t){let r=e.source.body,n=r.length,i=t+1;for(;i<n;){let o=r.charCodeAt(i);if(o===10||o===13)break;if(Ye(o))++i;else if(Ut(r,i))i+=2;else break}return j(e,h.COMMENT,t,i,r.slice(t+1,i))}function Ro(e,t,r){let n=e.source.body,i=t,o=r,s=!1;if(o===45&&(o=n.charCodeAt(++i)),o===48){if(o=n.charCodeAt(++i),qe(o))throw G(e.source,i,`Invalid number, unexpected digit after 0: ${Le(e,i)}.`)}else i=Fr(e,i,o),o=n.charCodeAt(i);if(o===46&&(s=!0,o=n.charCodeAt(++i),i=Fr(e,i,o),o=n.charCodeAt(i)),(o===69||o===101)&&(s=!0,o=n.charCodeAt(++i),(o===43||o===45)&&(o=n.charCodeAt(++i)),i=Fr(e,i,o),o=n.charCodeAt(i)),o===46||ut(o))throw G(e.source,i,`Invalid number, expected digit but got: ${Le(e,i)}.`);return j(e,s?h.FLOAT:h.INT,t,i,n.slice(t,i))}function Fr(e,t,r){if(!qe(r))throw G(e.source,t,`Invalid number, expected digit but got: ${Le(e,t)}.`);let n=e.source.body,i=t+1;for(;qe(n.charCodeAt(i));)++i;return i}function Oo(e,t){let r=e.source.body,n=r.length,i=t+1,o=i,s="";for(;i<n;){let a=r.charCodeAt(i);if(a===34)return s+=r.slice(o,i),j(e,h.STRING,t,i+1,s);if(a===92){s+=r.slice(o,i);let c=r.charCodeAt(i+1)===117?r.charCodeAt(i+2)===123?So(e,i):_o(e,i):xo(e,i);s+=c.value,i+=c.size,o=i;continue}if(a===10||a===13)break;if(Ye(a))++i;else if(Ut(r,i))i+=2;else throw G(e.source,i,`Invalid character within String: ${Le(e,i)}.`)}throw G(e.source,i,"Unterminated string.")}function So(e,t){let r=e.source.body,n=0,i=3;for(;i<12;){let o=r.charCodeAt(t+i++);if(o===125){if(i<5||!Ye(n))break;return{value:String.fromCodePoint(n),size:i}}if(n=n<<4|pt(o),n<0)break}throw G(e.source,t,`Invalid Unicode escape sequence: "${r.slice(t,t+i)}".`)}function _o(e,t){let r=e.source.body,n=fi(r,t+2);if(Ye(n))return{value:String.fromCodePoint(n),size:6};if(mi(n)&&r.charCodeAt(t+6)===92&&r.charCodeAt(t+7)===117){let i=fi(r,t+8);if(hi(i))return{value:String.fromCodePoint(n,i),size:12}}throw G(e.source,t,`Invalid Unicode escape sequence: "${r.slice(t,t+6)}".`)}function fi(e,t){return pt(e.charCodeAt(t))<<12|pt(e.charCodeAt(t+1))<<8|pt(e.charCodeAt(t+2))<<4|pt(e.charCodeAt(t+3))}function pt(e){return e>=48&&e<=57?e-48:e>=65&&e<=70?e-55:e>=97&&e<=102?e-87:-1}function xo(e,t){let r=e.source.body;switch(r.charCodeAt(t+1)){case 34:return{value:'"',size:2};case 92:return{value:"\\",size:2};case 47:return{value:"/",size:2};case 98:return{value:"\b",size:2};case 102:return{value:"\f",size:2};case 110:return{value:`
10
+ `,size:2};case 114:return{value:"\r",size:2};case 116:return{value:" ",size:2}}throw G(e.source,t,`Invalid character escape sequence: "${r.slice(t,t+2)}".`)}function Lo(e,t){let r=e.source.body,n=r.length,i=e.lineStart,o=t+3,s=o,a="",c=[];for(;o<n;){let p=r.charCodeAt(o);if(p===34&&r.charCodeAt(o+1)===34&&r.charCodeAt(o+2)===34){a+=r.slice(s,o),c.push(a);let l=j(e,h.BLOCK_STRING,t,o+3,pi(c).join(`
11
+ `));return e.line+=c.length-1,e.lineStart=i,l}if(p===92&&r.charCodeAt(o+1)===34&&r.charCodeAt(o+2)===34&&r.charCodeAt(o+3)===34){a+=r.slice(s,o),s=o+1,o+=4;continue}if(p===10||p===13){a+=r.slice(s,o),c.push(a),p===13&&r.charCodeAt(o+1)===10?o+=2:++o,a="",s=o,i=o;continue}if(Ye(p))++o;else if(Ut(r,o))o+=2;else throw G(e.source,o,`Invalid character within String: ${Le(e,o)}.`)}throw G(e.source,o,"Unterminated string.")}function wo(e,t){let r=e.source.body,n=r.length,i=t+1;for(;i<n;){let o=r.charCodeAt(i);if(Pt(o))++i;else break}return j(e,h.NAME,t,i,r.slice(t,i))}function y(e){return $t(e,[])}function $t(e,t){switch(typeof e){case"string":return JSON.stringify(e);case"function":return e.name?`[function ${e.name}]`:"[function]";case"object":return Do(e,t);default:return String(e)}}function Do(e,t){if(e===null)return"null";if(t.includes(e))return"[Circular]";let r=[...t,e];if(Ao(e)){let n=e.toJSON();if(n!==e)return typeof n=="string"?n:$t(n,r)}else if(Array.isArray(e))return ko(e,r);return Fo(e,r)}function Ao(e){return typeof e.toJSON=="function"}function Fo(e,t){let r=Object.entries(e);return r.length===0?"{}":t.length>2?"["+Co(e)+"]":"{ "+r.map(([i,o])=>i+": "+$t(o,t)).join(", ")+" }"}function ko(e,t){if(e.length===0)return"[]";if(t.length>2)return"[Array]";let r=Math.min(10,e.length),n=e.length-r,i=[];for(let o=0;o<r;++o)i.push($t(e[o],t));return n===1?i.push("... 1 more item"):n>1&&i.push(`... ${n} more items`),"["+i.join(", ")+"]"}function Co(e){let t=Object.prototype.toString.call(e).replace(/^\[object /,"").replace(/]$/,"");if(t==="Object"&&typeof e.constructor=="function"){let r=e.constructor.name;if(typeof r=="string"&&r!=="")return r}return t}var Mo=globalThis.process&&process.env.NODE_ENV==="production",re=Mo?function(t,r){return t instanceof r}:function(t,r){if(t instanceof r)return!0;if(typeof t=="object"&&t!==null){var n;let i=r.prototype[Symbol.toStringTag],o=Symbol.toStringTag in t?t[Symbol.toStringTag]:(n=t.constructor)===null||n===void 0?void 0:n.name;if(i===o){let s=y(t);throw new Error(`Cannot use ${i} "${s}" from another module or realm.
12
12
 
13
13
  Ensure that there is only one instance of "graphql" in the node_modules
14
14
  directory. If different versions of "graphql" are the dependencies of other
@@ -19,16 +19,16 @@ https://yarnpkg.com/en/docs/selective-version-resolutions
19
19
  Duplicate "graphql" modules cannot be used at the same time since different
20
20
  versions may have different capabilities and behavior. The data from one
21
21
  version used in the function from another could produce confusing and
22
- spurious results.`)}}return!1};var He=class{constructor(t,r="GraphQL request",n={line:1,column:1}){typeof t=="string"||_(!1,`Body must be a string. Received: ${y(t)}.`),this.body=t,this.name=r,this.locationOffset=n,this.locationOffset.line>0||_(!1,"line in locationOffset is 1-indexed and must be positive."),this.locationOffset.column>0||_(!1,"column in locationOffset is 1-indexed and must be positive.")}get[Symbol.toStringTag](){return"Source"}};function Ti(e){return re(e,He)}function Gt(e,t){let r=new kr(e,t),n=r.parseDocument();return Object.defineProperty(n,"tokenCount",{enumerable:!1,value:r.tokenCount}),n}var kr=class{constructor(t,r={}){let n=Ti(t)?t:new He(t);this._lexer=new lt(n),this._options=r,this._tokenCounter=0}get tokenCount(){return this._tokenCounter}parseName(){let t=this.expectToken(h.NAME);return this.node(t,{kind:u.NAME,value:t.value})}parseDocument(){return this.node(this._lexer.token,{kind:u.DOCUMENT,definitions:this.many(h.SOF,this.parseDefinition,h.EOF)})}parseDefinition(){if(this.peek(h.BRACE_L))return this.parseOperationDefinition();let t=this.peekDescription(),r=t?this._lexer.lookahead():this._lexer.token;if(r.kind===h.NAME){switch(r.value){case"schema":return this.parseSchemaDefinition();case"scalar":return this.parseScalarTypeDefinition();case"type":return this.parseObjectTypeDefinition();case"interface":return this.parseInterfaceTypeDefinition();case"union":return this.parseUnionTypeDefinition();case"enum":return this.parseEnumTypeDefinition();case"input":return this.parseInputObjectTypeDefinition();case"directive":return this.parseDirectiveDefinition()}if(t)throw G(this._lexer.source,this._lexer.token.start,"Unexpected description, descriptions are supported only on type definitions.");switch(r.value){case"query":case"mutation":case"subscription":return this.parseOperationDefinition();case"fragment":return this.parseFragmentDefinition();case"extend":return this.parseTypeSystemExtension()}}throw this.unexpected(r)}parseOperationDefinition(){let t=this._lexer.token;if(this.peek(h.BRACE_L))return this.node(t,{kind:u.OPERATION_DEFINITION,operation:U.QUERY,name:void 0,variableDefinitions:[],directives:[],selectionSet:this.parseSelectionSet()});let r=this.parseOperationType(),n;return this.peek(h.NAME)&&(n=this.parseName()),this.node(t,{kind:u.OPERATION_DEFINITION,operation:r,name:n,variableDefinitions:this.parseVariableDefinitions(),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseOperationType(){let t=this.expectToken(h.NAME);switch(t.value){case"query":return U.QUERY;case"mutation":return U.MUTATION;case"subscription":return U.SUBSCRIPTION}throw this.unexpected(t)}parseVariableDefinitions(){return this.optionalMany(h.PAREN_L,this.parseVariableDefinition,h.PAREN_R)}parseVariableDefinition(){return this.node(this._lexer.token,{kind:u.VARIABLE_DEFINITION,variable:this.parseVariable(),type:(this.expectToken(h.COLON),this.parseTypeReference()),defaultValue:this.expectOptionalToken(h.EQUALS)?this.parseConstValueLiteral():void 0,directives:this.parseConstDirectives()})}parseVariable(){let t=this._lexer.token;return this.expectToken(h.DOLLAR),this.node(t,{kind:u.VARIABLE,name:this.parseName()})}parseSelectionSet(){return this.node(this._lexer.token,{kind:u.SELECTION_SET,selections:this.many(h.BRACE_L,this.parseSelection,h.BRACE_R)})}parseSelection(){return this.peek(h.SPREAD)?this.parseFragment():this.parseField()}parseField(){let t=this._lexer.token,r=this.parseName(),n,i;return this.expectOptionalToken(h.COLON)?(n=r,i=this.parseName()):i=r,this.node(t,{kind:u.FIELD,alias:n,name:i,arguments:this.parseArguments(!1),directives:this.parseDirectives(!1),selectionSet:this.peek(h.BRACE_L)?this.parseSelectionSet():void 0})}parseArguments(t){let r=t?this.parseConstArgument:this.parseArgument;return this.optionalMany(h.PAREN_L,r,h.PAREN_R)}parseArgument(t=!1){let r=this._lexer.token,n=this.parseName();return this.expectToken(h.COLON),this.node(r,{kind:u.ARGUMENT,name:n,value:this.parseValueLiteral(t)})}parseConstArgument(){return this.parseArgument(!0)}parseFragment(){let t=this._lexer.token;this.expectToken(h.SPREAD);let r=this.expectOptionalKeyword("on");return!r&&this.peek(h.NAME)?this.node(t,{kind:u.FRAGMENT_SPREAD,name:this.parseFragmentName(),directives:this.parseDirectives(!1)}):this.node(t,{kind:u.INLINE_FRAGMENT,typeCondition:r?this.parseNamedType():void 0,directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseFragmentDefinition(){let t=this._lexer.token;return this.expectKeyword("fragment"),this._options.allowLegacyFragmentVariables===!0?this.node(t,{kind:u.FRAGMENT_DEFINITION,name:this.parseFragmentName(),variableDefinitions:this.parseVariableDefinitions(),typeCondition:(this.expectKeyword("on"),this.parseNamedType()),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()}):this.node(t,{kind:u.FRAGMENT_DEFINITION,name:this.parseFragmentName(),typeCondition:(this.expectKeyword("on"),this.parseNamedType()),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseFragmentName(){if(this._lexer.token.value==="on")throw this.unexpected();return this.parseName()}parseValueLiteral(t){let r=this._lexer.token;switch(r.kind){case h.BRACKET_L:return this.parseList(t);case h.BRACE_L:return this.parseObject(t);case h.INT:return this.advanceLexer(),this.node(r,{kind:u.INT,value:r.value});case h.FLOAT:return this.advanceLexer(),this.node(r,{kind:u.FLOAT,value:r.value});case h.STRING:case h.BLOCK_STRING:return this.parseStringLiteral();case h.NAME:switch(this.advanceLexer(),r.value){case"true":return this.node(r,{kind:u.BOOLEAN,value:!0});case"false":return this.node(r,{kind:u.BOOLEAN,value:!1});case"null":return this.node(r,{kind:u.NULL});default:return this.node(r,{kind:u.ENUM,value:r.value})}case h.DOLLAR:if(t)if(this.expectToken(h.DOLLAR),this._lexer.token.kind===h.NAME){let n=this._lexer.token.value;throw G(this._lexer.source,r.start,`Unexpected variable "$${n}" in constant value.`)}else throw this.unexpected(r);return this.parseVariable();default:throw this.unexpected()}}parseConstValueLiteral(){return this.parseValueLiteral(!0)}parseStringLiteral(){let t=this._lexer.token;return this.advanceLexer(),this.node(t,{kind:u.STRING,value:t.value,block:t.kind===h.BLOCK_STRING})}parseList(t){let r=()=>this.parseValueLiteral(t);return this.node(this._lexer.token,{kind:u.LIST,values:this.any(h.BRACKET_L,r,h.BRACKET_R)})}parseObject(t){let r=()=>this.parseObjectField(t);return this.node(this._lexer.token,{kind:u.OBJECT,fields:this.any(h.BRACE_L,r,h.BRACE_R)})}parseObjectField(t){let r=this._lexer.token,n=this.parseName();return this.expectToken(h.COLON),this.node(r,{kind:u.OBJECT_FIELD,name:n,value:this.parseValueLiteral(t)})}parseDirectives(t){let r=[];for(;this.peek(h.AT);)r.push(this.parseDirective(t));return r}parseConstDirectives(){return this.parseDirectives(!0)}parseDirective(t){let r=this._lexer.token;return this.expectToken(h.AT),this.node(r,{kind:u.DIRECTIVE,name:this.parseName(),arguments:this.parseArguments(t)})}parseTypeReference(){let t=this._lexer.token,r;if(this.expectOptionalToken(h.BRACKET_L)){let n=this.parseTypeReference();this.expectToken(h.BRACKET_R),r=this.node(t,{kind:u.LIST_TYPE,type:n})}else r=this.parseNamedType();return this.expectOptionalToken(h.BANG)?this.node(t,{kind:u.NON_NULL_TYPE,type:r}):r}parseNamedType(){return this.node(this._lexer.token,{kind:u.NAMED_TYPE,name:this.parseName()})}peekDescription(){return this.peek(h.STRING)||this.peek(h.BLOCK_STRING)}parseDescription(){if(this.peekDescription())return this.parseStringLiteral()}parseSchemaDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("schema");let n=this.parseConstDirectives(),i=this.many(h.BRACE_L,this.parseOperationTypeDefinition,h.BRACE_R);return this.node(t,{kind:u.SCHEMA_DEFINITION,description:r,directives:n,operationTypes:i})}parseOperationTypeDefinition(){let t=this._lexer.token,r=this.parseOperationType();this.expectToken(h.COLON);let n=this.parseNamedType();return this.node(t,{kind:u.OPERATION_TYPE_DEFINITION,operation:r,type:n})}parseScalarTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("scalar");let n=this.parseName(),i=this.parseConstDirectives();return this.node(t,{kind:u.SCALAR_TYPE_DEFINITION,description:r,name:n,directives:i})}parseObjectTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("type");let n=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:u.OBJECT_TYPE_DEFINITION,description:r,name:n,interfaces:i,directives:o,fields:s})}parseImplementsInterfaces(){return this.expectOptionalKeyword("implements")?this.delimitedMany(h.AMP,this.parseNamedType):[]}parseFieldsDefinition(){return this.optionalMany(h.BRACE_L,this.parseFieldDefinition,h.BRACE_R)}parseFieldDefinition(){let t=this._lexer.token,r=this.parseDescription(),n=this.parseName(),i=this.parseArgumentDefs();this.expectToken(h.COLON);let o=this.parseTypeReference(),s=this.parseConstDirectives();return this.node(t,{kind:u.FIELD_DEFINITION,description:r,name:n,arguments:i,type:o,directives:s})}parseArgumentDefs(){return this.optionalMany(h.PAREN_L,this.parseInputValueDef,h.PAREN_R)}parseInputValueDef(){let t=this._lexer.token,r=this.parseDescription(),n=this.parseName();this.expectToken(h.COLON);let i=this.parseTypeReference(),o;this.expectOptionalToken(h.EQUALS)&&(o=this.parseConstValueLiteral());let s=this.parseConstDirectives();return this.node(t,{kind:u.INPUT_VALUE_DEFINITION,description:r,name:n,type:i,defaultValue:o,directives:s})}parseInterfaceTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("interface");let n=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:u.INTERFACE_TYPE_DEFINITION,description:r,name:n,interfaces:i,directives:o,fields:s})}parseUnionTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("union");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseUnionMemberTypes();return this.node(t,{kind:u.UNION_TYPE_DEFINITION,description:r,name:n,directives:i,types:o})}parseUnionMemberTypes(){return this.expectOptionalToken(h.EQUALS)?this.delimitedMany(h.PIPE,this.parseNamedType):[]}parseEnumTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("enum");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseEnumValuesDefinition();return this.node(t,{kind:u.ENUM_TYPE_DEFINITION,description:r,name:n,directives:i,values:o})}parseEnumValuesDefinition(){return this.optionalMany(h.BRACE_L,this.parseEnumValueDefinition,h.BRACE_R)}parseEnumValueDefinition(){let t=this._lexer.token,r=this.parseDescription(),n=this.parseEnumValueName(),i=this.parseConstDirectives();return this.node(t,{kind:u.ENUM_VALUE_DEFINITION,description:r,name:n,directives:i})}parseEnumValueName(){if(this._lexer.token.value==="true"||this._lexer.token.value==="false"||this._lexer.token.value==="null")throw G(this._lexer.source,this._lexer.token.start,`${Vt(this._lexer.token)} is reserved and cannot be used for an enum value.`);return this.parseName()}parseInputObjectTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("input");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseInputFieldsDefinition();return this.node(t,{kind:u.INPUT_OBJECT_TYPE_DEFINITION,description:r,name:n,directives:i,fields:o})}parseInputFieldsDefinition(){return this.optionalMany(h.BRACE_L,this.parseInputValueDef,h.BRACE_R)}parseTypeSystemExtension(){let t=this._lexer.lookahead();if(t.kind===h.NAME)switch(t.value){case"schema":return this.parseSchemaExtension();case"scalar":return this.parseScalarTypeExtension();case"type":return this.parseObjectTypeExtension();case"interface":return this.parseInterfaceTypeExtension();case"union":return this.parseUnionTypeExtension();case"enum":return this.parseEnumTypeExtension();case"input":return this.parseInputObjectTypeExtension()}throw this.unexpected(t)}parseSchemaExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("schema");let r=this.parseConstDirectives(),n=this.optionalMany(h.BRACE_L,this.parseOperationTypeDefinition,h.BRACE_R);if(r.length===0&&n.length===0)throw this.unexpected();return this.node(t,{kind:u.SCHEMA_EXTENSION,directives:r,operationTypes:n})}parseScalarTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("scalar");let r=this.parseName(),n=this.parseConstDirectives();if(n.length===0)throw this.unexpected();return this.node(t,{kind:u.SCALAR_TYPE_EXTENSION,name:r,directives:n})}parseObjectTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("type");let r=this.parseName(),n=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(n.length===0&&i.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:u.OBJECT_TYPE_EXTENSION,name:r,interfaces:n,directives:i,fields:o})}parseInterfaceTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("interface");let r=this.parseName(),n=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(n.length===0&&i.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:u.INTERFACE_TYPE_EXTENSION,name:r,interfaces:n,directives:i,fields:o})}parseUnionTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("union");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseUnionMemberTypes();if(n.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.UNION_TYPE_EXTENSION,name:r,directives:n,types:i})}parseEnumTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("enum");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseEnumValuesDefinition();if(n.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.ENUM_TYPE_EXTENSION,name:r,directives:n,values:i})}parseInputObjectTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("input");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseInputFieldsDefinition();if(n.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.INPUT_OBJECT_TYPE_EXTENSION,name:r,directives:n,fields:i})}parseDirectiveDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("directive"),this.expectToken(h.AT);let n=this.parseName(),i=this.parseArgumentDefs(),o=this.expectOptionalKeyword("repeatable");this.expectKeyword("on");let s=this.parseDirectiveLocations();return this.node(t,{kind:u.DIRECTIVE_DEFINITION,description:r,name:n,arguments:i,repeatable:o,locations:s})}parseDirectiveLocations(){return this.delimitedMany(h.PIPE,this.parseDirectiveLocation)}parseDirectiveLocation(){let t=this._lexer.token,r=this.parseName();if(Object.prototype.hasOwnProperty.call(b,r.value))return r;throw this.unexpected(t)}node(t,r){return this._options.noLocation!==!0&&(r.loc=new at(t,this._lexer.lastToken,this._lexer.source)),r}peek(t){return this._lexer.token.kind===t}expectToken(t){let r=this._lexer.token;if(r.kind===t)return this.advanceLexer(),r;throw G(this._lexer.source,r.start,`Expected ${gi(t)}, found ${Vt(r)}.`)}expectOptionalToken(t){return this._lexer.token.kind===t?(this.advanceLexer(),!0):!1}expectKeyword(t){let r=this._lexer.token;if(r.kind===h.NAME&&r.value===t)this.advanceLexer();else throw G(this._lexer.source,r.start,`Expected "${t}", found ${Vt(r)}.`)}expectOptionalKeyword(t){let r=this._lexer.token;return r.kind===h.NAME&&r.value===t?(this.advanceLexer(),!0):!1}unexpected(t){let r=t??this._lexer.token;return G(this._lexer.source,r.start,`Unexpected ${Vt(r)}.`)}any(t,r,n){this.expectToken(t);let i=[];for(;!this.expectOptionalToken(n);)i.push(r.call(this));return i}optionalMany(t,r,n){if(this.expectOptionalToken(t)){let i=[];do i.push(r.call(this));while(!this.expectOptionalToken(n));return i}return[]}many(t,r,n){this.expectToken(t);let i=[];do i.push(r.call(this));while(!this.expectOptionalToken(n));return i}delimitedMany(t,r){this.expectOptionalToken(t);let n=[];do n.push(r.call(this));while(this.expectOptionalToken(t));return n}advanceLexer(){let{maxTokens:t}=this._options,r=this._lexer.advance();if(r.kind!==h.EOF&&(++this._tokenCounter,t!==void 0&&this._tokenCounter>t))throw G(this._lexer.source,r.start,`Document contains more that ${t} tokens. Parsing aborted.`)}};function Vt(e){let t=e.value;return gi(e.kind)+(t!=null?` "${t}"`:"")}function gi(e){return mi(e)?`"${e}"`:e}function ee(e,t){let[r,n]=t?[e,t]:[void 0,e],i=" Did you mean ";r&&(i+=r+" ");let o=n.map(c=>`"${c}"`);switch(o.length){case 0:return"";case 1:return i+o[0]+"?";case 2:return i+o[0]+" or "+o[1]+"?"}let s=o.slice(0,5),a=s.pop();return i+s.join(", ")+", or "+a+"?"}function Cr(e){return e}function ye(e,t){let r=Object.create(null);for(let n of e)r[t(n)]=n;return r}function ft(e,t,r){let n=Object.create(null);for(let i of e)n[t(i)]=r(i);return n}function dt(e,t){let r=Object.create(null);for(let n of Object.keys(e))r[n]=t(e[n],n);return r}function Je(e,t){let r=0,n=0;for(;r<e.length&&n<t.length;){let i=e.charCodeAt(r),o=t.charCodeAt(n);if(jt(i)&&jt(o)){let s=0;do++r,s=s*10+i-Mr,i=e.charCodeAt(r);while(jt(i)&&s>0);let a=0;do++n,a=a*10+o-Mr,o=t.charCodeAt(n);while(jt(o)&&a>0);if(s<a)return-1;if(s>a)return 1}else{if(i<o)return-1;if(i>o)return 1;++r,++n}}return e.length-t.length}var Mr=48,Uo=57;function jt(e){return!isNaN(e)&&Mr<=e&&e<=Uo}function ne(e,t){let r=Object.create(null),n=new Pr(e),i=Math.floor(e.length*.4)+1;for(let o of t){let s=n.measure(o,i);s!==void 0&&(r[o]=s)}return Object.keys(r).sort((o,s)=>{let a=r[o]-r[s];return a!==0?a:Je(o,s)})}var Pr=class{constructor(t){this._input=t,this._inputLowerCase=t.toLowerCase(),this._inputArray=Ei(this._inputLowerCase),this._rows=[new Array(t.length+1).fill(0),new Array(t.length+1).fill(0),new Array(t.length+1).fill(0)]}measure(t,r){if(this._input===t)return 0;let n=t.toLowerCase();if(this._inputLowerCase===n)return 1;let i=Ei(n),o=this._inputArray;if(i.length<o.length){let l=i;i=o,o=l}let s=i.length,a=o.length;if(s-a>r)return;let c=this._rows;for(let l=0;l<=a;l++)c[0][l]=l;for(let l=1;l<=s;l++){let d=c[(l-1)%3],m=c[l%3],T=m[0]=l;for(let g=1;g<=a;g++){let M=i[l-1]===o[g-1]?0:1,Z=Math.min(d[g]+1,m[g-1]+1,d[g-1]+M);if(l>1&&g>1&&i[l-1]===o[g-2]&&i[l-2]===o[g-1]){let J=c[(l-2)%3][g-2];Z=Math.min(Z,J+1)}Z<T&&(T=Z),m[g]=Z}if(T>r)return}let p=c[s%3][a];return p<=r?p:void 0}};function Ei(e){let t=e.length,r=new Array(t);for(let n=0;n<t;++n)r[n]=e.charCodeAt(n);return r}function ie(e){if(e==null)return Object.create(null);if(Object.getPrototypeOf(e)===null)return e;let t=Object.create(null);for(let[r,n]of Object.entries(e))t[r]=n;return t}function vi(e){return`"${e.replace($o,Vo)}"`}var $o=/[\x00-\x1f\x22\x5c\x7f-\x9f]/g;function Vo(e){return Go[e.charCodeAt(0)]}var Go=["\\u0000","\\u0001","\\u0002","\\u0003","\\u0004","\\u0005","\\u0006","\\u0007","\\b","\\t","\\n","\\u000B","\\f","\\r","\\u000E","\\u000F","\\u0010","\\u0011","\\u0012","\\u0013","\\u0014","\\u0015","\\u0016","\\u0017","\\u0018","\\u0019","\\u001A","\\u001B","\\u001C","\\u001D","\\u001E","\\u001F","","",'\\"',"","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","\\\\","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","\\u007F","\\u0080","\\u0081","\\u0082","\\u0083","\\u0084","\\u0085","\\u0086","\\u0087","\\u0088","\\u0089","\\u008A","\\u008B","\\u008C","\\u008D","\\u008E","\\u008F","\\u0090","\\u0091","\\u0092","\\u0093","\\u0094","\\u0095","\\u0096","\\u0097","\\u0098","\\u0099","\\u009A","\\u009B","\\u009C","\\u009D","\\u009E","\\u009F"];var ze=Object.freeze({});function we(e,t,r=Ar){let n=new Map;for(let J of Object.values(u))n.set(J,Xe(t,J));let i,o=Array.isArray(e),s=[e],a=-1,c=[],p=e,l,d,m=[],T=[];do{a++;let J=a===s.length,fe=J&&c.length!==0;if(J){if(l=T.length===0?void 0:m[m.length-1],p=d,d=T.pop(),fe)if(o){p=p.slice();let he=0;for(let[Lr,ni]of c){let ii=Lr-he;ni===null?(p.splice(ii,1),he++):p[ii]=ni}}else{p={...p};for(let[he,Lr]of c)p[he]=Lr}a=i.index,s=i.keys,c=i.edits,o=i.inArray,i=i.prev}else if(d){if(l=o?a:s[a],p=d[l],p==null)continue;m.push(l)}let ae;if(!Array.isArray(p)){var g,M;ct(p)||_(!1,`Invalid AST Node: ${y(p)}.`);let he=J?(g=n.get(p.kind))===null||g===void 0?void 0:g.leave:(M=n.get(p.kind))===null||M===void 0?void 0:M.enter;if(ae=he?.call(t,p,l,d,m,T),ae===ze)break;if(ae===!1){if(!J){m.pop();continue}}else if(ae!==void 0&&(c.push([l,ae]),!J))if(ct(ae))p=ae;else{m.pop();continue}}if(ae===void 0&&fe&&c.push([l,p]),J)m.pop();else{var Z;i={inArray:o,index:a,keys:s,edits:c,prev:i},o=Array.isArray(p),s=o?p:(Z=r[p.kind])!==null&&Z!==void 0?Z:[],a=-1,c=[],d&&T.push(d),d=p}}while(i!==void 0);return c.length!==0?c[c.length-1][1]:e}function Ur(e){let t=new Array(e.length).fill(null),r=Object.create(null);for(let n of Object.values(u)){let i=!1,o=new Array(e.length).fill(void 0),s=new Array(e.length).fill(void 0);for(let c=0;c<e.length;++c){let{enter:p,leave:l}=Xe(e[c],n);i||(i=p!=null||l!=null),o[c]=p,s[c]=l}if(!i)continue;let a={enter(...c){let p=c[0];for(let d=0;d<e.length;d++)if(t[d]===null){var l;let m=(l=o[d])===null||l===void 0?void 0:l.apply(e[d],c);if(m===!1)t[d]=p;else if(m===ze)t[d]=ze;else if(m!==void 0)return m}},leave(...c){let p=c[0];for(let d=0;d<e.length;d++)if(t[d]===null){var l;let m=(l=s[d])===null||l===void 0?void 0:l.apply(e[d],c);if(m===ze)t[d]=ze;else if(m!==void 0&&m!==!1)return m}else t[d]===p&&(t[d]=null)}};r[n]=a}return r}function Xe(e,t){let r=e[t];return typeof r=="object"?r:typeof r=="function"?{enter:r,leave:void 0}:{enter:e.enter,leave:e.leave}}function A(e){return we(e,Qo)}var jo=80,Qo={Name:{leave:e=>e.value},Variable:{leave:e=>"$"+e.name},Document:{leave:e=>v(e.definitions,`
22
+ spurious results.`)}}return!1};var He=class{constructor(t,r="GraphQL request",n={line:1,column:1}){typeof t=="string"||_(!1,`Body must be a string. Received: ${y(t)}.`),this.body=t,this.name=r,this.locationOffset=n,this.locationOffset.line>0||_(!1,"line in locationOffset is 1-indexed and must be positive."),this.locationOffset.column>0||_(!1,"column in locationOffset is 1-indexed and must be positive.")}get[Symbol.toStringTag](){return"Source"}};function yi(e){return re(e,He)}function Gt(e,t){let r=new kr(e,t),n=r.parseDocument();return Object.defineProperty(n,"tokenCount",{enumerable:!1,value:r.tokenCount}),n}var kr=class{constructor(t,r={}){let n=yi(t)?t:new He(t);this._lexer=new lt(n),this._options=r,this._tokenCounter=0}get tokenCount(){return this._tokenCounter}parseName(){let t=this.expectToken(h.NAME);return this.node(t,{kind:u.NAME,value:t.value})}parseDocument(){return this.node(this._lexer.token,{kind:u.DOCUMENT,definitions:this.many(h.SOF,this.parseDefinition,h.EOF)})}parseDefinition(){if(this.peek(h.BRACE_L))return this.parseOperationDefinition();let t=this.peekDescription(),r=t?this._lexer.lookahead():this._lexer.token;if(r.kind===h.NAME){switch(r.value){case"schema":return this.parseSchemaDefinition();case"scalar":return this.parseScalarTypeDefinition();case"type":return this.parseObjectTypeDefinition();case"interface":return this.parseInterfaceTypeDefinition();case"union":return this.parseUnionTypeDefinition();case"enum":return this.parseEnumTypeDefinition();case"input":return this.parseInputObjectTypeDefinition();case"directive":return this.parseDirectiveDefinition()}if(t)throw G(this._lexer.source,this._lexer.token.start,"Unexpected description, descriptions are supported only on type definitions.");switch(r.value){case"query":case"mutation":case"subscription":return this.parseOperationDefinition();case"fragment":return this.parseFragmentDefinition();case"extend":return this.parseTypeSystemExtension()}}throw this.unexpected(r)}parseOperationDefinition(){let t=this._lexer.token;if(this.peek(h.BRACE_L))return this.node(t,{kind:u.OPERATION_DEFINITION,operation:U.QUERY,name:void 0,variableDefinitions:[],directives:[],selectionSet:this.parseSelectionSet()});let r=this.parseOperationType(),n;return this.peek(h.NAME)&&(n=this.parseName()),this.node(t,{kind:u.OPERATION_DEFINITION,operation:r,name:n,variableDefinitions:this.parseVariableDefinitions(),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseOperationType(){let t=this.expectToken(h.NAME);switch(t.value){case"query":return U.QUERY;case"mutation":return U.MUTATION;case"subscription":return U.SUBSCRIPTION}throw this.unexpected(t)}parseVariableDefinitions(){return this.optionalMany(h.PAREN_L,this.parseVariableDefinition,h.PAREN_R)}parseVariableDefinition(){return this.node(this._lexer.token,{kind:u.VARIABLE_DEFINITION,variable:this.parseVariable(),type:(this.expectToken(h.COLON),this.parseTypeReference()),defaultValue:this.expectOptionalToken(h.EQUALS)?this.parseConstValueLiteral():void 0,directives:this.parseConstDirectives()})}parseVariable(){let t=this._lexer.token;return this.expectToken(h.DOLLAR),this.node(t,{kind:u.VARIABLE,name:this.parseName()})}parseSelectionSet(){return this.node(this._lexer.token,{kind:u.SELECTION_SET,selections:this.many(h.BRACE_L,this.parseSelection,h.BRACE_R)})}parseSelection(){return this.peek(h.SPREAD)?this.parseFragment():this.parseField()}parseField(){let t=this._lexer.token,r=this.parseName(),n,i;return this.expectOptionalToken(h.COLON)?(n=r,i=this.parseName()):i=r,this.node(t,{kind:u.FIELD,alias:n,name:i,arguments:this.parseArguments(!1),directives:this.parseDirectives(!1),selectionSet:this.peek(h.BRACE_L)?this.parseSelectionSet():void 0})}parseArguments(t){let r=t?this.parseConstArgument:this.parseArgument;return this.optionalMany(h.PAREN_L,r,h.PAREN_R)}parseArgument(t=!1){let r=this._lexer.token,n=this.parseName();return this.expectToken(h.COLON),this.node(r,{kind:u.ARGUMENT,name:n,value:this.parseValueLiteral(t)})}parseConstArgument(){return this.parseArgument(!0)}parseFragment(){let t=this._lexer.token;this.expectToken(h.SPREAD);let r=this.expectOptionalKeyword("on");return!r&&this.peek(h.NAME)?this.node(t,{kind:u.FRAGMENT_SPREAD,name:this.parseFragmentName(),directives:this.parseDirectives(!1)}):this.node(t,{kind:u.INLINE_FRAGMENT,typeCondition:r?this.parseNamedType():void 0,directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseFragmentDefinition(){let t=this._lexer.token;return this.expectKeyword("fragment"),this._options.allowLegacyFragmentVariables===!0?this.node(t,{kind:u.FRAGMENT_DEFINITION,name:this.parseFragmentName(),variableDefinitions:this.parseVariableDefinitions(),typeCondition:(this.expectKeyword("on"),this.parseNamedType()),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()}):this.node(t,{kind:u.FRAGMENT_DEFINITION,name:this.parseFragmentName(),typeCondition:(this.expectKeyword("on"),this.parseNamedType()),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseFragmentName(){if(this._lexer.token.value==="on")throw this.unexpected();return this.parseName()}parseValueLiteral(t){let r=this._lexer.token;switch(r.kind){case h.BRACKET_L:return this.parseList(t);case h.BRACE_L:return this.parseObject(t);case h.INT:return this.advanceLexer(),this.node(r,{kind:u.INT,value:r.value});case h.FLOAT:return this.advanceLexer(),this.node(r,{kind:u.FLOAT,value:r.value});case h.STRING:case h.BLOCK_STRING:return this.parseStringLiteral();case h.NAME:switch(this.advanceLexer(),r.value){case"true":return this.node(r,{kind:u.BOOLEAN,value:!0});case"false":return this.node(r,{kind:u.BOOLEAN,value:!1});case"null":return this.node(r,{kind:u.NULL});default:return this.node(r,{kind:u.ENUM,value:r.value})}case h.DOLLAR:if(t)if(this.expectToken(h.DOLLAR),this._lexer.token.kind===h.NAME){let n=this._lexer.token.value;throw G(this._lexer.source,r.start,`Unexpected variable "$${n}" in constant value.`)}else throw this.unexpected(r);return this.parseVariable();default:throw this.unexpected()}}parseConstValueLiteral(){return this.parseValueLiteral(!0)}parseStringLiteral(){let t=this._lexer.token;return this.advanceLexer(),this.node(t,{kind:u.STRING,value:t.value,block:t.kind===h.BLOCK_STRING})}parseList(t){let r=()=>this.parseValueLiteral(t);return this.node(this._lexer.token,{kind:u.LIST,values:this.any(h.BRACKET_L,r,h.BRACKET_R)})}parseObject(t){let r=()=>this.parseObjectField(t);return this.node(this._lexer.token,{kind:u.OBJECT,fields:this.any(h.BRACE_L,r,h.BRACE_R)})}parseObjectField(t){let r=this._lexer.token,n=this.parseName();return this.expectToken(h.COLON),this.node(r,{kind:u.OBJECT_FIELD,name:n,value:this.parseValueLiteral(t)})}parseDirectives(t){let r=[];for(;this.peek(h.AT);)r.push(this.parseDirective(t));return r}parseConstDirectives(){return this.parseDirectives(!0)}parseDirective(t){let r=this._lexer.token;return this.expectToken(h.AT),this.node(r,{kind:u.DIRECTIVE,name:this.parseName(),arguments:this.parseArguments(t)})}parseTypeReference(){let t=this._lexer.token,r;if(this.expectOptionalToken(h.BRACKET_L)){let n=this.parseTypeReference();this.expectToken(h.BRACKET_R),r=this.node(t,{kind:u.LIST_TYPE,type:n})}else r=this.parseNamedType();return this.expectOptionalToken(h.BANG)?this.node(t,{kind:u.NON_NULL_TYPE,type:r}):r}parseNamedType(){return this.node(this._lexer.token,{kind:u.NAMED_TYPE,name:this.parseName()})}peekDescription(){return this.peek(h.STRING)||this.peek(h.BLOCK_STRING)}parseDescription(){if(this.peekDescription())return this.parseStringLiteral()}parseSchemaDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("schema");let n=this.parseConstDirectives(),i=this.many(h.BRACE_L,this.parseOperationTypeDefinition,h.BRACE_R);return this.node(t,{kind:u.SCHEMA_DEFINITION,description:r,directives:n,operationTypes:i})}parseOperationTypeDefinition(){let t=this._lexer.token,r=this.parseOperationType();this.expectToken(h.COLON);let n=this.parseNamedType();return this.node(t,{kind:u.OPERATION_TYPE_DEFINITION,operation:r,type:n})}parseScalarTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("scalar");let n=this.parseName(),i=this.parseConstDirectives();return this.node(t,{kind:u.SCALAR_TYPE_DEFINITION,description:r,name:n,directives:i})}parseObjectTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("type");let n=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:u.OBJECT_TYPE_DEFINITION,description:r,name:n,interfaces:i,directives:o,fields:s})}parseImplementsInterfaces(){return this.expectOptionalKeyword("implements")?this.delimitedMany(h.AMP,this.parseNamedType):[]}parseFieldsDefinition(){return this.optionalMany(h.BRACE_L,this.parseFieldDefinition,h.BRACE_R)}parseFieldDefinition(){let t=this._lexer.token,r=this.parseDescription(),n=this.parseName(),i=this.parseArgumentDefs();this.expectToken(h.COLON);let o=this.parseTypeReference(),s=this.parseConstDirectives();return this.node(t,{kind:u.FIELD_DEFINITION,description:r,name:n,arguments:i,type:o,directives:s})}parseArgumentDefs(){return this.optionalMany(h.PAREN_L,this.parseInputValueDef,h.PAREN_R)}parseInputValueDef(){let t=this._lexer.token,r=this.parseDescription(),n=this.parseName();this.expectToken(h.COLON);let i=this.parseTypeReference(),o;this.expectOptionalToken(h.EQUALS)&&(o=this.parseConstValueLiteral());let s=this.parseConstDirectives();return this.node(t,{kind:u.INPUT_VALUE_DEFINITION,description:r,name:n,type:i,defaultValue:o,directives:s})}parseInterfaceTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("interface");let n=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:u.INTERFACE_TYPE_DEFINITION,description:r,name:n,interfaces:i,directives:o,fields:s})}parseUnionTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("union");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseUnionMemberTypes();return this.node(t,{kind:u.UNION_TYPE_DEFINITION,description:r,name:n,directives:i,types:o})}parseUnionMemberTypes(){return this.expectOptionalToken(h.EQUALS)?this.delimitedMany(h.PIPE,this.parseNamedType):[]}parseEnumTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("enum");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseEnumValuesDefinition();return this.node(t,{kind:u.ENUM_TYPE_DEFINITION,description:r,name:n,directives:i,values:o})}parseEnumValuesDefinition(){return this.optionalMany(h.BRACE_L,this.parseEnumValueDefinition,h.BRACE_R)}parseEnumValueDefinition(){let t=this._lexer.token,r=this.parseDescription(),n=this.parseEnumValueName(),i=this.parseConstDirectives();return this.node(t,{kind:u.ENUM_VALUE_DEFINITION,description:r,name:n,directives:i})}parseEnumValueName(){if(this._lexer.token.value==="true"||this._lexer.token.value==="false"||this._lexer.token.value==="null")throw G(this._lexer.source,this._lexer.token.start,`${Vt(this._lexer.token)} is reserved and cannot be used for an enum value.`);return this.parseName()}parseInputObjectTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("input");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseInputFieldsDefinition();return this.node(t,{kind:u.INPUT_OBJECT_TYPE_DEFINITION,description:r,name:n,directives:i,fields:o})}parseInputFieldsDefinition(){return this.optionalMany(h.BRACE_L,this.parseInputValueDef,h.BRACE_R)}parseTypeSystemExtension(){let t=this._lexer.lookahead();if(t.kind===h.NAME)switch(t.value){case"schema":return this.parseSchemaExtension();case"scalar":return this.parseScalarTypeExtension();case"type":return this.parseObjectTypeExtension();case"interface":return this.parseInterfaceTypeExtension();case"union":return this.parseUnionTypeExtension();case"enum":return this.parseEnumTypeExtension();case"input":return this.parseInputObjectTypeExtension()}throw this.unexpected(t)}parseSchemaExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("schema");let r=this.parseConstDirectives(),n=this.optionalMany(h.BRACE_L,this.parseOperationTypeDefinition,h.BRACE_R);if(r.length===0&&n.length===0)throw this.unexpected();return this.node(t,{kind:u.SCHEMA_EXTENSION,directives:r,operationTypes:n})}parseScalarTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("scalar");let r=this.parseName(),n=this.parseConstDirectives();if(n.length===0)throw this.unexpected();return this.node(t,{kind:u.SCALAR_TYPE_EXTENSION,name:r,directives:n})}parseObjectTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("type");let r=this.parseName(),n=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(n.length===0&&i.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:u.OBJECT_TYPE_EXTENSION,name:r,interfaces:n,directives:i,fields:o})}parseInterfaceTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("interface");let r=this.parseName(),n=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(n.length===0&&i.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:u.INTERFACE_TYPE_EXTENSION,name:r,interfaces:n,directives:i,fields:o})}parseUnionTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("union");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseUnionMemberTypes();if(n.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.UNION_TYPE_EXTENSION,name:r,directives:n,types:i})}parseEnumTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("enum");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseEnumValuesDefinition();if(n.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.ENUM_TYPE_EXTENSION,name:r,directives:n,values:i})}parseInputObjectTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("input");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseInputFieldsDefinition();if(n.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.INPUT_OBJECT_TYPE_EXTENSION,name:r,directives:n,fields:i})}parseDirectiveDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("directive"),this.expectToken(h.AT);let n=this.parseName(),i=this.parseArgumentDefs(),o=this.expectOptionalKeyword("repeatable");this.expectKeyword("on");let s=this.parseDirectiveLocations();return this.node(t,{kind:u.DIRECTIVE_DEFINITION,description:r,name:n,arguments:i,repeatable:o,locations:s})}parseDirectiveLocations(){return this.delimitedMany(h.PIPE,this.parseDirectiveLocation)}parseDirectiveLocation(){let t=this._lexer.token,r=this.parseName();if(Object.prototype.hasOwnProperty.call(b,r.value))return r;throw this.unexpected(t)}node(t,r){return this._options.noLocation!==!0&&(r.loc=new at(t,this._lexer.lastToken,this._lexer.source)),r}peek(t){return this._lexer.token.kind===t}expectToken(t){let r=this._lexer.token;if(r.kind===t)return this.advanceLexer(),r;throw G(this._lexer.source,r.start,`Expected ${Ti(t)}, found ${Vt(r)}.`)}expectOptionalToken(t){return this._lexer.token.kind===t?(this.advanceLexer(),!0):!1}expectKeyword(t){let r=this._lexer.token;if(r.kind===h.NAME&&r.value===t)this.advanceLexer();else throw G(this._lexer.source,r.start,`Expected "${t}", found ${Vt(r)}.`)}expectOptionalKeyword(t){let r=this._lexer.token;return r.kind===h.NAME&&r.value===t?(this.advanceLexer(),!0):!1}unexpected(t){let r=t??this._lexer.token;return G(this._lexer.source,r.start,`Unexpected ${Vt(r)}.`)}any(t,r,n){this.expectToken(t);let i=[];for(;!this.expectOptionalToken(n);)i.push(r.call(this));return i}optionalMany(t,r,n){if(this.expectOptionalToken(t)){let i=[];do i.push(r.call(this));while(!this.expectOptionalToken(n));return i}return[]}many(t,r,n){this.expectToken(t);let i=[];do i.push(r.call(this));while(!this.expectOptionalToken(n));return i}delimitedMany(t,r){this.expectOptionalToken(t);let n=[];do n.push(r.call(this));while(this.expectOptionalToken(t));return n}advanceLexer(){let{maxTokens:t}=this._options,r=this._lexer.advance();if(r.kind!==h.EOF&&(++this._tokenCounter,t!==void 0&&this._tokenCounter>t))throw G(this._lexer.source,r.start,`Document contains more that ${t} tokens. Parsing aborted.`)}};function Vt(e){let t=e.value;return Ti(e.kind)+(t!=null?` "${t}"`:"")}function Ti(e){return di(e)?`"${e}"`:e}function ee(e,t){let[r,n]=t?[e,t]:[void 0,e],i=" Did you mean ";r&&(i+=r+" ");let o=n.map(c=>`"${c}"`);switch(o.length){case 0:return"";case 1:return i+o[0]+"?";case 2:return i+o[0]+" or "+o[1]+"?"}let s=o.slice(0,5),a=s.pop();return i+s.join(", ")+", or "+a+"?"}function Cr(e){return e}function ye(e,t){let r=Object.create(null);for(let n of e)r[t(n)]=n;return r}function ft(e,t,r){let n=Object.create(null);for(let i of e)n[t(i)]=r(i);return n}function dt(e,t){let r=Object.create(null);for(let n of Object.keys(e))r[n]=t(e[n],n);return r}function Je(e,t){let r=0,n=0;for(;r<e.length&&n<t.length;){let i=e.charCodeAt(r),o=t.charCodeAt(n);if(jt(i)&&jt(o)){let s=0;do++r,s=s*10+i-Mr,i=e.charCodeAt(r);while(jt(i)&&s>0);let a=0;do++n,a=a*10+o-Mr,o=t.charCodeAt(n);while(jt(o)&&a>0);if(s<a)return-1;if(s>a)return 1}else{if(i<o)return-1;if(i>o)return 1;++r,++n}}return e.length-t.length}var Mr=48,Po=57;function jt(e){return!isNaN(e)&&Mr<=e&&e<=Po}function ne(e,t){let r=Object.create(null),n=new Pr(e),i=Math.floor(e.length*.4)+1;for(let o of t){let s=n.measure(o,i);s!==void 0&&(r[o]=s)}return Object.keys(r).sort((o,s)=>{let a=r[o]-r[s];return a!==0?a:Je(o,s)})}var Pr=class{constructor(t){this._input=t,this._inputLowerCase=t.toLowerCase(),this._inputArray=gi(this._inputLowerCase),this._rows=[new Array(t.length+1).fill(0),new Array(t.length+1).fill(0),new Array(t.length+1).fill(0)]}measure(t,r){if(this._input===t)return 0;let n=t.toLowerCase();if(this._inputLowerCase===n)return 1;let i=gi(n),o=this._inputArray;if(i.length<o.length){let l=i;i=o,o=l}let s=i.length,a=o.length;if(s-a>r)return;let c=this._rows;for(let l=0;l<=a;l++)c[0][l]=l;for(let l=1;l<=s;l++){let d=c[(l-1)%3],m=c[l%3],T=m[0]=l;for(let g=1;g<=a;g++){let M=i[l-1]===o[g-1]?0:1,Z=Math.min(d[g]+1,m[g-1]+1,d[g-1]+M);if(l>1&&g>1&&i[l-1]===o[g-2]&&i[l-2]===o[g-1]){let J=c[(l-2)%3][g-2];Z=Math.min(Z,J+1)}Z<T&&(T=Z),m[g]=Z}if(T>r)return}let p=c[s%3][a];return p<=r?p:void 0}};function gi(e){let t=e.length,r=new Array(t);for(let n=0;n<t;++n)r[n]=e.charCodeAt(n);return r}function ie(e){if(e==null)return Object.create(null);if(Object.getPrototypeOf(e)===null)return e;let t=Object.create(null);for(let[r,n]of Object.entries(e))t[r]=n;return t}function Ei(e){return`"${e.replace(Uo,$o)}"`}var Uo=/[\x00-\x1f\x22\x5c\x7f-\x9f]/g;function $o(e){return Vo[e.charCodeAt(0)]}var Vo=["\\u0000","\\u0001","\\u0002","\\u0003","\\u0004","\\u0005","\\u0006","\\u0007","\\b","\\t","\\n","\\u000B","\\f","\\r","\\u000E","\\u000F","\\u0010","\\u0011","\\u0012","\\u0013","\\u0014","\\u0015","\\u0016","\\u0017","\\u0018","\\u0019","\\u001A","\\u001B","\\u001C","\\u001D","\\u001E","\\u001F","","",'\\"',"","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","\\\\","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","\\u007F","\\u0080","\\u0081","\\u0082","\\u0083","\\u0084","\\u0085","\\u0086","\\u0087","\\u0088","\\u0089","\\u008A","\\u008B","\\u008C","\\u008D","\\u008E","\\u008F","\\u0090","\\u0091","\\u0092","\\u0093","\\u0094","\\u0095","\\u0096","\\u0097","\\u0098","\\u0099","\\u009A","\\u009B","\\u009C","\\u009D","\\u009E","\\u009F"];var ze=Object.freeze({});function we(e,t,r=Ar){let n=new Map;for(let J of Object.values(u))n.set(J,Xe(t,J));let i,o=Array.isArray(e),s=[e],a=-1,c=[],p=e,l,d,m=[],T=[];do{a++;let J=a===s.length,fe=J&&c.length!==0;if(J){if(l=T.length===0?void 0:m[m.length-1],p=d,d=T.pop(),fe)if(o){p=p.slice();let he=0;for(let[Lr,ni]of c){let ii=Lr-he;ni===null?(p.splice(ii,1),he++):p[ii]=ni}}else{p={...p};for(let[he,Lr]of c)p[he]=Lr}a=i.index,s=i.keys,c=i.edits,o=i.inArray,i=i.prev}else if(d){if(l=o?a:s[a],p=d[l],p==null)continue;m.push(l)}let ae;if(!Array.isArray(p)){var g,M;ct(p)||_(!1,`Invalid AST Node: ${y(p)}.`);let he=J?(g=n.get(p.kind))===null||g===void 0?void 0:g.leave:(M=n.get(p.kind))===null||M===void 0?void 0:M.enter;if(ae=he?.call(t,p,l,d,m,T),ae===ze)break;if(ae===!1){if(!J){m.pop();continue}}else if(ae!==void 0&&(c.push([l,ae]),!J))if(ct(ae))p=ae;else{m.pop();continue}}if(ae===void 0&&fe&&c.push([l,p]),J)m.pop();else{var Z;i={inArray:o,index:a,keys:s,edits:c,prev:i},o=Array.isArray(p),s=o?p:(Z=r[p.kind])!==null&&Z!==void 0?Z:[],a=-1,c=[],d&&T.push(d),d=p}}while(i!==void 0);return c.length!==0?c[c.length-1][1]:e}function Ur(e){let t=new Array(e.length).fill(null),r=Object.create(null);for(let n of Object.values(u)){let i=!1,o=new Array(e.length).fill(void 0),s=new Array(e.length).fill(void 0);for(let c=0;c<e.length;++c){let{enter:p,leave:l}=Xe(e[c],n);i||(i=p!=null||l!=null),o[c]=p,s[c]=l}if(!i)continue;let a={enter(...c){let p=c[0];for(let d=0;d<e.length;d++)if(t[d]===null){var l;let m=(l=o[d])===null||l===void 0?void 0:l.apply(e[d],c);if(m===!1)t[d]=p;else if(m===ze)t[d]=ze;else if(m!==void 0)return m}},leave(...c){let p=c[0];for(let d=0;d<e.length;d++)if(t[d]===null){var l;let m=(l=s[d])===null||l===void 0?void 0:l.apply(e[d],c);if(m===ze)t[d]=ze;else if(m!==void 0&&m!==!1)return m}else t[d]===p&&(t[d]=null)}};r[n]=a}return r}function Xe(e,t){let r=e[t];return typeof r=="object"?r:typeof r=="function"?{enter:r,leave:void 0}:{enter:e.enter,leave:e.leave}}function A(e){return we(e,jo)}var Go=80,jo={Name:{leave:e=>e.value},Variable:{leave:e=>"$"+e.name},Document:{leave:e=>v(e.definitions,`
23
23
 
24
- `)},OperationDefinition:{leave(e){let t=L("(",v(e.variableDefinitions,", "),")"),r=v([e.operation,v([e.name,t]),v(e.directives," ")]," ");return(r==="query"?"":r+" ")+e.selectionSet}},VariableDefinition:{leave:({variable:e,type:t,defaultValue:r,directives:n})=>e+": "+t+L(" = ",r)+L(" ",v(n," "))},SelectionSet:{leave:({selections:e})=>Te(e)},Field:{leave({alias:e,name:t,arguments:r,directives:n,selectionSet:i}){let o=L("",e,": ")+t,s=o+L("(",v(r,", "),")");return s.length>jo&&(s=o+L(`(
24
+ `)},OperationDefinition:{leave(e){let t=L("(",v(e.variableDefinitions,", "),")"),r=v([e.operation,v([e.name,t]),v(e.directives," ")]," ");return(r==="query"?"":r+" ")+e.selectionSet}},VariableDefinition:{leave:({variable:e,type:t,defaultValue:r,directives:n})=>e+": "+t+L(" = ",r)+L(" ",v(n," "))},SelectionSet:{leave:({selections:e})=>Te(e)},Field:{leave({alias:e,name:t,arguments:r,directives:n,selectionSet:i}){let o=L("",e,": ")+t,s=o+L("(",v(r,", "),")");return s.length>Go&&(s=o+L(`(
25
25
  `,Qt(v(r,`
26
26
  `)),`
27
- )`)),v([s,v(n," "),i]," ")}},Argument:{leave:({name:e,value:t})=>e+": "+t},FragmentSpread:{leave:({name:e,directives:t})=>"..."+e+L(" ",v(t," "))},InlineFragment:{leave:({typeCondition:e,directives:t,selectionSet:r})=>v(["...",L("on ",e),v(t," "),r]," ")},FragmentDefinition:{leave:({name:e,typeCondition:t,variableDefinitions:r,directives:n,selectionSet:i})=>`fragment ${e}${L("(",v(r,", "),")")} on ${t} ${L("",v(n," ")," ")}`+i},IntValue:{leave:({value:e})=>e},FloatValue:{leave:({value:e})=>e},StringValue:{leave:({value:e,block:t})=>t?fi(e):vi(e)},BooleanValue:{leave:({value:e})=>e?"true":"false"},NullValue:{leave:()=>"null"},EnumValue:{leave:({value:e})=>e},ListValue:{leave:({values:e})=>"["+v(e,", ")+"]"},ObjectValue:{leave:({fields:e})=>"{"+v(e,", ")+"}"},ObjectField:{leave:({name:e,value:t})=>e+": "+t},Directive:{leave:({name:e,arguments:t})=>"@"+e+L("(",v(t,", "),")")},NamedType:{leave:({name:e})=>e},ListType:{leave:({type:e})=>"["+e+"]"},NonNullType:{leave:({type:e})=>e+"!"},SchemaDefinition:{leave:({description:e,directives:t,operationTypes:r})=>L("",e,`
27
+ )`)),v([s,v(n," "),i]," ")}},Argument:{leave:({name:e,value:t})=>e+": "+t},FragmentSpread:{leave:({name:e,directives:t})=>"..."+e+L(" ",v(t," "))},InlineFragment:{leave:({typeCondition:e,directives:t,selectionSet:r})=>v(["...",L("on ",e),v(t," "),r]," ")},FragmentDefinition:{leave:({name:e,typeCondition:t,variableDefinitions:r,directives:n,selectionSet:i})=>`fragment ${e}${L("(",v(r,", "),")")} on ${t} ${L("",v(n," ")," ")}`+i},IntValue:{leave:({value:e})=>e},FloatValue:{leave:({value:e})=>e},StringValue:{leave:({value:e,block:t})=>t?li(e):Ei(e)},BooleanValue:{leave:({value:e})=>e?"true":"false"},NullValue:{leave:()=>"null"},EnumValue:{leave:({value:e})=>e},ListValue:{leave:({values:e})=>"["+v(e,", ")+"]"},ObjectValue:{leave:({fields:e})=>"{"+v(e,", ")+"}"},ObjectField:{leave:({name:e,value:t})=>e+": "+t},Directive:{leave:({name:e,arguments:t})=>"@"+e+L("(",v(t,", "),")")},NamedType:{leave:({name:e})=>e},ListType:{leave:({type:e})=>"["+e+"]"},NonNullType:{leave:({type:e})=>e+"!"},SchemaDefinition:{leave:({description:e,directives:t,operationTypes:r})=>L("",e,`
28
28
  `)+v(["schema",v(t," "),Te(r)]," ")},OperationTypeDefinition:{leave:({operation:e,type:t})=>e+": "+t},ScalarTypeDefinition:{leave:({description:e,name:t,directives:r})=>L("",e,`
29
29
  `)+v(["scalar",t,v(r," ")]," ")},ObjectTypeDefinition:{leave:({description:e,name:t,interfaces:r,directives:n,fields:i})=>L("",e,`
30
30
  `)+v(["type",t,L("implements ",v(r," & ")),v(n," "),Te(i)]," ")},FieldDefinition:{leave:({description:e,name:t,arguments:r,type:n,directives:i})=>L("",e,`
31
- `)+t+(Ni(r)?L(`(
31
+ `)+t+(vi(r)?L(`(
32
32
  `,Qt(v(r,`
33
33
  `)),`
34
34
  )`):L("(",v(r,", "),")"))+": "+n+L(" ",v(i," "))},InputValueDefinition:{leave:({description:e,name:t,type:r,defaultValue:n,directives:i})=>L("",e,`
@@ -38,18 +38,18 @@ spurious results.`)}}return!1};var He=class{constructor(t,r="GraphQL request",n=
38
38
  `)+v(["enum",t,v(r," "),Te(n)]," ")},EnumValueDefinition:{leave:({description:e,name:t,directives:r})=>L("",e,`
39
39
  `)+v([t,v(r," ")]," ")},InputObjectTypeDefinition:{leave:({description:e,name:t,directives:r,fields:n})=>L("",e,`
40
40
  `)+v(["input",t,v(r," "),Te(n)]," ")},DirectiveDefinition:{leave:({description:e,name:t,arguments:r,repeatable:n,locations:i})=>L("",e,`
41
- `)+"directive @"+t+(Ni(r)?L(`(
41
+ `)+"directive @"+t+(vi(r)?L(`(
42
42
  `,Qt(v(r,`
43
43
  `)),`
44
44
  )`):L("(",v(r,", "),")"))+(n?" repeatable":"")+" on "+v(i," | ")},SchemaExtension:{leave:({directives:e,operationTypes:t})=>v(["extend schema",v(e," "),Te(t)]," ")},ScalarTypeExtension:{leave:({name:e,directives:t})=>v(["extend scalar",e,v(t," ")]," ")},ObjectTypeExtension:{leave:({name:e,interfaces:t,directives:r,fields:n})=>v(["extend type",e,L("implements ",v(t," & ")),v(r," "),Te(n)]," ")},InterfaceTypeExtension:{leave:({name:e,interfaces:t,directives:r,fields:n})=>v(["extend interface",e,L("implements ",v(t," & ")),v(r," "),Te(n)]," ")},UnionTypeExtension:{leave:({name:e,directives:t,types:r})=>v(["extend union",e,v(t," "),L("= ",v(r," | "))]," ")},EnumTypeExtension:{leave:({name:e,directives:t,values:r})=>v(["extend enum",e,v(t," "),Te(r)]," ")},InputObjectTypeExtension:{leave:({name:e,directives:t,fields:r})=>v(["extend input",e,v(t," "),Te(r)]," ")}};function v(e,t=""){var r;return(r=e?.filter(n=>n).join(t))!==null&&r!==void 0?r:""}function Te(e){return L(`{
45
45
  `,Qt(v(e,`
46
46
  `)),`
47
47
  }`)}function L(e,t,r=""){return t!=null&&t!==""?e+t+r:""}function Qt(e){return L(" ",e.replace(/\n/g,`
48
- `))}function Ni(e){var t;return(t=e?.some(r=>r.includes(`
49
- `)))!==null&&t!==void 0?t:!1}function Bt(e,t){switch(e.kind){case u.NULL:return null;case u.INT:return parseInt(e.value,10);case u.FLOAT:return parseFloat(e.value);case u.STRING:case u.ENUM:case u.BOOLEAN:return e.value;case u.LIST:return e.values.map(r=>Bt(r,t));case u.OBJECT:return ft(e.fields,r=>r.name.value,r=>Bt(r.value,t));case u.VARIABLE:return t?.[e.name.value]}}function se(e){if(e!=null||_(!1,"Must provide name."),typeof e=="string"||_(!1,"Expected name to be a string."),e.length===0)throw new f("Expected name to be a non-empty string.");for(let t=1;t<e.length;++t)if(!Pt(e.charCodeAt(t)))throw new f(`Names must only contain [_a-zA-Z0-9] but "${e}" does not.`);if(!ut(e.charCodeAt(0)))throw new f(`Names must start with [_a-zA-Z] but "${e}" does not.`);return e}function $r(e){if(e==="true"||e==="false"||e==="null")throw new f(`Enum values cannot be named: ${e}`);return se(e)}function We(e){return Ee(e)||x(e)||w(e)||X(e)||Q(e)||D(e)||C(e)||O(e)}function Ee(e){return re(e,ge)}function x(e){return re(e,Y)}function w(e){return re(e,mt)}function X(e){return re(e,De)}function Q(e){return re(e,be)}function D(e){return re(e,Ae)}function C(e){return re(e,P)}function O(e){return re(e,R)}function K(e){return Ee(e)||Q(e)||D(e)||ht(e)&&K(e.ofType)}function Re(e){return Ee(e)||x(e)||w(e)||X(e)||Q(e)||ht(e)&&Re(e.ofType)}function W(e){return Ee(e)||Q(e)}function ue(e){return x(e)||w(e)||X(e)}function oe(e){return w(e)||X(e)}var P=class{constructor(t){We(t)||_(!1,`Expected ${y(t)} to be a GraphQL type.`),this.ofType=t}get[Symbol.toStringTag](){return"GraphQLList"}toString(){return"["+String(this.ofType)+"]"}toJSON(){return this.toString()}},R=class{constructor(t){yt(t)||_(!1,`Expected ${y(t)} to be a GraphQL nullable type.`),this.ofType=t}get[Symbol.toStringTag](){return"GraphQLNonNull"}toString(){return String(this.ofType)+"!"}toJSON(){return this.toString()}};function ht(e){return C(e)||O(e)}function yt(e){return We(e)&&!O(e)}function Ze(e){if(e)return O(e)?e.ofType:e}function Yt(e){return Ee(e)||x(e)||w(e)||X(e)||Q(e)||D(e)}function z(e){if(e){let t=e;for(;ht(t);)t=t.ofType;return t}}function Ht(e){return typeof e=="function"?e():e}function Jt(e){return typeof e=="function"?e():e}var ge=class{constructor(t){var r,n,i,o;let s=(r=t.parseValue)!==null&&r!==void 0?r:Cr;this.name=se(t.name),this.description=t.description,this.specifiedByURL=t.specifiedByURL,this.serialize=(n=t.serialize)!==null&&n!==void 0?n:Cr,this.parseValue=s,this.parseLiteral=(i=t.parseLiteral)!==null&&i!==void 0?i:(a,c)=>s(Bt(a,c)),this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(o=t.extensionASTNodes)!==null&&o!==void 0?o:[],t.specifiedByURL==null||typeof t.specifiedByURL=="string"||_(!1,`${this.name} must provide "specifiedByURL" as a string, but got: ${y(t.specifiedByURL)}.`),t.serialize==null||typeof t.serialize=="function"||_(!1,`${this.name} must provide "serialize" function. If this custom Scalar is also used as an input type, ensure "parseValue" and "parseLiteral" functions are also provided.`),t.parseLiteral&&(typeof t.parseValue=="function"&&typeof t.parseLiteral=="function"||_(!1,`${this.name} must provide both "parseValue" and "parseLiteral" functions.`))}get[Symbol.toStringTag](){return"GraphQLScalarType"}toConfig(){return{name:this.name,description:this.description,specifiedByURL:this.specifiedByURL,serialize:this.serialize,parseValue:this.parseValue,parseLiteral:this.parseLiteral,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}},Y=class{constructor(t){var r;this.name=se(t.name),this.description=t.description,this.isTypeOf=t.isTypeOf,this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this._fields=()=>Ri(t),this._interfaces=()=>bi(t),t.isTypeOf==null||typeof t.isTypeOf=="function"||_(!1,`${this.name} must provide "isTypeOf" as a function, but got: ${y(t.isTypeOf)}.`)}get[Symbol.toStringTag](){return"GraphQLObjectType"}getFields(){return typeof this._fields=="function"&&(this._fields=this._fields()),this._fields}getInterfaces(){return typeof this._interfaces=="function"&&(this._interfaces=this._interfaces()),this._interfaces}toConfig(){return{name:this.name,description:this.description,interfaces:this.getInterfaces(),fields:Oi(this.getFields()),isTypeOf:this.isTypeOf,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}};function bi(e){var t;let r=Ht((t=e.interfaces)!==null&&t!==void 0?t:[]);return Array.isArray(r)||_(!1,`${e.name} interfaces must be an Array or a function which returns an Array.`),r}function Ri(e){let t=Jt(e.fields);return Ke(t)||_(!1,`${e.name} fields must be an object with field names as keys or a function which returns such an object.`),dt(t,(r,n)=>{var i;Ke(r)||_(!1,`${e.name}.${n} field config must be an object.`),r.resolve==null||typeof r.resolve=="function"||_(!1,`${e.name}.${n} field resolver must be a function if provided, but got: ${y(r.resolve)}.`);let o=(i=r.args)!==null&&i!==void 0?i:{};return Ke(o)||_(!1,`${e.name}.${n} args must be an object with argument names as keys.`),{name:se(n),description:r.description,type:r.type,args:Vr(o),resolve:r.resolve,subscribe:r.subscribe,deprecationReason:r.deprecationReason,extensions:ie(r.extensions),astNode:r.astNode}})}function Vr(e){return Object.entries(e).map(([t,r])=>({name:se(t),description:r.description,type:r.type,defaultValue:r.defaultValue,deprecationReason:r.deprecationReason,extensions:ie(r.extensions),astNode:r.astNode}))}function Ke(e){return q(e)&&!Array.isArray(e)}function Oi(e){return dt(e,t=>({description:t.description,type:t.type,args:Gr(t.args),resolve:t.resolve,subscribe:t.subscribe,deprecationReason:t.deprecationReason,extensions:t.extensions,astNode:t.astNode}))}function Gr(e){return ft(e,t=>t.name,t=>({description:t.description,type:t.type,defaultValue:t.defaultValue,deprecationReason:t.deprecationReason,extensions:t.extensions,astNode:t.astNode}))}function Oe(e){return O(e.type)&&e.defaultValue===void 0}var mt=class{constructor(t){var r;this.name=se(t.name),this.description=t.description,this.resolveType=t.resolveType,this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this._fields=Ri.bind(void 0,t),this._interfaces=bi.bind(void 0,t),t.resolveType==null||typeof t.resolveType=="function"||_(!1,`${this.name} must provide "resolveType" as a function, but got: ${y(t.resolveType)}.`)}get[Symbol.toStringTag](){return"GraphQLInterfaceType"}getFields(){return typeof this._fields=="function"&&(this._fields=this._fields()),this._fields}getInterfaces(){return typeof this._interfaces=="function"&&(this._interfaces=this._interfaces()),this._interfaces}toConfig(){return{name:this.name,description:this.description,interfaces:this.getInterfaces(),fields:Oi(this.getFields()),resolveType:this.resolveType,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}},De=class{constructor(t){var r;this.name=se(t.name),this.description=t.description,this.resolveType=t.resolveType,this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this._types=Bo.bind(void 0,t),t.resolveType==null||typeof t.resolveType=="function"||_(!1,`${this.name} must provide "resolveType" as a function, but got: ${y(t.resolveType)}.`)}get[Symbol.toStringTag](){return"GraphQLUnionType"}getTypes(){return typeof this._types=="function"&&(this._types=this._types()),this._types}toConfig(){return{name:this.name,description:this.description,types:this.getTypes(),resolveType:this.resolveType,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}};function Bo(e){let t=Ht(e.types);return Array.isArray(t)||_(!1,`Must provide Array of types or a function which returns such an array for Union ${e.name}.`),t}var be=class{constructor(t){var r;this.name=se(t.name),this.description=t.description,this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this._values=typeof t.values=="function"?t.values:Ii(this.name,t.values),this._valueLookup=null,this._nameLookup=null}get[Symbol.toStringTag](){return"GraphQLEnumType"}getValues(){return typeof this._values=="function"&&(this._values=Ii(this.name,this._values())),this._values}getValue(t){return this._nameLookup===null&&(this._nameLookup=ye(this.getValues(),r=>r.name)),this._nameLookup[t]}serialize(t){this._valueLookup===null&&(this._valueLookup=new Map(this.getValues().map(n=>[n.value,n])));let r=this._valueLookup.get(t);if(r===void 0)throw new f(`Enum "${this.name}" cannot represent value: ${y(t)}`);return r.name}parseValue(t){if(typeof t!="string"){let n=y(t);throw new f(`Enum "${this.name}" cannot represent non-string value: ${n}.`+qt(this,n))}let r=this.getValue(t);if(r==null)throw new f(`Value "${t}" does not exist in "${this.name}" enum.`+qt(this,t));return r.value}parseLiteral(t,r){if(t.kind!==u.ENUM){let i=A(t);throw new f(`Enum "${this.name}" cannot represent non-enum value: ${i}.`+qt(this,i),{nodes:t})}let n=this.getValue(t.value);if(n==null){let i=A(t);throw new f(`Value "${i}" does not exist in "${this.name}" enum.`+qt(this,i),{nodes:t})}return n.value}toConfig(){let t=ft(this.getValues(),r=>r.name,r=>({description:r.description,value:r.value,deprecationReason:r.deprecationReason,extensions:r.extensions,astNode:r.astNode}));return{name:this.name,description:this.description,values:t,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}};function qt(e,t){let r=e.getValues().map(i=>i.name),n=ne(t,r);return ee("the enum value",n)}function Ii(e,t){return Ke(t)||_(!1,`${e} values must be an object with value names as keys.`),Object.entries(t).map(([r,n])=>(Ke(n)||_(!1,`${e}.${r} must refer to an object with a "value" key representing an internal value but got: ${y(n)}.`),{name:$r(r),description:n.description,value:n.value!==void 0?n.value:r,deprecationReason:n.deprecationReason,extensions:ie(n.extensions),astNode:n.astNode}))}var Ae=class{constructor(t){var r,n;this.name=se(t.name),this.description=t.description,this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this.isOneOf=(n=t.isOneOf)!==null&&n!==void 0?n:!1,this._fields=qo.bind(void 0,t)}get[Symbol.toStringTag](){return"GraphQLInputObjectType"}getFields(){return typeof this._fields=="function"&&(this._fields=this._fields()),this._fields}toConfig(){let t=dt(this.getFields(),r=>({description:r.description,type:r.type,defaultValue:r.defaultValue,deprecationReason:r.deprecationReason,extensions:r.extensions,astNode:r.astNode}));return{name:this.name,description:this.description,fields:t,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes,isOneOf:this.isOneOf}}toString(){return this.name}toJSON(){return this.toString()}};function qo(e){let t=Jt(e.fields);return Ke(t)||_(!1,`${e.name} fields must be an object with field names as keys or a function which returns such an object.`),dt(t,(r,n)=>(!("resolve"in r)||_(!1,`${e.name}.${n} field has a resolve property, but Input Types cannot define resolvers.`),{name:se(n),description:r.description,type:r.type,defaultValue:r.defaultValue,deprecationReason:r.deprecationReason,extensions:ie(r.extensions),astNode:r.astNode}))}function et(e){return O(e.type)&&e.defaultValue===void 0}function zt(e,t){return e===t?!0:O(e)&&O(t)||C(e)&&C(t)?zt(e.ofType,t.ofType):!1}function _e(e,t,r){return t===r?!0:O(r)?O(t)?_e(e,t.ofType,r.ofType):!1:O(t)?_e(e,t.ofType,r):C(r)?C(t)?_e(e,t.ofType,r.ofType):!1:C(t)?!1:oe(r)&&(w(t)||x(t))&&e.isSubType(r,t)}function jr(e,t,r){return t===r?!0:oe(t)?oe(r)?e.getPossibleTypes(t).some(n=>e.isSubType(r,n)):e.isSubType(t,r):oe(r)?e.isSubType(r,t):!1}var Tt=2147483647,gt=-2147483648,pe=new ge({name:"Int",description:"The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.",serialize(e){let t=Et(e);if(typeof t=="boolean")return t?1:0;let r=t;if(typeof t=="string"&&t!==""&&(r=Number(t)),typeof r!="number"||!Number.isInteger(r))throw new f(`Int cannot represent non-integer value: ${y(t)}`);if(r>Tt||r<gt)throw new f("Int cannot represent non 32-bit signed integer value: "+y(t));return r},parseValue(e){if(typeof e!="number"||!Number.isInteger(e))throw new f(`Int cannot represent non-integer value: ${y(e)}`);if(e>Tt||e<gt)throw new f(`Int cannot represent non 32-bit signed integer value: ${e}`);return e},parseLiteral(e){if(e.kind!==u.INT)throw new f(`Int cannot represent non-integer value: ${A(e)}`,{nodes:e});let t=parseInt(e.value,10);if(t>Tt||t<gt)throw new f(`Int cannot represent non 32-bit signed integer value: ${e.value}`,{nodes:e});return t}}),le=new ge({name:"Float",description:"The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",serialize(e){let t=Et(e);if(typeof t=="boolean")return t?1:0;let r=t;if(typeof t=="string"&&t!==""&&(r=Number(t)),typeof r!="number"||!Number.isFinite(r))throw new f(`Float cannot represent non numeric value: ${y(t)}`);return r},parseValue(e){if(typeof e!="number"||!Number.isFinite(e))throw new f(`Float cannot represent non numeric value: ${y(e)}`);return e},parseLiteral(e){if(e.kind!==u.FLOAT&&e.kind!==u.INT)throw new f(`Float cannot represent non numeric value: ${A(e)}`,e);return parseFloat(e.value)}}),N=new ge({name:"String",description:"The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.",serialize(e){let t=Et(e);if(typeof t=="string")return t;if(typeof t=="boolean")return t?"true":"false";if(typeof t=="number"&&Number.isFinite(t))return t.toString();throw new f(`String cannot represent value: ${y(e)}`)},parseValue(e){if(typeof e!="string")throw new f(`String cannot represent a non string value: ${y(e)}`);return e},parseLiteral(e){if(e.kind!==u.STRING)throw new f(`String cannot represent a non string value: ${A(e)}`,{nodes:e});return e.value}}),B=new ge({name:"Boolean",description:"The `Boolean` scalar type represents `true` or `false`.",serialize(e){let t=Et(e);if(typeof t=="boolean")return t;if(Number.isFinite(t))return t!==0;throw new f(`Boolean cannot represent a non boolean value: ${y(t)}`)},parseValue(e){if(typeof e!="boolean")throw new f(`Boolean cannot represent a non boolean value: ${y(e)}`);return e},parseLiteral(e){if(e.kind!==u.BOOLEAN)throw new f(`Boolean cannot represent a non boolean value: ${A(e)}`,{nodes:e});return e.value}}),ve=new ge({name:"ID",description:'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',serialize(e){let t=Et(e);if(typeof t=="string")return t;if(Number.isInteger(t))return String(t);throw new f(`ID cannot represent value: ${y(e)}`)},parseValue(e){if(typeof e=="string")return e;if(typeof e=="number"&&Number.isInteger(e))return e.toString();throw new f(`ID cannot represent value: ${y(e)}`)},parseLiteral(e){if(e.kind!==u.STRING&&e.kind!==u.INT)throw new f("ID cannot represent a non-string and non-integer value: "+A(e),{nodes:e});return e.value}}),Xt=Object.freeze([N,pe,le,B,ve]);function Et(e){if(q(e)){if(typeof e.valueOf=="function"){let t=e.valueOf();if(!q(t))return t}if(typeof e.toJSON=="function")return e.toJSON()}return e}function vt(e){return re(e,Se)}var Se=class{constructor(t){var r,n;this.name=se(t.name),this.description=t.description,this.locations=t.locations,this.isRepeatable=(r=t.isRepeatable)!==null&&r!==void 0?r:!1,this.extensions=ie(t.extensions),this.astNode=t.astNode,Array.isArray(t.locations)||_(!1,`@${t.name} locations must be an Array.`);let i=(n=t.args)!==null&&n!==void 0?n:{};q(i)&&!Array.isArray(i)||_(!1,`@${t.name} args must be an object with argument names as keys.`),this.args=Vr(i)}get[Symbol.toStringTag](){return"GraphQLDirective"}toConfig(){return{name:this.name,description:this.description,locations:this.locations,args:Gr(this.args),isRepeatable:this.isRepeatable,extensions:this.extensions,astNode:this.astNode}}toString(){return"@"+this.name}toJSON(){return this.toString()}},Kt=new Se({name:"include",description:"Directs the executor to include this field or fragment only when the `if` argument is true.",locations:[b.FIELD,b.FRAGMENT_SPREAD,b.INLINE_FRAGMENT],args:{if:{type:new R(B),description:"Included when true."}}}),Wt=new Se({name:"skip",description:"Directs the executor to skip this field or fragment when the `if` argument is true.",locations:[b.FIELD,b.FRAGMENT_SPREAD,b.INLINE_FRAGMENT],args:{if:{type:new R(B),description:"Skipped when true."}}}),Si="No longer supported",Zt=new Se({name:"deprecated",description:"Marks an element of a GraphQL schema as no longer supported.",locations:[b.FIELD_DEFINITION,b.ARGUMENT_DEFINITION,b.INPUT_FIELD_DEFINITION,b.ENUM_VALUE],args:{reason:{type:N,description:"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).",defaultValue:Si}}}),_i=new Se({name:"specifiedBy",description:"Exposes a URL that specifies the behavior of this scalar.",locations:[b.SCALAR],args:{url:{type:new R(N),description:"The URL that specifies the behavior of this scalar."}}}),xi=new Se({name:"oneOf",description:"Indicates exactly one field must be supplied and this field must not be `null`.",locations:[b.INPUT_OBJECT],args:{}}),Ne=Object.freeze([Kt,Wt,Zt,_i,xi]);function tt(e){return typeof e=="object"&&typeof e?.[Symbol.iterator]=="function"}function rt(e,t){if(O(t)){let r=rt(e,t.ofType);return r?.kind===u.NULL?null:r}if(e===null)return{kind:u.NULL};if(e===void 0)return null;if(C(t)){let r=t.ofType;if(tt(e)){let n=[];for(let i of e){let o=rt(i,r);o!=null&&n.push(o)}return{kind:u.LIST,values:n}}return rt(e,r)}if(D(t)){if(!q(e))return null;let r=[];for(let n of Object.values(t.getFields())){let i=rt(e[n.name],n.type);i&&r.push({kind:u.OBJECT_FIELD,name:{kind:u.NAME,value:n.name},value:i})}return{kind:u.OBJECT,fields:r}}if(W(t)){let r=t.serialize(e);if(r==null)return null;if(typeof r=="boolean")return{kind:u.BOOLEAN,value:r};if(typeof r=="number"&&Number.isFinite(r)){let n=String(r);return Li.test(n)?{kind:u.INT,value:n}:{kind:u.FLOAT,value:n}}if(typeof r=="string")return Q(t)?{kind:u.ENUM,value:r}:t===ve&&Li.test(r)?{kind:u.INT,value:r}:{kind:u.STRING,value:r};throw new TypeError(`Cannot convert value to AST: ${y(r)}.`)}$(!1,"Unexpected input type: "+y(t))}var Li=/^-?(?:0|[1-9][0-9]*)$/;var Nt=new Y({name:"__Schema",description:"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.",fields:()=>({description:{type:N,resolve:e=>e.description},types:{description:"A list of all types supported by this server.",type:new R(new P(new R(de))),resolve(e){return Object.values(e.getTypeMap())}},queryType:{description:"The type that query operations will be rooted at.",type:new R(de),resolve:e=>e.getQueryType()},mutationType:{description:"If this server supports mutation, the type that mutation operations will be rooted at.",type:de,resolve:e=>e.getMutationType()},subscriptionType:{description:"If this server support subscription, the type that subscription operations will be rooted at.",type:de,resolve:e=>e.getSubscriptionType()},directives:{description:"A list of all directives supported by this server.",type:new R(new P(new R(Qr))),resolve:e=>e.getDirectives()}})}),Qr=new Y({name:"__Directive",description:`A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.
48
+ `))}function vi(e){var t;return(t=e?.some(r=>r.includes(`
49
+ `)))!==null&&t!==void 0?t:!1}function Bt(e,t){switch(e.kind){case u.NULL:return null;case u.INT:return parseInt(e.value,10);case u.FLOAT:return parseFloat(e.value);case u.STRING:case u.ENUM:case u.BOOLEAN:return e.value;case u.LIST:return e.values.map(r=>Bt(r,t));case u.OBJECT:return ft(e.fields,r=>r.name.value,r=>Bt(r.value,t));case u.VARIABLE:return t?.[e.name.value]}}function se(e){if(e!=null||_(!1,"Must provide name."),typeof e=="string"||_(!1,"Expected name to be a string."),e.length===0)throw new f("Expected name to be a non-empty string.");for(let t=1;t<e.length;++t)if(!Pt(e.charCodeAt(t)))throw new f(`Names must only contain [_a-zA-Z0-9] but "${e}" does not.`);if(!ut(e.charCodeAt(0)))throw new f(`Names must start with [_a-zA-Z] but "${e}" does not.`);return e}function $r(e){if(e==="true"||e==="false"||e==="null")throw new f(`Enum values cannot be named: ${e}`);return se(e)}function We(e){return Ee(e)||x(e)||w(e)||X(e)||Q(e)||D(e)||C(e)||O(e)}function Ee(e){return re(e,ge)}function x(e){return re(e,Y)}function w(e){return re(e,mt)}function X(e){return re(e,De)}function Q(e){return re(e,be)}function D(e){return re(e,Ae)}function C(e){return re(e,P)}function O(e){return re(e,R)}function K(e){return Ee(e)||Q(e)||D(e)||ht(e)&&K(e.ofType)}function Re(e){return Ee(e)||x(e)||w(e)||X(e)||Q(e)||ht(e)&&Re(e.ofType)}function W(e){return Ee(e)||Q(e)}function ue(e){return x(e)||w(e)||X(e)}function oe(e){return w(e)||X(e)}var P=class{constructor(t){We(t)||_(!1,`Expected ${y(t)} to be a GraphQL type.`),this.ofType=t}get[Symbol.toStringTag](){return"GraphQLList"}toString(){return"["+String(this.ofType)+"]"}toJSON(){return this.toString()}},R=class{constructor(t){yt(t)||_(!1,`Expected ${y(t)} to be a GraphQL nullable type.`),this.ofType=t}get[Symbol.toStringTag](){return"GraphQLNonNull"}toString(){return String(this.ofType)+"!"}toJSON(){return this.toString()}};function ht(e){return C(e)||O(e)}function yt(e){return We(e)&&!O(e)}function Ze(e){if(e)return O(e)?e.ofType:e}function Yt(e){return Ee(e)||x(e)||w(e)||X(e)||Q(e)||D(e)}function z(e){if(e){let t=e;for(;ht(t);)t=t.ofType;return t}}function Ht(e){return typeof e=="function"?e():e}function Jt(e){return typeof e=="function"?e():e}var ge=class{constructor(t){var r,n,i,o;let s=(r=t.parseValue)!==null&&r!==void 0?r:Cr;this.name=se(t.name),this.description=t.description,this.specifiedByURL=t.specifiedByURL,this.serialize=(n=t.serialize)!==null&&n!==void 0?n:Cr,this.parseValue=s,this.parseLiteral=(i=t.parseLiteral)!==null&&i!==void 0?i:(a,c)=>s(Bt(a,c)),this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(o=t.extensionASTNodes)!==null&&o!==void 0?o:[],t.specifiedByURL==null||typeof t.specifiedByURL=="string"||_(!1,`${this.name} must provide "specifiedByURL" as a string, but got: ${y(t.specifiedByURL)}.`),t.serialize==null||typeof t.serialize=="function"||_(!1,`${this.name} must provide "serialize" function. If this custom Scalar is also used as an input type, ensure "parseValue" and "parseLiteral" functions are also provided.`),t.parseLiteral&&(typeof t.parseValue=="function"&&typeof t.parseLiteral=="function"||_(!1,`${this.name} must provide both "parseValue" and "parseLiteral" functions.`))}get[Symbol.toStringTag](){return"GraphQLScalarType"}toConfig(){return{name:this.name,description:this.description,specifiedByURL:this.specifiedByURL,serialize:this.serialize,parseValue:this.parseValue,parseLiteral:this.parseLiteral,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}},Y=class{constructor(t){var r;this.name=se(t.name),this.description=t.description,this.isTypeOf=t.isTypeOf,this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this._fields=()=>bi(t),this._interfaces=()=>Ii(t),t.isTypeOf==null||typeof t.isTypeOf=="function"||_(!1,`${this.name} must provide "isTypeOf" as a function, but got: ${y(t.isTypeOf)}.`)}get[Symbol.toStringTag](){return"GraphQLObjectType"}getFields(){return typeof this._fields=="function"&&(this._fields=this._fields()),this._fields}getInterfaces(){return typeof this._interfaces=="function"&&(this._interfaces=this._interfaces()),this._interfaces}toConfig(){return{name:this.name,description:this.description,interfaces:this.getInterfaces(),fields:Ri(this.getFields()),isTypeOf:this.isTypeOf,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}};function Ii(e){var t;let r=Ht((t=e.interfaces)!==null&&t!==void 0?t:[]);return Array.isArray(r)||_(!1,`${e.name} interfaces must be an Array or a function which returns an Array.`),r}function bi(e){let t=Jt(e.fields);return Ke(t)||_(!1,`${e.name} fields must be an object with field names as keys or a function which returns such an object.`),dt(t,(r,n)=>{var i;Ke(r)||_(!1,`${e.name}.${n} field config must be an object.`),r.resolve==null||typeof r.resolve=="function"||_(!1,`${e.name}.${n} field resolver must be a function if provided, but got: ${y(r.resolve)}.`);let o=(i=r.args)!==null&&i!==void 0?i:{};return Ke(o)||_(!1,`${e.name}.${n} args must be an object with argument names as keys.`),{name:se(n),description:r.description,type:r.type,args:Vr(o),resolve:r.resolve,subscribe:r.subscribe,deprecationReason:r.deprecationReason,extensions:ie(r.extensions),astNode:r.astNode}})}function Vr(e){return Object.entries(e).map(([t,r])=>({name:se(t),description:r.description,type:r.type,defaultValue:r.defaultValue,deprecationReason:r.deprecationReason,extensions:ie(r.extensions),astNode:r.astNode}))}function Ke(e){return q(e)&&!Array.isArray(e)}function Ri(e){return dt(e,t=>({description:t.description,type:t.type,args:Gr(t.args),resolve:t.resolve,subscribe:t.subscribe,deprecationReason:t.deprecationReason,extensions:t.extensions,astNode:t.astNode}))}function Gr(e){return ft(e,t=>t.name,t=>({description:t.description,type:t.type,defaultValue:t.defaultValue,deprecationReason:t.deprecationReason,extensions:t.extensions,astNode:t.astNode}))}function Oe(e){return O(e.type)&&e.defaultValue===void 0}var mt=class{constructor(t){var r;this.name=se(t.name),this.description=t.description,this.resolveType=t.resolveType,this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this._fields=bi.bind(void 0,t),this._interfaces=Ii.bind(void 0,t),t.resolveType==null||typeof t.resolveType=="function"||_(!1,`${this.name} must provide "resolveType" as a function, but got: ${y(t.resolveType)}.`)}get[Symbol.toStringTag](){return"GraphQLInterfaceType"}getFields(){return typeof this._fields=="function"&&(this._fields=this._fields()),this._fields}getInterfaces(){return typeof this._interfaces=="function"&&(this._interfaces=this._interfaces()),this._interfaces}toConfig(){return{name:this.name,description:this.description,interfaces:this.getInterfaces(),fields:Ri(this.getFields()),resolveType:this.resolveType,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}},De=class{constructor(t){var r;this.name=se(t.name),this.description=t.description,this.resolveType=t.resolveType,this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this._types=Qo.bind(void 0,t),t.resolveType==null||typeof t.resolveType=="function"||_(!1,`${this.name} must provide "resolveType" as a function, but got: ${y(t.resolveType)}.`)}get[Symbol.toStringTag](){return"GraphQLUnionType"}getTypes(){return typeof this._types=="function"&&(this._types=this._types()),this._types}toConfig(){return{name:this.name,description:this.description,types:this.getTypes(),resolveType:this.resolveType,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}};function Qo(e){let t=Ht(e.types);return Array.isArray(t)||_(!1,`Must provide Array of types or a function which returns such an array for Union ${e.name}.`),t}var be=class{constructor(t){var r;this.name=se(t.name),this.description=t.description,this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this._values=typeof t.values=="function"?t.values:Ni(this.name,t.values),this._valueLookup=null,this._nameLookup=null}get[Symbol.toStringTag](){return"GraphQLEnumType"}getValues(){return typeof this._values=="function"&&(this._values=Ni(this.name,this._values())),this._values}getValue(t){return this._nameLookup===null&&(this._nameLookup=ye(this.getValues(),r=>r.name)),this._nameLookup[t]}serialize(t){this._valueLookup===null&&(this._valueLookup=new Map(this.getValues().map(n=>[n.value,n])));let r=this._valueLookup.get(t);if(r===void 0)throw new f(`Enum "${this.name}" cannot represent value: ${y(t)}`);return r.name}parseValue(t){if(typeof t!="string"){let n=y(t);throw new f(`Enum "${this.name}" cannot represent non-string value: ${n}.`+qt(this,n))}let r=this.getValue(t);if(r==null)throw new f(`Value "${t}" does not exist in "${this.name}" enum.`+qt(this,t));return r.value}parseLiteral(t,r){if(t.kind!==u.ENUM){let i=A(t);throw new f(`Enum "${this.name}" cannot represent non-enum value: ${i}.`+qt(this,i),{nodes:t})}let n=this.getValue(t.value);if(n==null){let i=A(t);throw new f(`Value "${i}" does not exist in "${this.name}" enum.`+qt(this,i),{nodes:t})}return n.value}toConfig(){let t=ft(this.getValues(),r=>r.name,r=>({description:r.description,value:r.value,deprecationReason:r.deprecationReason,extensions:r.extensions,astNode:r.astNode}));return{name:this.name,description:this.description,values:t,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}};function qt(e,t){let r=e.getValues().map(i=>i.name),n=ne(t,r);return ee("the enum value",n)}function Ni(e,t){return Ke(t)||_(!1,`${e} values must be an object with value names as keys.`),Object.entries(t).map(([r,n])=>(Ke(n)||_(!1,`${e}.${r} must refer to an object with a "value" key representing an internal value but got: ${y(n)}.`),{name:$r(r),description:n.description,value:n.value!==void 0?n.value:r,deprecationReason:n.deprecationReason,extensions:ie(n.extensions),astNode:n.astNode}))}var Ae=class{constructor(t){var r,n;this.name=se(t.name),this.description=t.description,this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this.isOneOf=(n=t.isOneOf)!==null&&n!==void 0?n:!1,this._fields=Bo.bind(void 0,t)}get[Symbol.toStringTag](){return"GraphQLInputObjectType"}getFields(){return typeof this._fields=="function"&&(this._fields=this._fields()),this._fields}toConfig(){let t=dt(this.getFields(),r=>({description:r.description,type:r.type,defaultValue:r.defaultValue,deprecationReason:r.deprecationReason,extensions:r.extensions,astNode:r.astNode}));return{name:this.name,description:this.description,fields:t,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes,isOneOf:this.isOneOf}}toString(){return this.name}toJSON(){return this.toString()}};function Bo(e){let t=Jt(e.fields);return Ke(t)||_(!1,`${e.name} fields must be an object with field names as keys or a function which returns such an object.`),dt(t,(r,n)=>(!("resolve"in r)||_(!1,`${e.name}.${n} field has a resolve property, but Input Types cannot define resolvers.`),{name:se(n),description:r.description,type:r.type,defaultValue:r.defaultValue,deprecationReason:r.deprecationReason,extensions:ie(r.extensions),astNode:r.astNode}))}function et(e){return O(e.type)&&e.defaultValue===void 0}function zt(e,t){return e===t?!0:O(e)&&O(t)||C(e)&&C(t)?zt(e.ofType,t.ofType):!1}function _e(e,t,r){return t===r?!0:O(r)?O(t)?_e(e,t.ofType,r.ofType):!1:O(t)?_e(e,t.ofType,r):C(r)?C(t)?_e(e,t.ofType,r.ofType):!1:C(t)?!1:oe(r)&&(w(t)||x(t))&&e.isSubType(r,t)}function jr(e,t,r){return t===r?!0:oe(t)?oe(r)?e.getPossibleTypes(t).some(n=>e.isSubType(r,n)):e.isSubType(t,r):oe(r)?e.isSubType(r,t):!1}var Tt=2147483647,gt=-2147483648,pe=new ge({name:"Int",description:"The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.",serialize(e){let t=Et(e);if(typeof t=="boolean")return t?1:0;let r=t;if(typeof t=="string"&&t!==""&&(r=Number(t)),typeof r!="number"||!Number.isInteger(r))throw new f(`Int cannot represent non-integer value: ${y(t)}`);if(r>Tt||r<gt)throw new f("Int cannot represent non 32-bit signed integer value: "+y(t));return r},parseValue(e){if(typeof e!="number"||!Number.isInteger(e))throw new f(`Int cannot represent non-integer value: ${y(e)}`);if(e>Tt||e<gt)throw new f(`Int cannot represent non 32-bit signed integer value: ${e}`);return e},parseLiteral(e){if(e.kind!==u.INT)throw new f(`Int cannot represent non-integer value: ${A(e)}`,{nodes:e});let t=parseInt(e.value,10);if(t>Tt||t<gt)throw new f(`Int cannot represent non 32-bit signed integer value: ${e.value}`,{nodes:e});return t}}),le=new ge({name:"Float",description:"The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",serialize(e){let t=Et(e);if(typeof t=="boolean")return t?1:0;let r=t;if(typeof t=="string"&&t!==""&&(r=Number(t)),typeof r!="number"||!Number.isFinite(r))throw new f(`Float cannot represent non numeric value: ${y(t)}`);return r},parseValue(e){if(typeof e!="number"||!Number.isFinite(e))throw new f(`Float cannot represent non numeric value: ${y(e)}`);return e},parseLiteral(e){if(e.kind!==u.FLOAT&&e.kind!==u.INT)throw new f(`Float cannot represent non numeric value: ${A(e)}`,e);return parseFloat(e.value)}}),N=new ge({name:"String",description:"The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.",serialize(e){let t=Et(e);if(typeof t=="string")return t;if(typeof t=="boolean")return t?"true":"false";if(typeof t=="number"&&Number.isFinite(t))return t.toString();throw new f(`String cannot represent value: ${y(e)}`)},parseValue(e){if(typeof e!="string")throw new f(`String cannot represent a non string value: ${y(e)}`);return e},parseLiteral(e){if(e.kind!==u.STRING)throw new f(`String cannot represent a non string value: ${A(e)}`,{nodes:e});return e.value}}),B=new ge({name:"Boolean",description:"The `Boolean` scalar type represents `true` or `false`.",serialize(e){let t=Et(e);if(typeof t=="boolean")return t;if(Number.isFinite(t))return t!==0;throw new f(`Boolean cannot represent a non boolean value: ${y(t)}`)},parseValue(e){if(typeof e!="boolean")throw new f(`Boolean cannot represent a non boolean value: ${y(e)}`);return e},parseLiteral(e){if(e.kind!==u.BOOLEAN)throw new f(`Boolean cannot represent a non boolean value: ${A(e)}`,{nodes:e});return e.value}}),ve=new ge({name:"ID",description:'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',serialize(e){let t=Et(e);if(typeof t=="string")return t;if(Number.isInteger(t))return String(t);throw new f(`ID cannot represent value: ${y(e)}`)},parseValue(e){if(typeof e=="string")return e;if(typeof e=="number"&&Number.isInteger(e))return e.toString();throw new f(`ID cannot represent value: ${y(e)}`)},parseLiteral(e){if(e.kind!==u.STRING&&e.kind!==u.INT)throw new f("ID cannot represent a non-string and non-integer value: "+A(e),{nodes:e});return e.value}}),Xt=Object.freeze([N,pe,le,B,ve]);function Et(e){if(q(e)){if(typeof e.valueOf=="function"){let t=e.valueOf();if(!q(t))return t}if(typeof e.toJSON=="function")return e.toJSON()}return e}function vt(e){return re(e,Se)}var Se=class{constructor(t){var r,n;this.name=se(t.name),this.description=t.description,this.locations=t.locations,this.isRepeatable=(r=t.isRepeatable)!==null&&r!==void 0?r:!1,this.extensions=ie(t.extensions),this.astNode=t.astNode,Array.isArray(t.locations)||_(!1,`@${t.name} locations must be an Array.`);let i=(n=t.args)!==null&&n!==void 0?n:{};q(i)&&!Array.isArray(i)||_(!1,`@${t.name} args must be an object with argument names as keys.`),this.args=Vr(i)}get[Symbol.toStringTag](){return"GraphQLDirective"}toConfig(){return{name:this.name,description:this.description,locations:this.locations,args:Gr(this.args),isRepeatable:this.isRepeatable,extensions:this.extensions,astNode:this.astNode}}toString(){return"@"+this.name}toJSON(){return this.toString()}},Kt=new Se({name:"include",description:"Directs the executor to include this field or fragment only when the `if` argument is true.",locations:[b.FIELD,b.FRAGMENT_SPREAD,b.INLINE_FRAGMENT],args:{if:{type:new R(B),description:"Included when true."}}}),Wt=new Se({name:"skip",description:"Directs the executor to skip this field or fragment when the `if` argument is true.",locations:[b.FIELD,b.FRAGMENT_SPREAD,b.INLINE_FRAGMENT],args:{if:{type:new R(B),description:"Skipped when true."}}}),Oi="No longer supported",Zt=new Se({name:"deprecated",description:"Marks an element of a GraphQL schema as no longer supported.",locations:[b.FIELD_DEFINITION,b.ARGUMENT_DEFINITION,b.INPUT_FIELD_DEFINITION,b.ENUM_VALUE],args:{reason:{type:N,description:"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).",defaultValue:Oi}}}),Si=new Se({name:"specifiedBy",description:"Exposes a URL that specifies the behavior of this scalar.",locations:[b.SCALAR],args:{url:{type:new R(N),description:"The URL that specifies the behavior of this scalar."}}}),_i=new Se({name:"oneOf",description:"Indicates exactly one field must be supplied and this field must not be `null`.",locations:[b.INPUT_OBJECT],args:{}}),Ne=Object.freeze([Kt,Wt,Zt,Si,_i]);function tt(e){return typeof e=="object"&&typeof e?.[Symbol.iterator]=="function"}function rt(e,t){if(O(t)){let r=rt(e,t.ofType);return r?.kind===u.NULL?null:r}if(e===null)return{kind:u.NULL};if(e===void 0)return null;if(C(t)){let r=t.ofType;if(tt(e)){let n=[];for(let i of e){let o=rt(i,r);o!=null&&n.push(o)}return{kind:u.LIST,values:n}}return rt(e,r)}if(D(t)){if(!q(e))return null;let r=[];for(let n of Object.values(t.getFields())){let i=rt(e[n.name],n.type);i&&r.push({kind:u.OBJECT_FIELD,name:{kind:u.NAME,value:n.name},value:i})}return{kind:u.OBJECT,fields:r}}if(W(t)){let r=t.serialize(e);if(r==null)return null;if(typeof r=="boolean")return{kind:u.BOOLEAN,value:r};if(typeof r=="number"&&Number.isFinite(r)){let n=String(r);return xi.test(n)?{kind:u.INT,value:n}:{kind:u.FLOAT,value:n}}if(typeof r=="string")return Q(t)?{kind:u.ENUM,value:r}:t===ve&&xi.test(r)?{kind:u.INT,value:r}:{kind:u.STRING,value:r};throw new TypeError(`Cannot convert value to AST: ${y(r)}.`)}$(!1,"Unexpected input type: "+y(t))}var xi=/^-?(?:0|[1-9][0-9]*)$/;var Nt=new Y({name:"__Schema",description:"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.",fields:()=>({description:{type:N,resolve:e=>e.description},types:{description:"A list of all types supported by this server.",type:new R(new P(new R(de))),resolve(e){return Object.values(e.getTypeMap())}},queryType:{description:"The type that query operations will be rooted at.",type:new R(de),resolve:e=>e.getQueryType()},mutationType:{description:"If this server supports mutation, the type that mutation operations will be rooted at.",type:de,resolve:e=>e.getMutationType()},subscriptionType:{description:"If this server support subscription, the type that subscription operations will be rooted at.",type:de,resolve:e=>e.getSubscriptionType()},directives:{description:"A list of all directives supported by this server.",type:new R(new P(new R(Qr))),resolve:e=>e.getDirectives()}})}),Qr=new Y({name:"__Directive",description:`A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.
50
50
 
51
- In some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.`,fields:()=>({name:{type:new R(N),resolve:e=>e.name},description:{type:N,resolve:e=>e.description},isRepeatable:{type:new R(B),resolve:e=>e.isRepeatable},locations:{type:new R(new P(new R(Br))),resolve:e=>e.locations},args:{type:new R(new P(new R(It))),args:{includeDeprecated:{type:B,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(r=>r.deprecationReason==null)}}})}),Br=new be({name:"__DirectiveLocation",description:"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",values:{QUERY:{value:b.QUERY,description:"Location adjacent to a query operation."},MUTATION:{value:b.MUTATION,description:"Location adjacent to a mutation operation."},SUBSCRIPTION:{value:b.SUBSCRIPTION,description:"Location adjacent to a subscription operation."},FIELD:{value:b.FIELD,description:"Location adjacent to a field."},FRAGMENT_DEFINITION:{value:b.FRAGMENT_DEFINITION,description:"Location adjacent to a fragment definition."},FRAGMENT_SPREAD:{value:b.FRAGMENT_SPREAD,description:"Location adjacent to a fragment spread."},INLINE_FRAGMENT:{value:b.INLINE_FRAGMENT,description:"Location adjacent to an inline fragment."},VARIABLE_DEFINITION:{value:b.VARIABLE_DEFINITION,description:"Location adjacent to a variable definition."},SCHEMA:{value:b.SCHEMA,description:"Location adjacent to a schema definition."},SCALAR:{value:b.SCALAR,description:"Location adjacent to a scalar definition."},OBJECT:{value:b.OBJECT,description:"Location adjacent to an object type definition."},FIELD_DEFINITION:{value:b.FIELD_DEFINITION,description:"Location adjacent to a field definition."},ARGUMENT_DEFINITION:{value:b.ARGUMENT_DEFINITION,description:"Location adjacent to an argument definition."},INTERFACE:{value:b.INTERFACE,description:"Location adjacent to an interface definition."},UNION:{value:b.UNION,description:"Location adjacent to a union definition."},ENUM:{value:b.ENUM,description:"Location adjacent to an enum definition."},ENUM_VALUE:{value:b.ENUM_VALUE,description:"Location adjacent to an enum value definition."},INPUT_OBJECT:{value:b.INPUT_OBJECT,description:"Location adjacent to an input object type definition."},INPUT_FIELD_DEFINITION:{value:b.INPUT_FIELD_DEFINITION,description:"Location adjacent to an input object field definition."}}}),de=new Y({name:"__Type",description:"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.",fields:()=>({kind:{type:new R(Hr),resolve(e){if(Ee(e))return H.SCALAR;if(x(e))return H.OBJECT;if(w(e))return H.INTERFACE;if(X(e))return H.UNION;if(Q(e))return H.ENUM;if(D(e))return H.INPUT_OBJECT;if(C(e))return H.LIST;if(O(e))return H.NON_NULL;$(!1,`Unexpected type: "${y(e)}".`)}},name:{type:N,resolve:e=>"name"in e?e.name:void 0},description:{type:N,resolve:e=>"description"in e?e.description:void 0},specifiedByURL:{type:N,resolve:e=>"specifiedByURL"in e?e.specifiedByURL:void 0},fields:{type:new P(new R(qr)),args:{includeDeprecated:{type:B,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(x(e)||w(e)){let r=Object.values(e.getFields());return t?r:r.filter(n=>n.deprecationReason==null)}}},interfaces:{type:new P(new R(de)),resolve(e){if(x(e)||w(e))return e.getInterfaces()}},possibleTypes:{type:new P(new R(de)),resolve(e,t,r,{schema:n}){if(oe(e))return n.getPossibleTypes(e)}},enumValues:{type:new P(new R(Yr)),args:{includeDeprecated:{type:B,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(Q(e)){let r=e.getValues();return t?r:r.filter(n=>n.deprecationReason==null)}}},inputFields:{type:new P(new R(It)),args:{includeDeprecated:{type:B,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(D(e)){let r=Object.values(e.getFields());return t?r:r.filter(n=>n.deprecationReason==null)}}},ofType:{type:de,resolve:e=>"ofType"in e?e.ofType:void 0},isOneOf:{type:B,resolve:e=>{if(D(e))return e.isOneOf}}})}),qr=new Y({name:"__Field",description:"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.",fields:()=>({name:{type:new R(N),resolve:e=>e.name},description:{type:N,resolve:e=>e.description},args:{type:new R(new P(new R(It))),args:{includeDeprecated:{type:B,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(r=>r.deprecationReason==null)}},type:{type:new R(de),resolve:e=>e.type},isDeprecated:{type:new R(B),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:N,resolve:e=>e.deprecationReason}})}),It=new Y({name:"__InputValue",description:"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.",fields:()=>({name:{type:new R(N),resolve:e=>e.name},description:{type:N,resolve:e=>e.description},type:{type:new R(de),resolve:e=>e.type},defaultValue:{type:N,description:"A GraphQL-formatted string representing the default value for this input value.",resolve(e){let{type:t,defaultValue:r}=e,n=rt(r,t);return n?A(n):null}},isDeprecated:{type:new R(B),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:N,resolve:e=>e.deprecationReason}})}),Yr=new Y({name:"__EnumValue",description:"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.",fields:()=>({name:{type:new R(N),resolve:e=>e.name},description:{type:N,resolve:e=>e.description},isDeprecated:{type:new R(B),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:N,resolve:e=>e.deprecationReason}})}),H;(function(e){e.SCALAR="SCALAR",e.OBJECT="OBJECT",e.INTERFACE="INTERFACE",e.UNION="UNION",e.ENUM="ENUM",e.INPUT_OBJECT="INPUT_OBJECT",e.LIST="LIST",e.NON_NULL="NON_NULL"})(H||(H={}));var Hr=new be({name:"__TypeKind",description:"An enum describing what kind of type a given `__Type` is.",values:{SCALAR:{value:H.SCALAR,description:"Indicates this type is a scalar."},OBJECT:{value:H.OBJECT,description:"Indicates this type is an object. `fields` and `interfaces` are valid fields."},INTERFACE:{value:H.INTERFACE,description:"Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields."},UNION:{value:H.UNION,description:"Indicates this type is a union. `possibleTypes` is a valid field."},ENUM:{value:H.ENUM,description:"Indicates this type is an enum. `enumValues` is a valid field."},INPUT_OBJECT:{value:H.INPUT_OBJECT,description:"Indicates this type is an input object. `inputFields` is a valid field."},LIST:{value:H.LIST,description:"Indicates this type is a list. `ofType` is a valid field."},NON_NULL:{value:H.NON_NULL,description:"Indicates this type is a non-null. `ofType` is a valid field."}}}),Fe={name:"__schema",type:new R(Nt),description:"Access the current type schema of this server.",args:[],resolve:(e,t,r,{schema:n})=>n,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},ke={name:"__type",type:de,description:"Request the type information of a single type.",args:[{name:"name",description:void 0,type:new R(N),defaultValue:void 0,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0}],resolve:(e,{name:t},r,{schema:n})=>n.getType(t),deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},Ce={name:"__typename",type:new R(N),description:"The name of the current Object type at runtime.",args:[],resolve:(e,t,r,{parentType:n})=>n.name,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},er=Object.freeze([Nt,Qr,Br,de,qr,It,Yr,Hr]);function Jr(e){return er.some(({name:t})=>e.name===t)}function zr(e){return re(e,Me)}function tr(e){if(!zr(e))throw new Error(`Expected ${y(e)} to be a GraphQL schema.`);return e}var Me=class{constructor(t){var r,n;this.__validationErrors=t.assumeValid===!0?[]:void 0,q(t)||_(!1,"Must provide configuration object."),!t.types||Array.isArray(t.types)||_(!1,`"types" must be Array if provided but got: ${y(t.types)}.`),!t.directives||Array.isArray(t.directives)||_(!1,`"directives" must be Array if provided but got: ${y(t.directives)}.`),this.description=t.description,this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this._queryType=t.query,this._mutationType=t.mutation,this._subscriptionType=t.subscription,this._directives=(n=t.directives)!==null&&n!==void 0?n:Ne;let i=new Set(t.types);if(t.types!=null)for(let o of t.types)i.delete(o),Ie(o,i);this._queryType!=null&&Ie(this._queryType,i),this._mutationType!=null&&Ie(this._mutationType,i),this._subscriptionType!=null&&Ie(this._subscriptionType,i);for(let o of this._directives)if(vt(o))for(let s of o.args)Ie(s.type,i);Ie(Nt,i),this._typeMap=Object.create(null),this._subTypeMap=Object.create(null),this._implementationsMap=Object.create(null);for(let o of i){if(o==null)continue;let s=o.name;if(s||_(!1,"One of the provided types for building the Schema is missing a name."),this._typeMap[s]!==void 0)throw new Error(`Schema must contain uniquely named types but contains multiple types named "${s}".`);if(this._typeMap[s]=o,w(o)){for(let a of o.getInterfaces())if(w(a)){let c=this._implementationsMap[a.name];c===void 0&&(c=this._implementationsMap[a.name]={objects:[],interfaces:[]}),c.interfaces.push(o)}}else if(x(o)){for(let a of o.getInterfaces())if(w(a)){let c=this._implementationsMap[a.name];c===void 0&&(c=this._implementationsMap[a.name]={objects:[],interfaces:[]}),c.objects.push(o)}}}}get[Symbol.toStringTag](){return"GraphQLSchema"}getQueryType(){return this._queryType}getMutationType(){return this._mutationType}getSubscriptionType(){return this._subscriptionType}getRootType(t){switch(t){case U.QUERY:return this.getQueryType();case U.MUTATION:return this.getMutationType();case U.SUBSCRIPTION:return this.getSubscriptionType()}}getTypeMap(){return this._typeMap}getType(t){return this.getTypeMap()[t]}getPossibleTypes(t){return X(t)?t.getTypes():this.getImplementations(t).objects}getImplementations(t){let r=this._implementationsMap[t.name];return r??{objects:[],interfaces:[]}}isSubType(t,r){let n=this._subTypeMap[t.name];if(n===void 0){if(n=Object.create(null),X(t))for(let i of t.getTypes())n[i.name]=!0;else{let i=this.getImplementations(t);for(let o of i.objects)n[o.name]=!0;for(let o of i.interfaces)n[o.name]=!0}this._subTypeMap[t.name]=n}return n[r.name]!==void 0}getDirectives(){return this._directives}getDirective(t){return this.getDirectives().find(r=>r.name===t)}toConfig(){return{description:this.description,query:this.getQueryType(),mutation:this.getMutationType(),subscription:this.getSubscriptionType(),types:Object.values(this.getTypeMap()),directives:this.getDirectives(),extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes,assumeValid:this.__validationErrors!==void 0}}};function Ie(e,t){let r=z(e);if(!t.has(r)){if(t.add(r),X(r))for(let n of r.getTypes())Ie(n,t);else if(x(r)||w(r)){for(let n of r.getInterfaces())Ie(n,t);for(let n of Object.values(r.getFields())){Ie(n.type,t);for(let i of n.args)Ie(i.type,t)}}else if(D(r))for(let n of Object.values(r.getFields()))Ie(n.type,t)}return t}function Fi(e){if(tr(e),e.__validationErrors)return e.__validationErrors;let t=new Kr(e);Yo(t),Ho(t),Jo(t);let r=t.getErrors();return e.__validationErrors=r,r}function Rt(e){let t=Fi(e);if(t.length!==0)throw new Error(t.map(r=>r.message).join(`
51
+ In some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.`,fields:()=>({name:{type:new R(N),resolve:e=>e.name},description:{type:N,resolve:e=>e.description},isRepeatable:{type:new R(B),resolve:e=>e.isRepeatable},locations:{type:new R(new P(new R(Br))),resolve:e=>e.locations},args:{type:new R(new P(new R(It))),args:{includeDeprecated:{type:B,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(r=>r.deprecationReason==null)}}})}),Br=new be({name:"__DirectiveLocation",description:"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",values:{QUERY:{value:b.QUERY,description:"Location adjacent to a query operation."},MUTATION:{value:b.MUTATION,description:"Location adjacent to a mutation operation."},SUBSCRIPTION:{value:b.SUBSCRIPTION,description:"Location adjacent to a subscription operation."},FIELD:{value:b.FIELD,description:"Location adjacent to a field."},FRAGMENT_DEFINITION:{value:b.FRAGMENT_DEFINITION,description:"Location adjacent to a fragment definition."},FRAGMENT_SPREAD:{value:b.FRAGMENT_SPREAD,description:"Location adjacent to a fragment spread."},INLINE_FRAGMENT:{value:b.INLINE_FRAGMENT,description:"Location adjacent to an inline fragment."},VARIABLE_DEFINITION:{value:b.VARIABLE_DEFINITION,description:"Location adjacent to a variable definition."},SCHEMA:{value:b.SCHEMA,description:"Location adjacent to a schema definition."},SCALAR:{value:b.SCALAR,description:"Location adjacent to a scalar definition."},OBJECT:{value:b.OBJECT,description:"Location adjacent to an object type definition."},FIELD_DEFINITION:{value:b.FIELD_DEFINITION,description:"Location adjacent to a field definition."},ARGUMENT_DEFINITION:{value:b.ARGUMENT_DEFINITION,description:"Location adjacent to an argument definition."},INTERFACE:{value:b.INTERFACE,description:"Location adjacent to an interface definition."},UNION:{value:b.UNION,description:"Location adjacent to a union definition."},ENUM:{value:b.ENUM,description:"Location adjacent to an enum definition."},ENUM_VALUE:{value:b.ENUM_VALUE,description:"Location adjacent to an enum value definition."},INPUT_OBJECT:{value:b.INPUT_OBJECT,description:"Location adjacent to an input object type definition."},INPUT_FIELD_DEFINITION:{value:b.INPUT_FIELD_DEFINITION,description:"Location adjacent to an input object field definition."}}}),de=new Y({name:"__Type",description:"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.",fields:()=>({kind:{type:new R(Hr),resolve(e){if(Ee(e))return H.SCALAR;if(x(e))return H.OBJECT;if(w(e))return H.INTERFACE;if(X(e))return H.UNION;if(Q(e))return H.ENUM;if(D(e))return H.INPUT_OBJECT;if(C(e))return H.LIST;if(O(e))return H.NON_NULL;$(!1,`Unexpected type: "${y(e)}".`)}},name:{type:N,resolve:e=>"name"in e?e.name:void 0},description:{type:N,resolve:e=>"description"in e?e.description:void 0},specifiedByURL:{type:N,resolve:e=>"specifiedByURL"in e?e.specifiedByURL:void 0},fields:{type:new P(new R(qr)),args:{includeDeprecated:{type:B,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(x(e)||w(e)){let r=Object.values(e.getFields());return t?r:r.filter(n=>n.deprecationReason==null)}}},interfaces:{type:new P(new R(de)),resolve(e){if(x(e)||w(e))return e.getInterfaces()}},possibleTypes:{type:new P(new R(de)),resolve(e,t,r,{schema:n}){if(oe(e))return n.getPossibleTypes(e)}},enumValues:{type:new P(new R(Yr)),args:{includeDeprecated:{type:B,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(Q(e)){let r=e.getValues();return t?r:r.filter(n=>n.deprecationReason==null)}}},inputFields:{type:new P(new R(It)),args:{includeDeprecated:{type:B,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(D(e)){let r=Object.values(e.getFields());return t?r:r.filter(n=>n.deprecationReason==null)}}},ofType:{type:de,resolve:e=>"ofType"in e?e.ofType:void 0},isOneOf:{type:B,resolve:e=>{if(D(e))return e.isOneOf}}})}),qr=new Y({name:"__Field",description:"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.",fields:()=>({name:{type:new R(N),resolve:e=>e.name},description:{type:N,resolve:e=>e.description},args:{type:new R(new P(new R(It))),args:{includeDeprecated:{type:B,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(r=>r.deprecationReason==null)}},type:{type:new R(de),resolve:e=>e.type},isDeprecated:{type:new R(B),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:N,resolve:e=>e.deprecationReason}})}),It=new Y({name:"__InputValue",description:"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.",fields:()=>({name:{type:new R(N),resolve:e=>e.name},description:{type:N,resolve:e=>e.description},type:{type:new R(de),resolve:e=>e.type},defaultValue:{type:N,description:"A GraphQL-formatted string representing the default value for this input value.",resolve(e){let{type:t,defaultValue:r}=e,n=rt(r,t);return n?A(n):null}},isDeprecated:{type:new R(B),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:N,resolve:e=>e.deprecationReason}})}),Yr=new Y({name:"__EnumValue",description:"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.",fields:()=>({name:{type:new R(N),resolve:e=>e.name},description:{type:N,resolve:e=>e.description},isDeprecated:{type:new R(B),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:N,resolve:e=>e.deprecationReason}})}),H;(function(e){e.SCALAR="SCALAR",e.OBJECT="OBJECT",e.INTERFACE="INTERFACE",e.UNION="UNION",e.ENUM="ENUM",e.INPUT_OBJECT="INPUT_OBJECT",e.LIST="LIST",e.NON_NULL="NON_NULL"})(H||(H={}));var Hr=new be({name:"__TypeKind",description:"An enum describing what kind of type a given `__Type` is.",values:{SCALAR:{value:H.SCALAR,description:"Indicates this type is a scalar."},OBJECT:{value:H.OBJECT,description:"Indicates this type is an object. `fields` and `interfaces` are valid fields."},INTERFACE:{value:H.INTERFACE,description:"Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields."},UNION:{value:H.UNION,description:"Indicates this type is a union. `possibleTypes` is a valid field."},ENUM:{value:H.ENUM,description:"Indicates this type is an enum. `enumValues` is a valid field."},INPUT_OBJECT:{value:H.INPUT_OBJECT,description:"Indicates this type is an input object. `inputFields` is a valid field."},LIST:{value:H.LIST,description:"Indicates this type is a list. `ofType` is a valid field."},NON_NULL:{value:H.NON_NULL,description:"Indicates this type is a non-null. `ofType` is a valid field."}}}),Fe={name:"__schema",type:new R(Nt),description:"Access the current type schema of this server.",args:[],resolve:(e,t,r,{schema:n})=>n,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},ke={name:"__type",type:de,description:"Request the type information of a single type.",args:[{name:"name",description:void 0,type:new R(N),defaultValue:void 0,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0}],resolve:(e,{name:t},r,{schema:n})=>n.getType(t),deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},Ce={name:"__typename",type:new R(N),description:"The name of the current Object type at runtime.",args:[],resolve:(e,t,r,{parentType:n})=>n.name,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},er=Object.freeze([Nt,Qr,Br,de,qr,It,Yr,Hr]);function Jr(e){return er.some(({name:t})=>e.name===t)}function zr(e){return re(e,Me)}function tr(e){if(!zr(e))throw new Error(`Expected ${y(e)} to be a GraphQL schema.`);return e}var Me=class{constructor(t){var r,n;this.__validationErrors=t.assumeValid===!0?[]:void 0,q(t)||_(!1,"Must provide configuration object."),!t.types||Array.isArray(t.types)||_(!1,`"types" must be Array if provided but got: ${y(t.types)}.`),!t.directives||Array.isArray(t.directives)||_(!1,`"directives" must be Array if provided but got: ${y(t.directives)}.`),this.description=t.description,this.extensions=ie(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this._queryType=t.query,this._mutationType=t.mutation,this._subscriptionType=t.subscription,this._directives=(n=t.directives)!==null&&n!==void 0?n:Ne;let i=new Set(t.types);if(t.types!=null)for(let o of t.types)i.delete(o),Ie(o,i);this._queryType!=null&&Ie(this._queryType,i),this._mutationType!=null&&Ie(this._mutationType,i),this._subscriptionType!=null&&Ie(this._subscriptionType,i);for(let o of this._directives)if(vt(o))for(let s of o.args)Ie(s.type,i);Ie(Nt,i),this._typeMap=Object.create(null),this._subTypeMap=Object.create(null),this._implementationsMap=Object.create(null);for(let o of i){if(o==null)continue;let s=o.name;if(s||_(!1,"One of the provided types for building the Schema is missing a name."),this._typeMap[s]!==void 0)throw new Error(`Schema must contain uniquely named types but contains multiple types named "${s}".`);if(this._typeMap[s]=o,w(o)){for(let a of o.getInterfaces())if(w(a)){let c=this._implementationsMap[a.name];c===void 0&&(c=this._implementationsMap[a.name]={objects:[],interfaces:[]}),c.interfaces.push(o)}}else if(x(o)){for(let a of o.getInterfaces())if(w(a)){let c=this._implementationsMap[a.name];c===void 0&&(c=this._implementationsMap[a.name]={objects:[],interfaces:[]}),c.objects.push(o)}}}}get[Symbol.toStringTag](){return"GraphQLSchema"}getQueryType(){return this._queryType}getMutationType(){return this._mutationType}getSubscriptionType(){return this._subscriptionType}getRootType(t){switch(t){case U.QUERY:return this.getQueryType();case U.MUTATION:return this.getMutationType();case U.SUBSCRIPTION:return this.getSubscriptionType()}}getTypeMap(){return this._typeMap}getType(t){return this.getTypeMap()[t]}getPossibleTypes(t){return X(t)?t.getTypes():this.getImplementations(t).objects}getImplementations(t){let r=this._implementationsMap[t.name];return r??{objects:[],interfaces:[]}}isSubType(t,r){let n=this._subTypeMap[t.name];if(n===void 0){if(n=Object.create(null),X(t))for(let i of t.getTypes())n[i.name]=!0;else{let i=this.getImplementations(t);for(let o of i.objects)n[o.name]=!0;for(let o of i.interfaces)n[o.name]=!0}this._subTypeMap[t.name]=n}return n[r.name]!==void 0}getDirectives(){return this._directives}getDirective(t){return this.getDirectives().find(r=>r.name===t)}toConfig(){return{description:this.description,query:this.getQueryType(),mutation:this.getMutationType(),subscription:this.getSubscriptionType(),types:Object.values(this.getTypeMap()),directives:this.getDirectives(),extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes,assumeValid:this.__validationErrors!==void 0}}};function Ie(e,t){let r=z(e);if(!t.has(r)){if(t.add(r),X(r))for(let n of r.getTypes())Ie(n,t);else if(x(r)||w(r)){for(let n of r.getInterfaces())Ie(n,t);for(let n of Object.values(r.getFields())){Ie(n.type,t);for(let i of n.args)Ie(i.type,t)}}else if(D(r))for(let n of Object.values(r.getFields()))Ie(n.type,t)}return t}function Ai(e){if(tr(e),e.__validationErrors)return e.__validationErrors;let t=new Kr(e);qo(t),Yo(t),Ho(t);let r=t.getErrors();return e.__validationErrors=r,r}function Rt(e){let t=Ai(e);if(t.length!==0)throw new Error(t.map(r=>r.message).join(`
52
52
 
53
- `))}var Kr=class{constructor(t){this._errors=[],this.schema=t}reportError(t,r){let n=Array.isArray(r)?r.filter(Boolean):r;this._errors.push(new f(t,{nodes:n}))}getErrors(){return this._errors}};function Yo(e){let t=e.schema,r=t.getQueryType();if(!r)e.reportError("Query root type must be provided.",t.astNode);else if(!x(r)){var n;e.reportError(`Query root type must be Object type, it cannot be ${y(r)}.`,(n=Xr(t,U.QUERY))!==null&&n!==void 0?n:r.astNode)}let i=t.getMutationType();if(i&&!x(i)){var o;e.reportError(`Mutation root type must be Object type if provided, it cannot be ${y(i)}.`,(o=Xr(t,U.MUTATION))!==null&&o!==void 0?o:i.astNode)}let s=t.getSubscriptionType();if(s&&!x(s)){var a;e.reportError(`Subscription root type must be Object type if provided, it cannot be ${y(s)}.`,(a=Xr(t,U.SUBSCRIPTION))!==null&&a!==void 0?a:s.astNode)}}function Xr(e,t){var r;return(r=[e.astNode,...e.extensionASTNodes].flatMap(n=>{var i;return(i=n?.operationTypes)!==null&&i!==void 0?i:[]}).find(n=>n.operation===t))===null||r===void 0?void 0:r.type}function Ho(e){for(let r of e.schema.getDirectives()){if(!vt(r)){e.reportError(`Expected directive but got: ${y(r)}.`,r?.astNode);continue}Pe(e,r),r.locations.length===0&&e.reportError(`Directive @${r.name} must include 1 or more locations.`,r.astNode);for(let n of r.args)if(Pe(e,n),K(n.type)||e.reportError(`The type of @${r.name}(${n.name}:) must be Input Type but got: ${y(n.type)}.`,n.astNode),Oe(n)&&n.deprecationReason!=null){var t;e.reportError(`Required argument @${r.name}(${n.name}:) cannot be deprecated.`,[Wr(n.astNode),(t=n.astNode)===null||t===void 0?void 0:t.type])}}}function Pe(e,t){t.name.startsWith("__")&&e.reportError(`Name "${t.name}" must not begin with "__", which is reserved by GraphQL introspection.`,t.astNode)}function Jo(e){let t=ts(e),r=e.schema.getTypeMap();for(let n of Object.values(r)){if(!Yt(n)){e.reportError(`Expected GraphQL named type but got: ${y(n)}.`,n.astNode);continue}Jr(n)||Pe(e,n),x(n)||w(n)?(wi(e,n),Di(e,n)):X(n)?Ko(e,n):Q(n)?Wo(e,n):D(n)&&(Zo(e,n),t(n))}}function wi(e,t){let r=Object.values(t.getFields());r.length===0&&e.reportError(`Type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let s of r){if(Pe(e,s),!Re(s.type)){var n;e.reportError(`The type of ${t.name}.${s.name} must be Output Type but got: ${y(s.type)}.`,(n=s.astNode)===null||n===void 0?void 0:n.type)}for(let a of s.args){let c=a.name;if(Pe(e,a),!K(a.type)){var i;e.reportError(`The type of ${t.name}.${s.name}(${c}:) must be Input Type but got: ${y(a.type)}.`,(i=a.astNode)===null||i===void 0?void 0:i.type)}if(Oe(a)&&a.deprecationReason!=null){var o;e.reportError(`Required argument ${t.name}.${s.name}(${c}:) cannot be deprecated.`,[Wr(a.astNode),(o=a.astNode)===null||o===void 0?void 0:o.type])}}}}function Di(e,t){let r=Object.create(null);for(let n of t.getInterfaces()){if(!w(n)){e.reportError(`Type ${y(t)} must only implement Interface types, it cannot implement ${y(n)}.`,bt(t,n));continue}if(t===n){e.reportError(`Type ${t.name} cannot implement itself because it would create a circular reference.`,bt(t,n));continue}if(r[n.name]){e.reportError(`Type ${t.name} can only implement ${n.name} once.`,bt(t,n));continue}r[n.name]=!0,Xo(e,t,n),zo(e,t,n)}}function zo(e,t,r){let n=t.getFields();for(let c of Object.values(r.getFields())){let p=c.name,l=n[p];if(!l){e.reportError(`Interface field ${r.name}.${p} expected but ${t.name} does not provide it.`,[c.astNode,t.astNode,...t.extensionASTNodes]);continue}if(!_e(e.schema,l.type,c.type)){var i,o;e.reportError(`Interface field ${r.name}.${p} expects type ${y(c.type)} but ${t.name}.${p} is type ${y(l.type)}.`,[(i=c.astNode)===null||i===void 0?void 0:i.type,(o=l.astNode)===null||o===void 0?void 0:o.type])}for(let d of c.args){let m=d.name,T=l.args.find(g=>g.name===m);if(!T){e.reportError(`Interface field argument ${r.name}.${p}(${m}:) expected but ${t.name}.${p} does not provide it.`,[d.astNode,l.astNode]);continue}if(!zt(d.type,T.type)){var s,a;e.reportError(`Interface field argument ${r.name}.${p}(${m}:) expects type ${y(d.type)} but ${t.name}.${p}(${m}:) is type ${y(T.type)}.`,[(s=d.astNode)===null||s===void 0?void 0:s.type,(a=T.astNode)===null||a===void 0?void 0:a.type])}}for(let d of l.args){let m=d.name;!c.args.find(g=>g.name===m)&&Oe(d)&&e.reportError(`Object field ${t.name}.${p} includes required argument ${m} that is missing from the Interface field ${r.name}.${p}.`,[d.astNode,c.astNode])}}}function Xo(e,t,r){let n=t.getInterfaces();for(let i of r.getInterfaces())n.includes(i)||e.reportError(i===t?`Type ${t.name} cannot implement ${r.name} because it would create a circular reference.`:`Type ${t.name} must implement ${i.name} because it is implemented by ${r.name}.`,[...bt(r,i),...bt(t,r)])}function Ko(e,t){let r=t.getTypes();r.length===0&&e.reportError(`Union type ${t.name} must define one or more member types.`,[t.astNode,...t.extensionASTNodes]);let n=Object.create(null);for(let i of r){if(n[i.name]){e.reportError(`Union type ${t.name} can only include type ${i.name} once.`,Ai(t,i.name));continue}n[i.name]=!0,x(i)||e.reportError(`Union type ${t.name} can only include Object types, it cannot include ${y(i)}.`,Ai(t,String(i)))}}function Wo(e,t){let r=t.getValues();r.length===0&&e.reportError(`Enum type ${t.name} must define one or more values.`,[t.astNode,...t.extensionASTNodes]);for(let n of r)Pe(e,n)}function Zo(e,t){let r=Object.values(t.getFields());r.length===0&&e.reportError(`Input Object type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let o of r){if(Pe(e,o),!K(o.type)){var n;e.reportError(`The type of ${t.name}.${o.name} must be Input Type but got: ${y(o.type)}.`,(n=o.astNode)===null||n===void 0?void 0:n.type)}if(et(o)&&o.deprecationReason!=null){var i;e.reportError(`Required input field ${t.name}.${o.name} cannot be deprecated.`,[Wr(o.astNode),(i=o.astNode)===null||i===void 0?void 0:i.type])}t.isOneOf&&es(t,o,e)}}function es(e,t,r){if(O(t.type)){var n;r.reportError(`OneOf input field ${e.name}.${t.name} must be nullable.`,(n=t.astNode)===null||n===void 0?void 0:n.type)}t.defaultValue!==void 0&&r.reportError(`OneOf input field ${e.name}.${t.name} cannot have a default value.`,t.astNode)}function ts(e){let t=Object.create(null),r=[],n=Object.create(null);return i;function i(o){if(t[o.name])return;t[o.name]=!0,n[o.name]=r.length;let s=Object.values(o.getFields());for(let a of s)if(O(a.type)&&D(a.type.ofType)){let c=a.type.ofType,p=n[c.name];if(r.push(a),p===void 0)i(c);else{let l=r.slice(p),d=l.map(m=>m.name).join(".");e.reportError(`Cannot reference Input Object "${c.name}" within itself through a series of non-null fields: "${d}".`,l.map(m=>m.astNode))}r.pop()}n[o.name]=void 0}}function bt(e,t){let{astNode:r,extensionASTNodes:n}=e;return(r!=null?[r,...n]:n).flatMap(o=>{var s;return(s=o.interfaces)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t.name)}function Ai(e,t){let{astNode:r,extensionASTNodes:n}=e;return(r!=null?[r,...n]:n).flatMap(o=>{var s;return(s=o.types)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t)}function Wr(e){var t;return e==null||(t=e.directives)===null||t===void 0?void 0:t.find(r=>r.name.value===Zt.name)}function V(e,t){switch(t.kind){case u.LIST_TYPE:{let r=V(e,t.type);return r&&new P(r)}case u.NON_NULL_TYPE:{let r=V(e,t.type);return r&&new R(r)}case u.NAMED_TYPE:return e.getType(t.name.value)}}var nt=class{constructor(t,r,n){this._schema=t,this._typeStack=[],this._parentTypeStack=[],this._inputTypeStack=[],this._fieldDefStack=[],this._defaultValueStack=[],this._directive=null,this._argument=null,this._enumValue=null,this._getFieldDef=n??rs,r&&(K(r)&&this._inputTypeStack.push(r),ue(r)&&this._parentTypeStack.push(r),Re(r)&&this._typeStack.push(r))}get[Symbol.toStringTag](){return"TypeInfo"}getType(){if(this._typeStack.length>0)return this._typeStack[this._typeStack.length-1]}getParentType(){if(this._parentTypeStack.length>0)return this._parentTypeStack[this._parentTypeStack.length-1]}getInputType(){if(this._inputTypeStack.length>0)return this._inputTypeStack[this._inputTypeStack.length-1]}getParentInputType(){if(this._inputTypeStack.length>1)return this._inputTypeStack[this._inputTypeStack.length-2]}getFieldDef(){if(this._fieldDefStack.length>0)return this._fieldDefStack[this._fieldDefStack.length-1]}getDefaultValue(){if(this._defaultValueStack.length>0)return this._defaultValueStack[this._defaultValueStack.length-1]}getDirective(){return this._directive}getArgument(){return this._argument}getEnumValue(){return this._enumValue}enter(t){let r=this._schema;switch(t.kind){case u.SELECTION_SET:{let i=z(this.getType());this._parentTypeStack.push(ue(i)?i:void 0);break}case u.FIELD:{let i=this.getParentType(),o,s;i&&(o=this._getFieldDef(r,i,t),o&&(s=o.type)),this._fieldDefStack.push(o),this._typeStack.push(Re(s)?s:void 0);break}case u.DIRECTIVE:this._directive=r.getDirective(t.name.value);break;case u.OPERATION_DEFINITION:{let i=r.getRootType(t.operation);this._typeStack.push(x(i)?i:void 0);break}case u.INLINE_FRAGMENT:case u.FRAGMENT_DEFINITION:{let i=t.typeCondition,o=i?V(r,i):z(this.getType());this._typeStack.push(Re(o)?o:void 0);break}case u.VARIABLE_DEFINITION:{let i=V(r,t.type);this._inputTypeStack.push(K(i)?i:void 0);break}case u.ARGUMENT:{var n;let i,o,s=(n=this.getDirective())!==null&&n!==void 0?n:this.getFieldDef();s&&(i=s.args.find(a=>a.name===t.name.value),i&&(o=i.type)),this._argument=i,this._defaultValueStack.push(i?i.defaultValue:void 0),this._inputTypeStack.push(K(o)?o:void 0);break}case u.LIST:{let i=Ze(this.getInputType()),o=C(i)?i.ofType:i;this._defaultValueStack.push(void 0),this._inputTypeStack.push(K(o)?o:void 0);break}case u.OBJECT_FIELD:{let i=z(this.getInputType()),o,s;D(i)&&(s=i.getFields()[t.name.value],s&&(o=s.type)),this._defaultValueStack.push(s?s.defaultValue:void 0),this._inputTypeStack.push(K(o)?o:void 0);break}case u.ENUM:{let i=z(this.getInputType()),o;Q(i)&&(o=i.getValue(t.value)),this._enumValue=o;break}default:}}leave(t){switch(t.kind){case u.SELECTION_SET:this._parentTypeStack.pop();break;case u.FIELD:this._fieldDefStack.pop(),this._typeStack.pop();break;case u.DIRECTIVE:this._directive=null;break;case u.OPERATION_DEFINITION:case u.INLINE_FRAGMENT:case u.FRAGMENT_DEFINITION:this._typeStack.pop();break;case u.VARIABLE_DEFINITION:this._inputTypeStack.pop();break;case u.ARGUMENT:this._argument=null,this._defaultValueStack.pop(),this._inputTypeStack.pop();break;case u.LIST:case u.OBJECT_FIELD:this._defaultValueStack.pop(),this._inputTypeStack.pop();break;case u.ENUM:this._enumValue=null;break;default:}}};function rs(e,t,r){let n=r.name.value;if(n===Fe.name&&e.getQueryType()===t)return Fe;if(n===ke.name&&e.getQueryType()===t)return ke;if(n===Ce.name&&ue(t))return Ce;if(x(t)||w(t))return t.getFields()[n]}function rr(e,t){return{enter(...r){let n=r[0];e.enter(n);let i=Xe(t,n.kind).enter;if(i){let o=i.apply(t,r);return o!==void 0&&(e.leave(n),ct(o)&&e.enter(o)),o}},leave(...r){let n=r[0],i=Xe(t,n.kind).leave,o;return i&&(o=i.apply(t,r)),e.leave(n),o}}}function Zr(e){return e.kind===u.OPERATION_DEFINITION||e.kind===u.FRAGMENT_DEFINITION}function en(e){return e.kind===u.SCHEMA_DEFINITION||xe(e)||e.kind===u.DIRECTIVE_DEFINITION}function xe(e){return e.kind===u.SCALAR_TYPE_DEFINITION||e.kind===u.OBJECT_TYPE_DEFINITION||e.kind===u.INTERFACE_TYPE_DEFINITION||e.kind===u.UNION_TYPE_DEFINITION||e.kind===u.ENUM_TYPE_DEFINITION||e.kind===u.INPUT_OBJECT_TYPE_DEFINITION}function tn(e){return e.kind===u.SCHEMA_EXTENSION||nr(e)}function nr(e){return e.kind===u.SCALAR_TYPE_EXTENSION||e.kind===u.OBJECT_TYPE_EXTENSION||e.kind===u.INTERFACE_TYPE_EXTENSION||e.kind===u.UNION_TYPE_EXTENSION||e.kind===u.ENUM_TYPE_EXTENSION||e.kind===u.INPUT_OBJECT_TYPE_EXTENSION}function rn(e){return{Document(t){for(let r of t.definitions)if(!Zr(r)){let n=r.kind===u.SCHEMA_DEFINITION||r.kind===u.SCHEMA_EXTENSION?"schema":'"'+r.name.value+'"';e.reportError(new f(`The ${n} definition is not executable.`,{nodes:r}))}return!1}}}function nn(e){return{Field(t){let r=e.getParentType();if(r&&!e.getFieldDef()){let i=e.getSchema(),o=t.name.value,s=ee("to use an inline fragment on",ns(i,r,o));s===""&&(s=ee(is(r,o))),e.reportError(new f(`Cannot query field "${o}" on type "${r.name}".`+s,{nodes:t}))}}}}function ns(e,t,r){if(!oe(t))return[];let n=new Set,i=Object.create(null);for(let s of e.getPossibleTypes(t))if(s.getFields()[r]){n.add(s),i[s.name]=1;for(let a of s.getInterfaces()){var o;a.getFields()[r]&&(n.add(a),i[a.name]=((o=i[a.name])!==null&&o!==void 0?o:0)+1)}}return[...n].sort((s,a)=>{let c=i[a.name]-i[s.name];return c!==0?c:w(s)&&e.isSubType(s,a)?-1:w(a)&&e.isSubType(a,s)?1:Je(s.name,a.name)}).map(s=>s.name)}function is(e,t){if(x(e)||w(e)){let r=Object.keys(e.getFields());return ne(t,r)}return[]}function on(e){return{InlineFragment(t){let r=t.typeCondition;if(r){let n=V(e.getSchema(),r);if(n&&!ue(n)){let i=A(r);e.reportError(new f(`Fragment cannot condition on non composite type "${i}".`,{nodes:r}))}}},FragmentDefinition(t){let r=V(e.getSchema(),t.typeCondition);if(r&&!ue(r)){let n=A(t.typeCondition);e.reportError(new f(`Fragment "${t.name.value}" cannot condition on non composite type "${n}".`,{nodes:t.typeCondition}))}}}}function sn(e){return{...an(e),Argument(t){let r=e.getArgument(),n=e.getFieldDef(),i=e.getParentType();if(!r&&n&&i){let o=t.name.value,s=n.args.map(c=>c.name),a=ne(o,s);e.reportError(new f(`Unknown argument "${o}" on field "${i.name}.${n.name}".`+ee(a),{nodes:t}))}}}}function an(e){let t=Object.create(null),r=e.getSchema(),n=r?r.getDirectives():Ne;for(let s of n)t[s.name]=s.args.map(a=>a.name);let i=e.getDocument().definitions;for(let s of i)if(s.kind===u.DIRECTIVE_DEFINITION){var o;let a=(o=s.arguments)!==null&&o!==void 0?o:[];t[s.name.value]=a.map(c=>c.name.value)}return{Directive(s){let a=s.name.value,c=t[a];if(s.arguments&&c)for(let p of s.arguments){let l=p.name.value;if(!c.includes(l)){let d=ne(l,c);e.reportError(new f(`Unknown argument "${l}" on directive "@${a}".`+ee(d),{nodes:p}))}}return!1}}}function ir(e){let t=Object.create(null),r=e.getSchema(),n=r?r.getDirectives():Ne;for(let o of n)t[o.name]=o.locations;let i=e.getDocument().definitions;for(let o of i)o.kind===u.DIRECTIVE_DEFINITION&&(t[o.name.value]=o.locations.map(s=>s.value));return{Directive(o,s,a,c,p){let l=o.name.value,d=t[l];if(!d){e.reportError(new f(`Unknown directive "@${l}".`,{nodes:o}));return}let m=os(p);m&&!d.includes(m)&&e.reportError(new f(`Directive "@${l}" may not be used on ${m}.`,{nodes:o}))}}}function os(e){let t=e[e.length-1];switch("kind"in t||$(!1),t.kind){case u.OPERATION_DEFINITION:return ss(t.operation);case u.FIELD:return b.FIELD;case u.FRAGMENT_SPREAD:return b.FRAGMENT_SPREAD;case u.INLINE_FRAGMENT:return b.INLINE_FRAGMENT;case u.FRAGMENT_DEFINITION:return b.FRAGMENT_DEFINITION;case u.VARIABLE_DEFINITION:return b.VARIABLE_DEFINITION;case u.SCHEMA_DEFINITION:case u.SCHEMA_EXTENSION:return b.SCHEMA;case u.SCALAR_TYPE_DEFINITION:case u.SCALAR_TYPE_EXTENSION:return b.SCALAR;case u.OBJECT_TYPE_DEFINITION:case u.OBJECT_TYPE_EXTENSION:return b.OBJECT;case u.FIELD_DEFINITION:return b.FIELD_DEFINITION;case u.INTERFACE_TYPE_DEFINITION:case u.INTERFACE_TYPE_EXTENSION:return b.INTERFACE;case u.UNION_TYPE_DEFINITION:case u.UNION_TYPE_EXTENSION:return b.UNION;case u.ENUM_TYPE_DEFINITION:case u.ENUM_TYPE_EXTENSION:return b.ENUM;case u.ENUM_VALUE_DEFINITION:return b.ENUM_VALUE;case u.INPUT_OBJECT_TYPE_DEFINITION:case u.INPUT_OBJECT_TYPE_EXTENSION:return b.INPUT_OBJECT;case u.INPUT_VALUE_DEFINITION:{let r=e[e.length-3];return"kind"in r||$(!1),r.kind===u.INPUT_OBJECT_TYPE_DEFINITION?b.INPUT_FIELD_DEFINITION:b.ARGUMENT_DEFINITION}default:$(!1,"Unexpected kind: "+y(t.kind))}}function ss(e){switch(e){case U.QUERY:return b.QUERY;case U.MUTATION:return b.MUTATION;case U.SUBSCRIPTION:return b.SUBSCRIPTION}}function cn(e){return{FragmentSpread(t){let r=t.name.value;e.getFragment(r)||e.reportError(new f(`Unknown fragment "${r}".`,{nodes:t.name}))}}}function or(e){let t=e.getSchema(),r=t?t.getTypeMap():Object.create(null),n=Object.create(null);for(let o of e.getDocument().definitions)xe(o)&&(n[o.name.value]=!0);let i=[...Object.keys(r),...Object.keys(n)];return{NamedType(o,s,a,c,p){let l=o.name.value;if(!r[l]&&!n[l]){var d;let m=(d=p[2])!==null&&d!==void 0?d:a,T=m!=null&&as(m);if(T&&ki.includes(l))return;let g=ne(l,T?ki.concat(i):i);e.reportError(new f(`Unknown type "${l}".`+ee(g),{nodes:o}))}}}}var ki=[...Xt,...er].map(e=>e.name);function as(e){return"kind"in e&&(en(e)||tn(e))}function un(e){let t=0;return{Document(r){t=r.definitions.filter(n=>n.kind===u.OPERATION_DEFINITION).length},OperationDefinition(r){!r.name&&t>1&&e.reportError(new f("This anonymous operation must be the only defined operation.",{nodes:r}))}}}function pn(e){var t,r,n;let i=e.getSchema(),o=(t=(r=(n=i?.astNode)!==null&&n!==void 0?n:i?.getQueryType())!==null&&r!==void 0?r:i?.getMutationType())!==null&&t!==void 0?t:i?.getSubscriptionType(),s=0;return{SchemaDefinition(a){if(o){e.reportError(new f("Cannot define a new schema within a schema extension.",{nodes:a}));return}s>0&&e.reportError(new f("Must provide only one schema definition.",{nodes:a})),++s}}}var cs=3;function ln(e){function t(r,n=Object.create(null),i=0){if(r.kind===u.FRAGMENT_SPREAD){let o=r.name.value;if(n[o]===!0)return!1;let s=e.getFragment(o);if(!s)return!1;try{return n[o]=!0,t(s,n,i)}finally{n[o]=void 0}}if(r.kind===u.FIELD&&(r.name.value==="fields"||r.name.value==="interfaces"||r.name.value==="possibleTypes"||r.name.value==="inputFields")&&(i++,i>=cs))return!0;if("selectionSet"in r&&r.selectionSet){for(let o of r.selectionSet.selections)if(t(o,n,i))return!0}return!1}return{Field(r){if((r.name.value==="__schema"||r.name.value==="__type")&&t(r))return e.reportError(new f("Maximum introspection depth exceeded",{nodes:[r]})),!1}}}function fn(e){let t=Object.create(null),r=[],n=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(o){return i(o),!1}};function i(o){if(t[o.name.value])return;let s=o.name.value;t[s]=!0;let a=e.getFragmentSpreads(o.selectionSet);if(a.length!==0){n[s]=r.length;for(let c of a){let p=c.name.value,l=n[p];if(r.push(c),l===void 0){let d=e.getFragment(p);d&&i(d)}else{let d=r.slice(l),m=d.slice(0,-1).map(T=>'"'+T.name.value+'"').join(", ");e.reportError(new f(`Cannot spread fragment "${p}" within itself`+(m!==""?` via ${m}.`:"."),{nodes:d}))}r.pop()}n[s]=void 0}}}function dn(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(r){let n=e.getRecursiveVariableUsages(r);for(let{node:i}of n){let o=i.name.value;t[o]!==!0&&e.reportError(new f(r.name?`Variable "$${o}" is not defined by operation "${r.name.value}".`:`Variable "$${o}" is not defined.`,{nodes:[i,r]}))}}},VariableDefinition(r){t[r.variable.name.value]=!0}}}function mn(e){let t=[],r=[];return{OperationDefinition(n){return t.push(n),!1},FragmentDefinition(n){return r.push(n),!1},Document:{leave(){let n=Object.create(null);for(let i of t)for(let o of e.getRecursivelyReferencedFragments(i))n[o.name.value]=!0;for(let i of r){let o=i.name.value;n[o]!==!0&&e.reportError(new f(`Fragment "${o}" is never used.`,{nodes:i}))}}}}}function hn(e){let t=[];return{OperationDefinition:{enter(){t=[]},leave(r){let n=Object.create(null),i=e.getRecursiveVariableUsages(r);for(let{node:o}of i)n[o.name.value]=!0;for(let o of t){let s=o.variable.name.value;n[s]!==!0&&e.reportError(new f(r.name?`Variable "$${s}" is never used in operation "${r.name.value}".`:`Variable "$${s}" is never used.`,{nodes:o}))}}},VariableDefinition(r){t.push(r)}}}function sr(e){switch(e.kind){case u.OBJECT:return{...e,fields:us(e.fields)};case u.LIST:return{...e,values:e.values.map(sr)};case u.INT:case u.FLOAT:case u.STRING:case u.BOOLEAN:case u.NULL:case u.ENUM:case u.VARIABLE:return e}}function us(e){return e.map(t=>({...t,value:sr(t.value)})).sort((t,r)=>Je(t.name.value,r.name.value))}function Mi(e){return Array.isArray(e)?e.map(([t,r])=>`subfields "${t}" conflict because `+Mi(r)).join(" and "):e}function En(e){let t=new pr,r=new gn,n=new Map;return{SelectionSet(i){let o=ps(e,n,t,r,e.getParentType(),i);for(let[[s,a],c,p]of o){let l=Mi(a);e.reportError(new f(`Fields "${s}" conflict because ${l}. Use different aliases on the fields to fetch both if this was intentional.`,{nodes:c.concat(p)}))}}}}function ps(e,t,r,n,i,o){let s=[],[a,c]=ur(e,t,i,o);if(fs(e,s,t,r,n,a),c.length!==0)for(let p=0;p<c.length;p++){ar(e,s,t,r,n,!1,a,c[p]);for(let l=p+1;l<c.length;l++)cr(e,s,t,r,n,!1,c[p],c[l])}return s}function ar(e,t,r,n,i,o,s,a){if(n.has(s,a,o))return;n.add(s,a,o);let c=e.getFragment(a);if(!c)return;let[p,l]=Tn(e,r,c);if(s!==p){vn(e,t,r,n,i,o,s,p);for(let d of l)ar(e,t,r,n,i,o,s,d)}}function cr(e,t,r,n,i,o,s,a){if(s===a||i.has(s,a,o))return;i.add(s,a,o);let c=e.getFragment(s),p=e.getFragment(a);if(!c||!p)return;let[l,d]=Tn(e,r,c),[m,T]=Tn(e,r,p);vn(e,t,r,n,i,o,l,m);for(let g of T)cr(e,t,r,n,i,o,s,g);for(let g of d)cr(e,t,r,n,i,o,g,a)}function ls(e,t,r,n,i,o,s,a,c){let p=[],[l,d]=ur(e,t,o,s),[m,T]=ur(e,t,a,c);vn(e,p,t,r,n,i,l,m);for(let g of T)ar(e,p,t,r,n,i,l,g);for(let g of d)ar(e,p,t,r,n,i,m,g);for(let g of d)for(let M of T)cr(e,p,t,r,n,i,g,M);return p}function fs(e,t,r,n,i,o){for(let[s,a]of Object.entries(o))if(a.length>1)for(let c=0;c<a.length;c++)for(let p=c+1;p<a.length;p++){let l=Pi(e,r,n,i,!1,s,a[c],a[p]);l&&t.push(l)}}function vn(e,t,r,n,i,o,s,a){for(let[c,p]of Object.entries(s)){let l=a[c];if(l)for(let d of p)for(let m of l){let T=Pi(e,r,n,i,o,c,d,m);T&&t.push(T)}}}function Pi(e,t,r,n,i,o,s,a){let[c,p,l]=s,[d,m,T]=a,g=i||c!==d&&x(c)&&x(d);if(!g){let ae=p.name.value,he=m.name.value;if(ae!==he)return[[o,`"${ae}" and "${he}" are different fields`],[p],[m]];if(!ds(p,m))return[[o,"they have differing arguments"],[p],[m]]}let M=l?.type,Z=T?.type;if(M&&Z&&yn(M,Z))return[[o,`they return conflicting types "${y(M)}" and "${y(Z)}"`],[p],[m]];let J=p.selectionSet,fe=m.selectionSet;if(J&&fe){let ae=ls(e,t,r,n,g,z(M),J,z(Z),fe);return ms(ae,o,p,m)}}function ds(e,t){let r=e.arguments,n=t.arguments;if(r===void 0||r.length===0)return n===void 0||n.length===0;if(n===void 0||n.length===0||r.length!==n.length)return!1;let i=new Map(n.map(({name:o,value:s})=>[o.value,s]));return r.every(o=>{let s=o.value,a=i.get(o.name.value);return a===void 0?!1:Ci(s)===Ci(a)})}function Ci(e){return A(sr(e))}function yn(e,t){return C(e)?C(t)?yn(e.ofType,t.ofType):!0:C(t)?!0:O(e)?O(t)?yn(e.ofType,t.ofType):!0:O(t)?!0:W(e)||W(t)?e!==t:!1}function ur(e,t,r,n){let i=t.get(n);if(i)return i;let o=Object.create(null),s=Object.create(null);Ui(e,r,n,o,s);let a=[o,Object.keys(s)];return t.set(n,a),a}function Tn(e,t,r){let n=t.get(r.selectionSet);if(n)return n;let i=V(e.getSchema(),r.typeCondition);return ur(e,t,i,r.selectionSet)}function Ui(e,t,r,n,i){for(let o of r.selections)switch(o.kind){case u.FIELD:{let s=o.name.value,a;(x(t)||w(t))&&(a=t.getFields()[s]);let c=o.alias?o.alias.value:s;n[c]||(n[c]=[]),n[c].push([t,o,a]);break}case u.FRAGMENT_SPREAD:i[o.name.value]=!0;break;case u.INLINE_FRAGMENT:{let s=o.typeCondition,a=s?V(e.getSchema(),s):t;Ui(e,a,o.selectionSet,n,i);break}}}function ms(e,t,r,n){if(e.length>0)return[[t,e.map(([i])=>i)],[r,...e.map(([,i])=>i).flat()],[n,...e.map(([,,i])=>i).flat()]]}var pr=class{constructor(){this._data=new Map}has(t,r,n){var i;let o=(i=this._data.get(t))===null||i===void 0?void 0:i.get(r);return o===void 0?!1:n?!0:n===o}add(t,r,n){let i=this._data.get(t);i===void 0?this._data.set(t,new Map([[r,n]])):i.set(r,n)}},gn=class{constructor(){this._orderedPairSet=new pr}has(t,r,n){return t<r?this._orderedPairSet.has(t,r,n):this._orderedPairSet.has(r,t,n)}add(t,r,n){t<r?this._orderedPairSet.add(t,r,n):this._orderedPairSet.add(r,t,n)}};function Nn(e){return{InlineFragment(t){let r=e.getType(),n=e.getParentType();if(ue(r)&&ue(n)&&!jr(e.getSchema(),r,n)){let i=y(n),o=y(r);e.reportError(new f(`Fragment cannot be spread here as objects of type "${i}" can never be of type "${o}".`,{nodes:t}))}},FragmentSpread(t){let r=t.name.value,n=hs(e,r),i=e.getParentType();if(n&&i&&!jr(e.getSchema(),n,i)){let o=y(i),s=y(n);e.reportError(new f(`Fragment "${r}" cannot be spread here as objects of type "${o}" can never be of type "${s}".`,{nodes:t}))}}}}function hs(e,t){let r=e.getFragment(t);if(r){let n=V(e.getSchema(),r.typeCondition);if(ue(n))return n}}function In(e){let t=e.getSchema(),r=Object.create(null);for(let i of e.getDocument().definitions)xe(i)&&(r[i.name.value]=i);return{ScalarTypeExtension:n,ObjectTypeExtension:n,InterfaceTypeExtension:n,UnionTypeExtension:n,EnumTypeExtension:n,InputObjectTypeExtension:n};function n(i){let o=i.name.value,s=r[o],a=t?.getType(o),c;if(s?c=ys[s.kind]:a&&(c=Ts(a)),c){if(c!==i.kind){let p=gs(i.kind);e.reportError(new f(`Cannot extend non-${p} type "${o}".`,{nodes:s?[s,i]:i}))}}else{let p=Object.keys({...r,...t?.getTypeMap()}),l=ne(o,p);e.reportError(new f(`Cannot extend type "${o}" because it is not defined.`+ee(l),{nodes:i.name}))}}}var ys={[u.SCALAR_TYPE_DEFINITION]:u.SCALAR_TYPE_EXTENSION,[u.OBJECT_TYPE_DEFINITION]:u.OBJECT_TYPE_EXTENSION,[u.INTERFACE_TYPE_DEFINITION]:u.INTERFACE_TYPE_EXTENSION,[u.UNION_TYPE_DEFINITION]:u.UNION_TYPE_EXTENSION,[u.ENUM_TYPE_DEFINITION]:u.ENUM_TYPE_EXTENSION,[u.INPUT_OBJECT_TYPE_DEFINITION]:u.INPUT_OBJECT_TYPE_EXTENSION};function Ts(e){if(Ee(e))return u.SCALAR_TYPE_EXTENSION;if(x(e))return u.OBJECT_TYPE_EXTENSION;if(w(e))return u.INTERFACE_TYPE_EXTENSION;if(X(e))return u.UNION_TYPE_EXTENSION;if(Q(e))return u.ENUM_TYPE_EXTENSION;if(D(e))return u.INPUT_OBJECT_TYPE_EXTENSION;$(!1,"Unexpected type: "+y(e))}function gs(e){switch(e){case u.SCALAR_TYPE_EXTENSION:return"scalar";case u.OBJECT_TYPE_EXTENSION:return"object";case u.INTERFACE_TYPE_EXTENSION:return"interface";case u.UNION_TYPE_EXTENSION:return"union";case u.ENUM_TYPE_EXTENSION:return"enum";case u.INPUT_OBJECT_TYPE_EXTENSION:return"input object";default:$(!1,"Unexpected kind: "+y(e))}}function bn(e){return{...Rn(e),Field:{leave(t){var r;let n=e.getFieldDef();if(!n)return!1;let i=new Set((r=t.arguments)===null||r===void 0?void 0:r.map(o=>o.name.value));for(let o of n.args)if(!i.has(o.name)&&Oe(o)){let s=y(o.type);e.reportError(new f(`Field "${n.name}" argument "${o.name}" of type "${s}" is required, but it was not provided.`,{nodes:t}))}}}}}function Rn(e){var t;let r=Object.create(null),n=e.getSchema(),i=(t=n?.getDirectives())!==null&&t!==void 0?t:Ne;for(let a of i)r[a.name]=ye(a.args.filter(Oe),c=>c.name);let o=e.getDocument().definitions;for(let a of o)if(a.kind===u.DIRECTIVE_DEFINITION){var s;let c=(s=a.arguments)!==null&&s!==void 0?s:[];r[a.name.value]=ye(c.filter(Es),p=>p.name.value)}return{Directive:{leave(a){let c=a.name.value,p=r[c];if(p){var l;let d=(l=a.arguments)!==null&&l!==void 0?l:[],m=new Set(d.map(T=>T.name.value));for(let[T,g]of Object.entries(p))if(!m.has(T)){let M=We(g.type)?y(g.type):A(g.type);e.reportError(new f(`Directive "@${c}" argument "${T}" of type "${M}" is required, but it was not provided.`,{nodes:a}))}}}}}}function Es(e){return e.type.kind===u.NON_NULL_TYPE&&e.defaultValue==null}function On(e){return{Field(t){let r=e.getType(),n=t.selectionSet;if(r)if(W(z(r))){if(n){let i=t.name.value,o=y(r);e.reportError(new f(`Field "${i}" must not have a selection since type "${o}" has no subfields.`,{nodes:n}))}}else if(n){if(n.selections.length===0){let i=t.name.value,o=y(r);e.reportError(new f(`Field "${i}" of type "${o}" must have at least one field selected.`,{nodes:t}))}}else{let i=t.name.value,o=y(r);e.reportError(new f(`Field "${i}" of type "${o}" must have a selection of subfields. Did you mean "${i} { ... }"?`,{nodes:t}))}}}}function lr(e){return e.map(t=>typeof t=="number"?"["+t.toString()+"]":"."+t).join("")}function Ue(e,t,r){return{prev:e,key:t,typename:r}}function te(e){let t=[],r=e;for(;r;)t.push(r.key),r=r.prev;return t.reverse()}function $i(e,t,r=vs){return Ot(e,t,r,void 0)}function vs(e,t,r){let n="Invalid value "+y(t);throw e.length>0&&(n+=` at "value${lr(e)}"`),r.message=n+": "+r.message,r}function Ot(e,t,r,n){if(O(t)){if(e!=null)return Ot(e,t.ofType,r,n);r(te(n),e,new f(`Expected non-nullable type "${y(t)}" not to be null.`));return}if(e==null)return null;if(C(t)){let i=t.ofType;return tt(e)?Array.from(e,(o,s)=>{let a=Ue(n,s,void 0);return Ot(o,i,r,a)}):[Ot(e,i,r,n)]}if(D(t)){if(!q(e)||Array.isArray(e)){r(te(n),e,new f(`Expected type "${t.name}" to be an object.`));return}let i={},o=t.getFields();for(let s of Object.values(o)){let a=e[s.name];if(a===void 0){if(s.defaultValue!==void 0)i[s.name]=s.defaultValue;else if(O(s.type)){let c=y(s.type);r(te(n),e,new f(`Field "${s.name}" of required type "${c}" was not provided.`))}continue}i[s.name]=Ot(a,s.type,r,Ue(n,s.name,t.name))}for(let s of Object.keys(e))if(!o[s]){let a=ne(s,Object.keys(t.getFields()));r(te(n),e,new f(`Field "${s}" is not defined by type "${t.name}".`+ee(a)))}if(t.isOneOf){let s=Object.keys(i);s.length!==1&&r(te(n),e,new f(`Exactly one key must be specified for OneOf type "${t.name}".`));let a=s[0],c=i[a];c===null&&r(te(n).concat(a),c,new f(`Field "${a}" must be non-null.`))}return i}if(W(t)){let i;try{i=t.parseValue(e)}catch(o){o instanceof f?r(te(n),e,o):r(te(n),e,new f(`Expected type "${t.name}". `+o.message,{originalError:o}));return}return i===void 0&&r(te(n),e,new f(`Expected type "${t.name}".`)),i}$(!1,"Unexpected input type: "+y(t))}function $e(e,t,r){if(e){if(e.kind===u.VARIABLE){let n=e.name.value;if(r==null||r[n]===void 0)return;let i=r[n];return i===null&&O(t)?void 0:i}if(O(t))return e.kind===u.NULL?void 0:$e(e,t.ofType,r);if(e.kind===u.NULL)return null;if(C(t)){let n=t.ofType;if(e.kind===u.LIST){let o=[];for(let s of e.values)if(Vi(s,r)){if(O(n))return;o.push(null)}else{let a=$e(s,n,r);if(a===void 0)return;o.push(a)}return o}let i=$e(e,n,r);return i===void 0?void 0:[i]}if(D(t)){if(e.kind!==u.OBJECT)return;let n=Object.create(null),i=ye(e.fields,o=>o.name.value);for(let o of Object.values(t.getFields())){let s=i[o.name];if(!s||Vi(s.value,r)){if(o.defaultValue!==void 0)n[o.name]=o.defaultValue;else if(O(o.type))return;continue}let a=$e(s.value,o.type,r);if(a===void 0)return;n[o.name]=a}if(t.isOneOf){let o=Object.keys(n);if(o.length!==1||n[o[0]]===null)return}return n}if(W(t)){let n;try{n=t.parseLiteral(e,r)}catch{return}return n===void 0?void 0:n}$(!1,"Unexpected input type: "+y(t))}}function Vi(e,t){return e.kind===u.VARIABLE&&(t==null||t[e.name.value]===void 0)}function Sn(e,t,r,n){let i=[],o=n?.maxErrors;try{let s=Ns(e,t,r,a=>{if(o!=null&&i.length>=o)throw new f("Too many errors processing variables, error limit reached. Execution aborted.");i.push(a)});if(i.length===0)return{coerced:s}}catch(s){i.push(s)}return{errors:i}}function Ns(e,t,r,n){let i={};for(let o of t){let s=o.variable.name.value,a=V(e,o.type);if(!K(a)){let p=A(o.type);n(new f(`Variable "$${s}" expected value of type "${p}" which cannot be used as an input type.`,{nodes:o.type}));continue}if(!Gi(r,s)){if(o.defaultValue)i[s]=$e(o.defaultValue,a);else if(O(a)){let p=y(a);n(new f(`Variable "$${s}" of required type "${p}" was not provided.`,{nodes:o}))}continue}let c=r[s];if(c===null&&O(a)){let p=y(a);n(new f(`Variable "$${s}" of non-null type "${p}" must not be null.`,{nodes:o}));continue}i[s]=$i(c,a,(p,l,d)=>{let m=`Variable "$${s}" got invalid value `+y(l);p.length>0&&(m+=` at "${s}${lr(p)}"`),n(new f(m+"; "+d.message,{nodes:o,originalError:d}))})}return i}function fr(e,t,r){var n;let i={},o=(n=t.arguments)!==null&&n!==void 0?n:[],s=ye(o,a=>a.name.value);for(let a of e.args){let c=a.name,p=a.type,l=s[c];if(!l){if(a.defaultValue!==void 0)i[c]=a.defaultValue;else if(O(p))throw new f(`Argument "${c}" of required type "${y(p)}" was not provided.`,{nodes:t});continue}let d=l.value,m=d.kind===u.NULL;if(d.kind===u.VARIABLE){let g=d.name.value;if(r==null||!Gi(r,g)){if(a.defaultValue!==void 0)i[c]=a.defaultValue;else if(O(p))throw new f(`Argument "${c}" of required type "${y(p)}" was provided the variable "$${g}" which was not provided a runtime value.`,{nodes:d});continue}m=r[g]==null}if(m&&O(p))throw new f(`Argument "${c}" of non-null type "${y(p)}" must not be null.`,{nodes:d});let T=$e(d,p,r);if(T===void 0)throw new f(`Argument "${c}" has invalid value ${A(d)}.`,{nodes:d});i[c]=T}return i}function dr(e,t,r){var n;let i=(n=t.directives)===null||n===void 0?void 0:n.find(o=>o.name.value===e.name);if(i)return fr(e,i,r)}function Gi(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function hr(e,t,r,n,i){let o=new Map;return mr(e,t,r,n,i,o,new Set),o}function Qi(e,t,r,n,i){let o=new Map,s=new Set;for(let a of i)a.selectionSet&&mr(e,t,r,n,a.selectionSet,o,s);return o}function mr(e,t,r,n,i,o,s){for(let a of i.selections)switch(a.kind){case u.FIELD:{if(!_n(r,a))continue;let c=Is(a),p=o.get(c);p!==void 0?p.push(a):o.set(c,[a]);break}case u.INLINE_FRAGMENT:{if(!_n(r,a)||!ji(e,a,n))continue;mr(e,t,r,n,a.selectionSet,o,s);break}case u.FRAGMENT_SPREAD:{let c=a.name.value;if(s.has(c)||!_n(r,a))continue;s.add(c);let p=t[c];if(!p||!ji(e,p,n))continue;mr(e,t,r,n,p.selectionSet,o,s);break}}}function _n(e,t){let r=dr(Wt,t,e);if(r?.if===!0)return!1;let n=dr(Kt,t,e);return n?.if!==!1}function ji(e,t,r){let n=t.typeCondition;if(!n)return!0;let i=V(e,n);return i===r?!0:oe(i)?e.isSubType(i,r):!1}function Is(e){return e.alias?e.alias.value:e.name.value}function xn(e){return{OperationDefinition(t){if(t.operation==="subscription"){let r=e.getSchema(),n=r.getSubscriptionType();if(n){let i=t.name?t.name.value:null,o=Object.create(null),s=e.getDocument(),a=Object.create(null);for(let p of s.definitions)p.kind===u.FRAGMENT_DEFINITION&&(a[p.name.value]=p);let c=hr(r,a,o,n,t.selectionSet);if(c.size>1){let d=[...c.values()].slice(1).flat();e.reportError(new f(i!=null?`Subscription "${i}" must select only one top level field.`:"Anonymous Subscription must select only one top level field.",{nodes:d}))}for(let p of c.values())p[0].name.value.startsWith("__")&&e.reportError(new f(i!=null?`Subscription "${i}" must not select an introspection top level field.`:"Anonymous Subscription must not select an introspection top level field.",{nodes:p}))}}}}}function it(e,t){let r=new Map;for(let n of e){let i=t(n),o=r.get(i);o===void 0?r.set(i,[n]):o.push(n)}return r}function Ln(e){return{DirectiveDefinition(n){var i;let o=(i=n.arguments)!==null&&i!==void 0?i:[];return r(`@${n.name.value}`,o)},InterfaceTypeDefinition:t,InterfaceTypeExtension:t,ObjectTypeDefinition:t,ObjectTypeExtension:t};function t(n){var i;let o=n.name.value,s=(i=n.fields)!==null&&i!==void 0?i:[];for(let c of s){var a;let p=c.name.value,l=(a=c.arguments)!==null&&a!==void 0?a:[];r(`${o}.${p}`,l)}return!1}function r(n,i){let o=it(i,s=>s.name.value);for(let[s,a]of o)a.length>1&&e.reportError(new f(`Argument "${n}(${s}:)" can only be defined once.`,{nodes:a.map(c=>c.name)}));return!1}}function yr(e){return{Field:t,Directive:t};function t(r){var n;let i=(n=r.arguments)!==null&&n!==void 0?n:[],o=it(i,s=>s.name.value);for(let[s,a]of o)a.length>1&&e.reportError(new f(`There can be only one argument named "${s}".`,{nodes:a.map(c=>c.name)}))}}function wn(e){let t=Object.create(null),r=e.getSchema();return{DirectiveDefinition(n){let i=n.name.value;if(r!=null&&r.getDirective(i)){e.reportError(new f(`Directive "@${i}" already exists in the schema. It cannot be redefined.`,{nodes:n.name}));return}return t[i]?e.reportError(new f(`There can be only one directive named "@${i}".`,{nodes:[t[i],n.name]})):t[i]=n.name,!1}}}function Tr(e){let t=Object.create(null),r=e.getSchema(),n=r?r.getDirectives():Ne;for(let a of n)t[a.name]=!a.isRepeatable;let i=e.getDocument().definitions;for(let a of i)a.kind===u.DIRECTIVE_DEFINITION&&(t[a.name.value]=!a.repeatable);let o=Object.create(null),s=Object.create(null);return{enter(a){if(!("directives"in a)||!a.directives)return;let c;if(a.kind===u.SCHEMA_DEFINITION||a.kind===u.SCHEMA_EXTENSION)c=o;else if(xe(a)||nr(a)){let p=a.name.value;c=s[p],c===void 0&&(s[p]=c=Object.create(null))}else c=Object.create(null);for(let p of a.directives){let l=p.name.value;t[l]&&(c[l]?e.reportError(new f(`The directive "@${l}" can only be used once at this location.`,{nodes:[c[l],p]})):c[l]=p)}}}}function Dn(e){let t=e.getSchema(),r=t?t.getTypeMap():Object.create(null),n=Object.create(null);return{EnumTypeDefinition:i,EnumTypeExtension:i};function i(o){var s;let a=o.name.value;n[a]||(n[a]=Object.create(null));let c=(s=o.values)!==null&&s!==void 0?s:[],p=n[a];for(let l of c){let d=l.name.value,m=r[a];Q(m)&&m.getValue(d)?e.reportError(new f(`Enum value "${a}.${d}" already exists in the schema. It cannot also be defined in this type extension.`,{nodes:l.name})):p[d]?e.reportError(new f(`Enum value "${a}.${d}" can only be defined once.`,{nodes:[p[d],l.name]})):p[d]=l.name}return!1}}function An(e){let t=e.getSchema(),r=t?t.getTypeMap():Object.create(null),n=Object.create(null);return{InputObjectTypeDefinition:i,InputObjectTypeExtension:i,InterfaceTypeDefinition:i,InterfaceTypeExtension:i,ObjectTypeDefinition:i,ObjectTypeExtension:i};function i(o){var s;let a=o.name.value;n[a]||(n[a]=Object.create(null));let c=(s=o.fields)!==null&&s!==void 0?s:[],p=n[a];for(let l of c){let d=l.name.value;bs(r[a],d)?e.reportError(new f(`Field "${a}.${d}" already exists in the schema. It cannot also be defined in this type extension.`,{nodes:l.name})):p[d]?e.reportError(new f(`Field "${a}.${d}" can only be defined once.`,{nodes:[p[d],l.name]})):p[d]=l.name}return!1}}function bs(e,t){return x(e)||w(e)||D(e)?e.getFields()[t]!=null:!1}function Fn(e){let t=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(r){let n=r.name.value;return t[n]?e.reportError(new f(`There can be only one fragment named "${n}".`,{nodes:[t[n],r.name]})):t[n]=r.name,!1}}}function gr(e){let t=[],r=Object.create(null);return{ObjectValue:{enter(){t.push(r),r=Object.create(null)},leave(){let n=t.pop();n||$(!1),r=n}},ObjectField(n){let i=n.name.value;r[i]?e.reportError(new f(`There can be only one input field named "${i}".`,{nodes:[r[i],n.name]})):r[i]=n.name}}}function kn(e){let t=Object.create(null);return{OperationDefinition(r){let n=r.name;return n&&(t[n.value]?e.reportError(new f(`There can be only one operation named "${n.value}".`,{nodes:[t[n.value],n]})):t[n.value]=n),!1},FragmentDefinition:()=>!1}}function Cn(e){let t=e.getSchema(),r=Object.create(null),n=t?{query:t.getQueryType(),mutation:t.getMutationType(),subscription:t.getSubscriptionType()}:{};return{SchemaDefinition:i,SchemaExtension:i};function i(o){var s;let a=(s=o.operationTypes)!==null&&s!==void 0?s:[];for(let c of a){let p=c.operation,l=r[p];n[p]?e.reportError(new f(`Type for ${p} already defined in the schema. It cannot be redefined.`,{nodes:c})):l?e.reportError(new f(`There can be only one ${p} type in schema.`,{nodes:[l,c]})):r[p]=c}return!1}}function Mn(e){let t=Object.create(null),r=e.getSchema();return{ScalarTypeDefinition:n,ObjectTypeDefinition:n,InterfaceTypeDefinition:n,UnionTypeDefinition:n,EnumTypeDefinition:n,InputObjectTypeDefinition:n};function n(i){let o=i.name.value;if(r!=null&&r.getType(o)){e.reportError(new f(`Type "${o}" already exists in the schema. It cannot also be defined in this type definition.`,{nodes:i.name}));return}return t[o]?e.reportError(new f(`There can be only one type named "${o}".`,{nodes:[t[o],i.name]})):t[o]=i.name,!1}}function Pn(e){return{OperationDefinition(t){var r;let n=(r=t.variableDefinitions)!==null&&r!==void 0?r:[],i=it(n,o=>o.variable.name.value);for(let[o,s]of i)s.length>1&&e.reportError(new f(`There can be only one variable named "$${o}".`,{nodes:s.map(a=>a.variable.name)}))}}}function Un(e){let t={};return{OperationDefinition:{enter(){t={}}},VariableDefinition(r){t[r.variable.name.value]=r},ListValue(r){let n=Ze(e.getParentInputType());if(!C(n))return Ve(e,r),!1},ObjectValue(r){let n=z(e.getInputType());if(!D(n))return Ve(e,r),!1;let i=ye(r.fields,o=>o.name.value);for(let o of Object.values(n.getFields()))if(!i[o.name]&&et(o)){let a=y(o.type);e.reportError(new f(`Field "${n.name}.${o.name}" of required type "${a}" was not provided.`,{nodes:r}))}n.isOneOf&&Rs(e,r,n,i,t)},ObjectField(r){let n=z(e.getParentInputType());if(!e.getInputType()&&D(n)){let o=ne(r.name.value,Object.keys(n.getFields()));e.reportError(new f(`Field "${r.name.value}" is not defined by type "${n.name}".`+ee(o),{nodes:r}))}},NullValue(r){let n=e.getInputType();O(n)&&e.reportError(new f(`Expected value of type "${y(n)}", found ${A(r)}.`,{nodes:r}))},EnumValue:r=>Ve(e,r),IntValue:r=>Ve(e,r),FloatValue:r=>Ve(e,r),StringValue:r=>Ve(e,r),BooleanValue:r=>Ve(e,r)}}function Ve(e,t){let r=e.getInputType();if(!r)return;let n=z(r);if(!W(n)){let i=y(r);e.reportError(new f(`Expected value of type "${i}", found ${A(t)}.`,{nodes:t}));return}try{if(n.parseLiteral(t,void 0)===void 0){let o=y(r);e.reportError(new f(`Expected value of type "${o}", found ${A(t)}.`,{nodes:t}))}}catch(i){let o=y(r);i instanceof f?e.reportError(i):e.reportError(new f(`Expected value of type "${o}", found ${A(t)}; `+i.message,{nodes:t,originalError:i}))}}function Rs(e,t,r,n,i){var o;let s=Object.keys(n);if(s.length!==1){e.reportError(new f(`OneOf Input Object "${r.name}" must specify exactly one key.`,{nodes:[t]}));return}let c=(o=n[s[0]])===null||o===void 0?void 0:o.value,p=!c||c.kind===u.NULL,l=c?.kind===u.VARIABLE;if(p){e.reportError(new f(`Field "${r.name}.${s[0]}" must be non-null.`,{nodes:[t]}));return}if(l){let d=c.name.value;i[d].type.kind!==u.NON_NULL_TYPE&&e.reportError(new f(`Variable "${d}" must be non-nullable to be used for OneOf Input Object "${r.name}".`,{nodes:[t]}))}}function $n(e){return{VariableDefinition(t){let r=V(e.getSchema(),t.type);if(r!==void 0&&!K(r)){let n=t.variable.name.value,i=A(t.type);e.reportError(new f(`Variable "$${n}" cannot be non-input type "${i}".`,{nodes:t.type}))}}}}function Vn(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(r){let n=e.getRecursiveVariableUsages(r);for(let{node:i,type:o,defaultValue:s,parentType:a}of n){let c=i.name.value,p=t[c];if(p&&o){let l=e.getSchema(),d=V(l,p.type);if(d&&!Os(l,d,p.defaultValue,o,s)){let m=y(d),T=y(o);e.reportError(new f(`Variable "$${c}" of type "${m}" used in position expecting type "${T}".`,{nodes:[p,i]}))}D(a)&&a.isOneOf&&yt(d)&&e.reportError(new f(`Variable "$${c}" is of type "${d}" but must be non-nullable to be used for OneOf Input Object "${a}".`,{nodes:[p,i]}))}}}},VariableDefinition(r){t[r.variable.name.value]=r}}}function Os(e,t,r,n,i){if(O(n)&&!O(t)){if(!(r!=null&&r.kind!==u.NULL)&&!(i!==void 0))return!1;let a=n.ofType;return _e(e,t,a)}return _e(e,t,n)}var Gn=Object.freeze([ln]),ot=Object.freeze([rn,kn,un,xn,or,on,$n,On,nn,Fn,cn,mn,Nn,fn,Pn,dn,hn,ir,Tr,sn,yr,Un,bn,Vn,En,gr,...Gn]),Ss=Object.freeze([pn,Cn,Mn,Dn,An,Ln,wn,or,ir,Tr,In,an,yr,gr,Rn]);var jn=class{constructor(t,r){this._ast=t,this._fragments=void 0,this._fragmentSpreads=new Map,this._recursivelyReferencedFragments=new Map,this._onError=r}get[Symbol.toStringTag](){return"ASTValidationContext"}reportError(t){this._onError(t)}getDocument(){return this._ast}getFragment(t){let r;if(this._fragments)r=this._fragments;else{r=Object.create(null);for(let n of this.getDocument().definitions)n.kind===u.FRAGMENT_DEFINITION&&(r[n.name.value]=n);this._fragments=r}return r[t]}getFragmentSpreads(t){let r=this._fragmentSpreads.get(t);if(!r){r=[];let n=[t],i;for(;i=n.pop();)for(let o of i.selections)o.kind===u.FRAGMENT_SPREAD?r.push(o):o.selectionSet&&n.push(o.selectionSet);this._fragmentSpreads.set(t,r)}return r}getRecursivelyReferencedFragments(t){let r=this._recursivelyReferencedFragments.get(t);if(!r){r=[];let n=Object.create(null),i=[t.selectionSet],o;for(;o=i.pop();)for(let s of this.getFragmentSpreads(o)){let a=s.name.value;if(n[a]!==!0){n[a]=!0;let c=this.getFragment(a);c&&(r.push(c),i.push(c.selectionSet))}}this._recursivelyReferencedFragments.set(t,r)}return r}};var St=class extends jn{constructor(t,r,n,i){super(r,i),this._schema=t,this._typeInfo=n,this._variableUsages=new Map,this._recursiveVariableUsages=new Map}get[Symbol.toStringTag](){return"ValidationContext"}getSchema(){return this._schema}getVariableUsages(t){let r=this._variableUsages.get(t);if(!r){let n=[],i=new nt(this._schema);we(t,rr(i,{VariableDefinition:()=>!1,Variable(o){n.push({node:o,type:i.getInputType(),defaultValue:i.getDefaultValue(),parentType:i.getParentInputType()})}})),r=n,this._variableUsages.set(t,r)}return r}getRecursiveVariableUsages(t){let r=this._recursiveVariableUsages.get(t);if(!r){r=this.getVariableUsages(t);for(let n of this.getRecursivelyReferencedFragments(t))r=r.concat(this.getVariableUsages(n));this._recursiveVariableUsages.set(t,r)}return r}getType(){return this._typeInfo.getType()}getParentType(){return this._typeInfo.getParentType()}getInputType(){return this._typeInfo.getInputType()}getParentInputType(){return this._typeInfo.getParentInputType()}getFieldDef(){return this._typeInfo.getFieldDef()}getDirective(){return this._typeInfo.getDirective()}getArgument(){return this._typeInfo.getArgument()}getEnumValue(){return this._typeInfo.getEnumValue()}};function Er(e,t,r=ot,n,i=new nt(e)){var o;let s=(o=n?.maxErrors)!==null&&o!==void 0?o:100;t||_(!1,"Must provide document."),Rt(e);let a=Object.freeze({}),c=[],p=new St(e,t,i,d=>{if(c.length>=s)throw c.push(new f("Too many validation errors, error limit reached. Validation aborted.")),a;c.push(d)}),l=Ur(r.map(d=>d(p)));try{we(t,rr(i,l))}catch(d){if(d!==a)throw d}return c}function Bi(e){let t;return function(n,i,o){t===void 0&&(t=new WeakMap);let s=t.get(n);s===void 0&&(s=new WeakMap,t.set(n,s));let a=s.get(i);a===void 0&&(a=new WeakMap,s.set(i,a));let c=a.get(o);return c===void 0&&(c=e(n,i,o),a.set(o,c)),c}}function Qn(e){return Promise.all(Object.values(e)).then(t=>{let r=Object.create(null);for(let[n,i]of Object.keys(e).entries())r[i]=t[n];return r})}function qi(e,t,r){let n=r;for(let i of e)n=ce(n)?n.then(o=>t(o,i)):t(n,i);return n}function Yi(e){return e instanceof Error?e:new Bn(e)}var Bn=class extends Error{constructor(t){super("Unexpected error value: "+y(t)),this.name="NonErrorThrown",this.thrownValue=t}};function _t(e,t,r){var n;let i=Yi(e);return _s(i)?i:new f(i.message,{nodes:(n=i.nodes)!==null&&n!==void 0?n:t,source:i.source,positions:i.positions,path:r,originalError:i})}function _s(e){return Array.isArray(e.path)}var xs=Bi((e,t,r)=>Qi(e.schema,e.fragments,e.variableValues,t,r));function Rr(e){arguments.length<2||_(!1,"graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.");let{schema:t,document:r,variableValues:n,rootValue:i}=e;Ls(t,r,n);let o=ws(e);if(!("schema"in o))return{errors:o};try{let{operation:s}=o,a=Ds(o,s,i);return ce(a)?a.then(c=>vr(c,o.errors),c=>(o.errors.push(c),vr(null,o.errors))):vr(a,o.errors)}catch(s){return o.errors.push(s),vr(null,o.errors)}}function vr(e,t){return t.length===0?{data:e}:{errors:t,data:e}}function Ls(e,t,r){t||_(!1,"Must provide document."),Rt(e),r==null||q(r)||_(!1,"Variables must be provided as an Object where each property is a variable value. Perhaps look to see if an unparsed JSON string was provided.")}function ws(e){var t,r,n;let{schema:i,document:o,rootValue:s,contextValue:a,variableValues:c,operationName:p,fieldResolver:l,typeResolver:d,subscribeFieldResolver:m,options:T}=e,g,M=Object.create(null);for(let fe of o.definitions)switch(fe.kind){case u.OPERATION_DEFINITION:if(p==null){if(g!==void 0)return[new f("Must provide operation name if query contains multiple operations.")];g=fe}else((t=fe.name)===null||t===void 0?void 0:t.value)===p&&(g=fe);break;case u.FRAGMENT_DEFINITION:M[fe.name.value]=fe;break;default:}if(!g)return p!=null?[new f(`Unknown operation named "${p}".`)]:[new f("Must provide an operation.")];let Z=(r=g.variableDefinitions)!==null&&r!==void 0?r:[],J=Sn(i,Z,c??{},{maxErrors:(n=T?.maxCoercionErrors)!==null&&n!==void 0?n:50});return J.errors?J.errors:{schema:i,fragments:M,rootValue:s,contextValue:a,operation:g,variableValues:J.coerced,fieldResolver:l??br,typeResolver:d??Yn,subscribeFieldResolver:m??br,errors:[]}}function Ds(e,t,r){let n=e.schema.getRootType(t.operation);if(n==null)throw new f(`Schema is not configured to execute ${t.operation} operation.`,{nodes:t});let i=hr(e.schema,e.fragments,e.variableValues,n,t.selectionSet),o=void 0;switch(t.operation){case U.QUERY:return Nr(e,n,r,o,i);case U.MUTATION:return As(e,n,r,o,i);case U.SUBSCRIPTION:return Nr(e,n,r,o,i)}}function As(e,t,r,n,i){return qi(i.entries(),(o,[s,a])=>{let c=Ue(n,s,t.name),p=zi(e,t,r,a,c);return p===void 0?o:ce(p)?p.then(l=>(o[s]=l,o)):(o[s]=p,o)},Object.create(null))}function Nr(e,t,r,n,i){let o=Object.create(null),s=!1;try{for(let[a,c]of i.entries()){let p=Ue(n,a,t.name),l=zi(e,t,r,c,p);l!==void 0&&(o[a]=l,ce(l)&&(s=!0))}}catch(a){if(s)return Qn(o).finally(()=>{throw a});throw a}return s?Qn(o):o}function zi(e,t,r,n,i){var o;let s=Ps(e.schema,t,n[0]);if(!s)return;let a=s.type,c=(o=s.resolve)!==null&&o!==void 0?o:e.fieldResolver,p=Fs(e,s,n,t,i);try{let l=fr(s,n[0],e.variableValues),d=e.contextValue,m=c(r,l,d,p),T;return ce(m)?T=m.then(g=>xt(e,a,n,p,i,g)):T=xt(e,a,n,p,i,m),ce(T)?T.then(void 0,g=>{let M=_t(g,n,te(i));return Ir(M,a,e)}):T}catch(l){let d=_t(l,n,te(i));return Ir(d,a,e)}}function Fs(e,t,r,n,i){return{fieldName:t.name,fieldNodes:r,returnType:t.type,parentType:n,path:i,schema:e.schema,fragments:e.fragments,rootValue:e.rootValue,operation:e.operation,variableValues:e.variableValues}}function Ir(e,t,r){if(O(t))throw e;return r.errors.push(e),null}function xt(e,t,r,n,i,o){if(o instanceof Error)throw o;if(O(t)){let s=xt(e,t.ofType,r,n,i,o);if(s===null)throw new Error(`Cannot return null for non-nullable field ${n.parentType.name}.${n.fieldName}.`);return s}if(o==null)return null;if(C(t))return ks(e,t,r,n,i,o);if(W(t))return Cs(t,o);if(oe(t))return Ms(e,t,r,n,i,o);if(x(t))return qn(e,t,r,n,i,o);$(!1,"Cannot complete value of unexpected output type: "+y(t))}function ks(e,t,r,n,i,o){if(!tt(o))throw new f(`Expected Iterable, but did not find one for field "${n.parentType.name}.${n.fieldName}".`);let s=t.ofType,a=!1,c=Array.from(o,(p,l)=>{let d=Ue(i,l,void 0);try{let m;return ce(p)?m=p.then(T=>xt(e,s,r,n,d,T)):m=xt(e,s,r,n,d,p),ce(m)?(a=!0,m.then(void 0,T=>{let g=_t(T,r,te(d));return Ir(g,s,e)})):m}catch(m){let T=_t(m,r,te(d));return Ir(T,s,e)}});return a?Promise.all(c):c}function Cs(e,t){let r=e.serialize(t);if(r==null)throw new Error(`Expected \`${y(e)}.serialize(${y(t)})\` to return non-nullable value, returned: ${y(r)}`);return r}function Ms(e,t,r,n,i,o){var s;let a=(s=t.resolveType)!==null&&s!==void 0?s:e.typeResolver,c=e.contextValue,p=a(o,c,n,t);return ce(p)?p.then(l=>qn(e,Hi(l,e,t,r,n,o),r,n,i,o)):qn(e,Hi(p,e,t,r,n,o),r,n,i,o)}function Hi(e,t,r,n,i,o){if(e==null)throw new f(`Abstract type "${r.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}". Either the "${r.name}" type should provide a "resolveType" function or each possible type should provide an "isTypeOf" function.`,n);if(x(e))throw new f("Support for returning GraphQLObjectType from resolveType was removed in graphql-js@16.0.0 please return type name instead.");if(typeof e!="string")throw new f(`Abstract type "${r.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}" with value ${y(o)}, received "${y(e)}".`);let s=t.schema.getType(e);if(s==null)throw new f(`Abstract type "${r.name}" was resolved to a type "${e}" that does not exist inside the schema.`,{nodes:n});if(!x(s))throw new f(`Abstract type "${r.name}" was resolved to a non-object type "${e}".`,{nodes:n});if(!t.schema.isSubType(r,s))throw new f(`Runtime Object type "${s.name}" is not a possible type for "${r.name}".`,{nodes:n});return s}function qn(e,t,r,n,i,o){let s=xs(e,t,r);if(t.isTypeOf){let a=t.isTypeOf(o,e.contextValue,n);if(ce(a))return a.then(c=>{if(!c)throw Ji(t,o,r);return Nr(e,t,o,i,s)});if(!a)throw Ji(t,o,r)}return Nr(e,t,o,i,s)}function Ji(e,t,r){return new f(`Expected value of type "${e.name}" but got: ${y(t)}.`,{nodes:r})}var Yn=function(e,t,r,n){if(q(e)&&typeof e.__typename=="string")return e.__typename;let i=r.schema.getPossibleTypes(n),o=[];for(let s=0;s<i.length;s++){let a=i[s];if(a.isTypeOf){let c=a.isTypeOf(e,t,r);if(ce(c))o[s]=c;else if(c)return a.name}}if(o.length)return Promise.all(o).then(s=>{for(let a=0;a<s.length;a++)if(s[a])return i[a].name})},br=function(e,t,r,n){if(q(e)||typeof e=="function"){let i=e[n.fieldName];return typeof i=="function"?e[n.fieldName](t,r,n):i}};function Ps(e,t,r){let n=r.name.value;return n===Fe.name&&e.getQueryType()===t?Fe:n===ke.name&&e.getQueryType()===t?ke:n===Ce.name?Ce:t.getFields()[n]}var E=require("@medplum/core"),Xi=require("rfc6902"),Lt={READER:"reader",WRITER:"writer"},Or=class{async searchOne(t){return(await this.search({...t,count:1})).entry?.[0]?.resource}async searchResources(t){return(await this.search(t)).entry?.map(n=>n.resource)??[]}async conditionalCreate(t,r,n){if(r.resourceType!==t.resourceType)throw new E.OperationOutcomeError((0,E.badRequest)("Search type must match resource type for conditional update"));return r.count=2,r.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(r);if(i.length===1){let s=i[0];if(!n?.assignedId&&t.id&&t.id!==s.id)throw new E.OperationOutcomeError((0,E.badRequest)("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:i[0],outcome:E.allOk}}else if(i.length>1)throw new E.OperationOutcomeError(E.multipleMatches);return{resource:await this.createResource(t,n),outcome:E.created}},{serializable:!0})}async conditionalUpdate(t,r,n){if(r.resourceType!==t.resourceType)throw new E.OperationOutcomeError((0,E.badRequest)("Search type must match resource type for conditional update"));return r.count=2,r.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(r);if(i.length===0){if(t.id&&!n?.assignedId)throw new E.OperationOutcomeError((0,E.badRequest)("Cannot perform create as update with client-assigned ID",t.resourceType+".id"));return{resource:await this.createResource(t,n),outcome:E.created}}else if(i.length>1)throw new E.OperationOutcomeError(E.multipleMatches);let o=i[0];if(t.id&&t.id!==o.id)throw new E.OperationOutcomeError((0,E.badRequest)("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:await this.updateResource({...t,id:o.id},n),outcome:E.allOk}},{serializable:!0})}async conditionalDelete(t){t.count=2,t.sortRules=void 0,await this.withTransaction(async()=>{let r=await this.searchResources(t);if(r.length>1)throw new E.OperationOutcomeError(E.multipleMatches);if(!r.length)return;let n=r[0];await this.deleteResource(n.resourceType,n.id)},{serializable:!0})}async conditionalPatch(t,r){return t.count=2,t.sortRules=void 0,this.withTransaction(async()=>{let n=await this.searchResources(t);if(n.length>1)throw new E.OperationOutcomeError(E.multipleMatches);if(!n.length)throw new E.OperationOutcomeError(E.notFound);let i=n[0];return this.patchResource(i.resourceType,i.id,r)},{serializable:!0})}},Hn=class extends Or{constructor(){super(),this.resources=new Map,this.history=new Map}clear(){this.resources.clear(),this.history.clear()}setMode(t){}async createResource(t){let r=JSON.parse((0,E.stringify)(t));r.id||(r.id=this.generateId()),r.meta||(r.meta={}),r.meta.versionId||(r.meta.versionId=(0,E.generateId)()),r.meta.lastUpdated||(r.meta.lastUpdated=new Date().toISOString());let{resourceType:n,id:i}=r,o=this.resources.get(n);o||(o=new Map,this.resources.set(n,o)),o.set(i,r);let s=this.history.get(n);s||(s=new Map,this.history.set(n,s));let a=s.get(i);return a||(a=[],s.set(i,a)),a.push(r),(0,E.deepClone)(r)}generateId(){return(0,E.generateId)()}updateResource(t,r){if(!t.id)throw new E.OperationOutcomeError((0,E.badRequest)("Missing id"));if(r?.ifMatch){let i=r.ifMatch,o=this.resources.get(t.resourceType)?.get(t.id);if(!o)throw new E.OperationOutcomeError(E.notFound);if(o.meta?.versionId!==i)throw new E.OperationOutcomeError(E.preconditionFailed)}let n=(0,E.deepClone)(t);return n.meta&&(n.meta.versionId&&delete n.meta.versionId,n.meta.lastUpdated&&delete n.meta.lastUpdated),this.createResource(n)}async patchResource(t,r,n){let i=await this.readResource(t,r);try{let o=(0,Xi.applyPatch)(i,n).filter(Boolean);if(o.length>0)throw new E.OperationOutcomeError((0,E.badRequest)(o.map(s=>s.message).join(`
54
- `)))}catch(o){throw new E.OperationOutcomeError((0,E.normalizeOperationOutcome)(o))}return this.updateResource(i)}async readResource(t,r){let n=this.resources.get(t)?.get(r);if(!n)throw new E.OperationOutcomeError(E.notFound);return(0,E.deepClone)(n)}async readReference(t){let r=t.reference?.split("/");if(!r||r.length!==2)throw new E.OperationOutcomeError((0,E.badRequest)("Invalid reference"));return this.readResource(r[0],r[1])}async readReferences(t){return Promise.all(t.map(r=>this.readReference(r)))}async readHistory(t,r){await this.readResource(t,r);let n=(this.history.get(t)?.get(r)??[]).reverse().map(i=>({resource:(0,E.deepClone)(i)}));return{resourceType:"Bundle",type:"history",...n.length?{entry:n}:void 0}}async readVersion(t,r,n){await this.readResource(t,r);let i=this.history.get(t)?.get(r)?.find(o=>o.meta?.versionId===n);if(!i)throw new E.OperationOutcomeError(E.notFound);return(0,E.deepClone)(i)}async search(t){let{resourceType:r}=t,n=this.resources.get(r)??new Map,i=[];for(let s of n.values())(0,E.matchesSearchRequest)(s,t)&&i.push(s);let o=i.map(s=>({resource:(0,E.deepClone)(s)}));if(t.sortRules)for(let s of t.sortRules)o=o.sort((a,c)=>sa(a.resource,c.resource,s));return t.offset!==void 0&&(o=o.slice(t.offset)),t.count!==void 0&&(o=o.slice(0,t.count)),{resourceType:"Bundle",type:"searchset",entry:o.length?o:void 0,total:i.length}}async searchByReference(t,r,n){t.filters??=[];let i={};for(let o of n){t.filters.push({code:r,operator:E.Operator.EQUALS,value:o});let s=await this.search(t);i[o]=[];for(let a of s.entry??[])a.resource&&i[o].push(a.resource);t.filters.pop()}return i}async deleteResource(t,r){if(!this.resources.get(t)?.get(r))throw new E.OperationOutcomeError(E.notFound);this.resources.get(t)?.delete(r)}withTransaction(t){return t(void 0)}},sa=(e,t,r)=>{let i=E.globalSchema.types[e.resourceType]?.searchParams?.[r.code]?.expression;if(!i)return 0;let o=JSON.stringify((0,E.evalFhirPath)(i,e)),s=JSON.stringify((0,E.evalFhirPath)(i,t));return o.localeCompare(s)*(r.descending?-1:1)};var Ge=require("@medplum/core");var me=require("@medplum/core"),Ki=si(require("dataloader"));var Sr={base64Binary:N,boolean:B,canonical:N,code:N,date:N,dateTime:N,decimal:le,id:ve,instant:N,integer:le,markdown:N,number:le,oid:N,positiveInt:le,string:N,time:N,unsignedInt:le,uri:N,url:N,uuid:N,xhtml:N,"http://hl7.org/fhirpath/System.Boolean":B,"http://hl7.org/fhirpath/System.Date":N,"http://hl7.org/fhirpath/System.DateTime":N,"http://hl7.org/fhirpath/System.Decimal":le,"http://hl7.org/fhirpath/System.Integer":le,"http://hl7.org/fhirpath/System.String":N,"http://hl7.org/fhirpath/System.Time":N};function Wi(e,t,r){let n;if(t){let o=r._reference;delete r._reference,n={code:o,operator:me.Operator.EQUALS,value:(0,me.getReferenceString)(t)}}return r=Object.fromEntries(Object.entries(r).map(([o,s])=>[aa(o),s])),{searchRequest:(0,me.parseSearchRequest)(e,r),referenceFilter:n}}function Zi(e,t){let r=e.filters||[];e.filters=[t,...r]}function eo(e,t,r){let{searchRequest:n,referenceFilter:i}=Wi(e,t,r);return i&&Zi(n,i),n}function Jn(e,t){e.count=Math.min(e.count??me.DEFAULT_SEARCH_COUNT,t??me.DEFAULT_MAX_SEARCH_COUNT)}function aa(e){return e.startsWith("_")?e:e.replaceAll("_","-")}function zn(e){return e.replaceAll("-","_")}function ca(e){return JSON.stringify(e,(r,n)=>n&&typeof n=="object"&&!Array.isArray(n)?Object.keys(n).sort((i,o)=>i.localeCompare(o)).reduce((i,o)=>(i[o]=n[o],i),{}):n)}async function _r(e,t,r,n){if(r.searchCount++,r.config?.graphqlMaxSearches&&r.searchCount>r.config.graphqlMaxSearches)throw new Error("Maximum number of searches exceeded");let i=n.fieldName,o=i.substring(0,i.length-4),{searchRequest:s,referenceFilter:a}=Wi(o,e,t);Jn(s,r.config?.graphqlMaxSearches);let c=r.config?.graphqlBatchedSearchSize??0;if(c===0||!a)return a&&Zi(s,a),(await r.repo.search(s)).entry?.map(m=>m.resource);let p=ca(s);return(r.searchDataLoaders[p]??=ua(r.repo,s,c)).load(a)}function ua(e,t,r){return new Ki.default(async n=>{let i=await e.searchByReference(t,n[0].code,n.map(o=>o.value));return n.map(o=>i[o.value])},{maxBatchSize:r})}function wt(e){let t={_count:{type:pe,description:"Specify how many elements to return from a repeating list."},_offset:{type:pe,description:"Specify the offset to start at for a repeating element."},_sort:{type:N,description:"Specify the sort order by comma-separated list of sort rules in priority order."},_id:{type:N,description:"Select resources based on the logical id of the resource."},_lastUpdated:{type:N,description:"Select resources based on the last time they were changed."},_filter:{type:N,description:" The _filter parameter provides a syntax for expressing a set of query expressions on the underlying resources."},_cursor:{type:N,description:"The _cursor parameter is used to retrieve the next page of results from a previous search."}},r=(0,me.getSearchParameters)(e);if(r)for(let[n,i]of Object.entries(r))t[zn(n)]={type:N,description:i.description};return t}function Xn(e,t){return e.fieldNodes.some(r=>r.selectionSet?.selections.some(n=>n.kind===u.FIELD&&n.name.value===t))}function to(e){return{resourceType:"OperationOutcome",issue:e.map(t=>({severity:"error",code:"invalid",details:{text:t.message}}))}}var ro={...Sr};function Dt(e,t){let r=ro[e];return r||(r=pa(e,t),ro[e]=r),r}function pa(e,t){let r=(0,Ge.getDataType)(e);return new Ae({name:e+t,description:r.description,fields:()=>la(e,t)})}function la(e,t){let r={};if((0,Ge.isResourceType)(e)){let n={description:"The type of resource",type:N};r.resourceType=n}return fa(e,r,t),r}function fa(e,t,r){let n=(0,Ge.getDataType)(e);for(let[i,o]of Object.entries(n.elements))for(let s of o.type)da(t,i,o,s,r)}function da(e,t,r,n,i){let o=n.code;if(o==="Resource")return;(o==="Element"||o==="BackboneElement")&&(o=r.type[0].code);let s={description:r.description,type:Dt(o,i)};r.max>1&&(s.type=new P(new R(Dt(o,i)))),r.min>0&&!t.endsWith("[x]")&&(s.type=new R(s.type));let a=t.split(".").pop().replace("[x]",(0,Ge.capitalize)(n.code));e[a]=s}var F=require("@medplum/core");var xr={...Sr};function je(e){let t=xr[e];return t||(t=Kn(e),xr[e]=t),t}function Kn(e){if(e==="ResourceList")return new De({name:"ResourceList",types:()=>(0,F.getResourceTypes)().map(je).filter(r=>!!r),resolveType:ba});let t=(0,F.getDataType)(e);return new Y({name:e,description:t.description,fields:()=>ma(e)})}function ma(e){let t={};return ha(e,t),Ea(e,t),t}function ha(e,t){let r=(0,F.getDataType)(e);(0,F.isResourceTypeSchema)(r)&&(t.resourceType={type:new R(N),description:"Resource Type"}),e==="Reference"&&(t.resource={description:"Reference",type:je("ResourceList"),resolve:Ia});for(let[n,i]of Object.entries(r.elements))for(let o of i.type)ya(t,n,i,o)}function ya(e,t,r,n){let i=n.code;(i==="Element"||i==="BackboneElement")&&(i=r.type[0].code),i==="Resource"&&(i="ResourceList");let o={description:r.description,type:va(r,i,t),resolve:Na};r.max>1&&(o.args=Ta(i));let s=t.split(".").pop().replace("[x]",(0,F.capitalize)(n.code));e[s]=o}function Ta(e){let t={_count:{type:pe,description:"Specify how many elements to return from a repeating list."},_offset:{type:pe,description:"Specify the offset to start at for a repeating element."}};if(!(0,F.isLowerCase)(e.charAt(0))){t.fhirpath={type:N,description:"A FHIRPath statement selecting which of the subnodes is to be included"};let r=(0,F.tryGetDataType)(e);if(r?.elements)for(let[n,i]of Object.entries(r.elements))for(let o of i.type)ga(t,n,i,o)}return t}function ga(e,t,r,n){let i=n.code,o=t.replace("[x]",(0,F.capitalize)(i));switch(i){case"canonical":case"code":case"id":case"oid":case"string":case"uri":case"url":case"uuid":case"http://hl7.org/fhirpath/System.String":e[o]={type:N,description:r.description};break}}function Ea(e,t){for(let r of(0,F.getResourceTypes)()){let n=je(r),i=(0,F.getSearchParameters)(r),o={},s=0;if(i)for(let[a,c]of Object.entries(i))c.target?.includes(e)&&(o[zn(a)]={value:a},s++);if(s>0){let a=new be({name:e+"_"+r+"_reference",values:o}),c=wt(r);c._reference={type:new R(a),description:`Specify which property to use for reverse lookup for ${r}`},t[r+"List"]={type:new P(n),args:c,resolve:_r}}}}function va(e,t,r){let n=je(t);return e.max>1&&(n=new P(new R(n))),e.min!==0&&!r.endsWith("[x]")&&(n=new R(n)),n}async function Na(e,t,r,n){let i=e?.[n.fieldName];if(!t||!i)return i;let{_offset:o,_count:s,fhirpath:a,...c}=t,p=i;for(let[l,d]of Object.entries(c))p=p.filter(m=>m[l]===d);return a&&(p=p.filter(l=>(0,F.toJsBoolean)((0,F.evalFhirPathTyped)(a,[(0,F.toTypedValue)(l)])))),o&&(p=p.slice(o)),s&&(p=p.slice(0,s)),p}async function Ia(e,t,r){if((0,F.isReference)(e))try{return await r.dataLoader.load(e)}catch(n){throw new F.OperationOutcomeError((0,F.normalizeOperationOutcome)(n),n)}}function ba(e){let t=e?.resourceType;if(t)return je(t).name}var Ra=new k.LRUCache,Wn;async function io(e,t,r,n){let{query:i,operationName:o,variables:s}=e.body;if(!i)return[(0,k.badRequest)("Must provide query.")];let a;try{a=Gt(i)}catch{return[(0,k.badRequest)("GraphQL syntax error.")]}let c=_a(),p=[...ot,Ua(r,e.config?.graphqlMaxDepth),Va(r)],l=Er(c,a,p);if(l.length>0)return[to(l)];let d=Oa(i);if(d&&!r.options?.introspectionEnabled)return[k.forbidden];!n?.batch&&!Sa(i)&&t.setMode(Lt.READER);let m=new no.default(g=>t.readReferences(g)),T=d&&Ra.get(i);if(!T){let g={repo:t,config:e.config,dataLoader:m,searchCount:0,searchDataLoaders:Object.create(null)};T=await Rr({schema:c,document:a,contextValue:g,operationName:o,variableValues:s})}return[k.allOk,T,{contentType:k.ContentType.JSON}]}function Oa(e){return e.includes("query IntrospectionQuery")||e.includes("__schema")}function Sa(e){return e.includes("mutation")}function _a(){return Wn||(Wn=xa()),Wn}function xa(){for(let r of(0,k.getResourceTypes)())xr[r]=Kn(r);let e={},t={};for(let r of(0,k.getResourceTypes)()){let n=je(r);e[r]={type:n,args:{id:{type:new R(ve),description:r+" ID"}},resolve:Fa},e[r+"List"]={type:new P(n),args:wt(r),resolve:_r},e[r+"Connection"]={type:Da(r,n),args:wt(r),resolve:Aa},t[r+"Create"]={type:n,args:La(r),resolve:ka},t[r+"Update"]={type:n,args:wa(r),resolve:Ca},t[r+"Delete"]={type:n,args:{id:{type:new R(ve),description:r+" ID"}},resolve:Ma}}return new Me({query:new Y({name:"QueryType",fields:e}),mutation:new Y({name:"MutationType",fields:t})})}function La(e){return{res:{type:new R(Dt(e,"Create")),description:e+" Create"}}}function wa(e){return{id:{type:new R(ve),description:e+" ID"},res:{type:new R(Dt(e,"Update")),description:e+" Update"}}}function Da(e,t){return new Y({name:e+"Connection",fields:{count:{type:pe},offset:{type:pe},pageSize:{type:pe},first:{type:N},previous:{type:N},next:{type:N},last:{type:N},edges:{type:new P(new Y({name:e+"ConnectionEdge",fields:{mode:{type:N},score:{type:le},resource:{type:t}}}))}}})}async function Aa(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-10),s=eo(o,e,t);Xn(n,"count")&&(s.total="accurate"),Xn(n,"edges")||(s.count=0),Jn(s,r.config?.graphqlMaxSearches);let a=await r.repo.search(s);return{count:a.total,offset:s.offset??0,pageSize:s.count??k.DEFAULT_SEARCH_COUNT,edges:a.entry?.map(c=>({mode:c.search?.mode,score:c.search?.score,resource:c.resource})),next:Qa(a)}}async function Fa(e,t,r,n){try{return await r.dataLoader.load({reference:`${n.fieldName}/${t.id}`})}catch(i){throw new k.OperationOutcomeError((0,k.normalizeOperationOutcome)(i),i)}}async function ka(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-6),s=t.res;if(s.resourceType!==o)throw new k.OperationOutcomeError((0,k.badRequest)("Invalid resourceType"));return r.repo.createResource((0,k.deepClone)(s))}async function Ca(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-6),s=t.res,a=t.id;if(s.resourceType!==o)throw new k.OperationOutcomeError((0,k.badRequest)("Invalid resourceType"));if(a!==s.id)throw new k.OperationOutcomeError((0,k.badRequest)("Invalid ID"));return r.repo.updateResource((0,k.deepClone)(s))}async function Ma(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-6);await r.repo.deleteResource(o,t.id)}var Pa=12,Ua=(e,t=Pa)=>r=>new Zn(r,e,t),Zn=class{constructor(t,r,n){this.context=t,this.router=r,this.fragmentDepths=Object.create(null),this.maxDepth=n}OperationDefinition(t){let r=this.getDepth(...t.selectionSet.selections);r.depth>this.maxDepth&&this.router.log("warn","Query max depth too high",{depth:r.depth,limit:this.maxDepth,query:t.loc?.source?.body})}getDepth(...t){let r={depth:-1};for(let n of t){let i={depth:0};if(n.kind===u.FIELD)n.selectionSet?.selections?(i=this.getDepth(...n.selectionSet.selections),i.depth+=1):i={depth:0,node:n};else if(n.kind===u.FRAGMENT_SPREAD){let o=n.name.value,s=this.context.getFragment(o),a=this.fragmentDepths[o];a?i=a:s&&(i=this.getDepth(...s.selectionSet.selections),this.fragmentDepths[o]=i)}else n.kind===u.INLINE_FRAGMENT&&(i=this.getDepth(...n.selectionSet.selections));if(i.depth>this.maxDepth)return i;i.depth>r.depth&&(r=i)}return r}},$a=1e4,Va=(e,t)=>r=>new ei(r,e,t),ei=class{constructor(t,r,n){this.context=t,this.maxCost=n?.maxCost??$a,this.debug=n?.debug??!1,this.router=r,this.fragmentCosts=Object.create(null)}OperationDefinition(t){let r=0;for(let n of t.selectionSet.selections){let i=performance.now(),o=this.calculateCost(n);r+=o,this.log(n.kind,"node has final cost",o,"(",performance.now()-i,"ms)"),r>this.maxCost&&this.router.log("warn","GraphQL query too complex",{cost:r,limit:this.maxCost,query:t.loc?.source?.body})}}calculateCost(...t){let r=0;for(let n of t){if(n.kind===u.FIELD&&n.selectionSet){let i=0,o=1;Ga(n)?(this.log("Found search field",n.name.value),i=8,o=this.getCount(n.arguments)??20):ja(n)&&(this.log("Found linked resource"),i=1,o=2);let s=i+o*this.calculateCost(...n.selectionSet.selections);s&&this.log("Field",n.name.value,"costs",s),r+=s}else if(n.kind===u.FRAGMENT_SPREAD){let i=n.name.value,o=this.context.getFragment(i),s=this.fragmentCosts[i];if(s!==void 0)this.log("Fragment",i,"costs",s,"(cached)"),r+=s;else if(o){let a=this.calculateCost(...o.selectionSet.selections);this.fragmentCosts[i]=a,this.log("Fragment",i,"costs",a),r+=a}}else if(n.kind===u.INLINE_FRAGMENT){let i=this.calculateCost(...n.selectionSet.selections);this.log("Inline fragment on",n.typeCondition?.name.value,"costs",i),r+=i}if(r>this.maxCost)return r}return r}getCount(t){let r=t?.find(n=>n.name.value==="_count");if(r?.value.kind===u.INT)return parseInt(r.value.value,10)}log(...t){this.debug&&console.log(...t)}};function Ga(e){return e.name.value.endsWith("List")}function ja(e){return e.name.value==="resource"}function Qa(e){let t=e.link?.find(r=>r.relation==="next")?.url;if(t)return new URL(t).searchParams.get("_cursor")||void 0}var At=class{constructor(){this.routes=[]}add(t,r,n,i){let o=r.split("/").filter(s=>!!s).map(s=>s.startsWith(":")?{value:s.substring(1),param:!0}:{value:s});this.routes.push({method:t,path:o,handler:n,data:i})}find(t,r){let n=r.indexOf("?"),i=n>-1,o=r.substring(0,i?n:r.length).split("/").filter(Boolean),s,a=-1;for(let c of this.routes){let p=Ba(c,t,o);p>a&&(s=c,a=p)}if(s)return{handler:s.handler,path:o.join("/"),params:qa(s,o),query:i?Ya(r):void 0,data:s.data}}};function Ba(e,t,r){if(t!==e.method||r.length!==e.path.length)return-1;let n=0;for(let i=0;i<r.length;i++)if(!e.path[i].param){if(r[i]!==e.path[i].value)return-1;n++}return n}function qa(e,t){let r=Object.create(null);for(let n=0;n<t.length;n++)e.path[n].param&&(r[e.path[n].value]=t[n]);return r}function Ya(e){let t=new URL(e,"https://example.com/"),r=Object.create(null),n=t.searchParams;for(let i of n.keys()){let o=n.getAll(i);r[i]=o.length===1?o[0]:o}return r}async function Ha(e,t,r){let n=e.body;if(n.resourceType!=="Bundle")return[(0,S.badRequest)("Not a bundle")];let i=await kt(e,t,r,n);return[S.allOk,i]}async function Ja(e,t,r,n){ri(e,t,n);let{resourceType:i}=e.params,o=await t.search((0,S.parseSearchRequest)(i,e.query));return[S.allOk,o]}async function za(e,t,r,n){ri(e,t,n);let i=(0,S.parseSearchRequest)("MultipleTypes",e.query);if(!i.types||i.types.length===0)return[(0,S.badRequest)("No types specified")];let o=await t.search(i);return[S.allOk,o]}async function Xa(e,t,r,n){ri(e,t,n);let{resourceType:i}=e.params,o=e.body,s=await t.search((0,S.parseSearchRequest)(i,o));return[S.allOk,s]}function ri(e,t,r){!r?.batch&&e.config?.searchOnReader&&t.setMode(Lt.READER)}async function Ka(e,t,r,n){let{resourceType:i}=e.params,o=e.body,s=!!n?.batch;if(e.query?._account&&typeof e.query._account=="string"&&(o.meta=o.meta||{},o.meta.account={reference:e.query._account}),e.headers?.["if-none-exist"]){let a=(0,S.singularize)(e.headers["if-none-exist"]),c=await t.conditionalCreate(o,(0,S.parseSearchRequest)(`${i}?${a}`),{assignedId:s});return[c.outcome,c.resource]}return so(i,o,t,{assignedId:s})}async function so(e,t,r,n){if(t.resourceType!==e)return[(0,S.badRequest)(`Incorrect resource type: expected ${e}, but found ${t.resourceType||"<EMPTY>"}`)];let i=await r.createResource(t,n);return[S.created,i]}async function Wa(e,t){let{resourceType:r,id:n}=e.params,i=await t.readResource(r,n);return[S.allOk,i]}async function Za(e,t){let{resourceType:r,id:n}=e.params,i=oo(e.query,"_offset"),o=oo(e.query,"_count"),s=await t.readHistory(r,n,{offset:i,limit:o});return[S.allOk,s]}async function ec(e,t){let{resourceType:r,id:n,vid:i}=e.params,o=await t.readVersion(r,n,i);return[S.allOk,o]}async function tc(e,t){let{resourceType:r,id:n}=e.params,i=e.body;return ao(r,n,i,t,{ifMatch:ac(e.headers?.["if-match"])})}async function ao(e,t,r,n,i){if(r.resourceType!==e)return[(0,S.badRequest)("Incorrect resource type")];if(r.id!==t)return[(0,S.badRequest)("Incorrect resource ID")];let o=await n.updateResource(r,i);return[S.allOk,o]}async function rc(e,t,r,n){let{resourceType:i}=e.params,o=e.body,s=(0,S.parseSearchRequest)(i,e.query),a=await t.conditionalUpdate(o,s,{assignedId:n?.batch});return[a.outcome,a.resource]}async function nc(e,t){let{resourceType:r,id:n}=e.params;return await t.deleteResource(r,n),[S.allOk]}async function ic(e,t){let{resourceType:r}=e.params,n=(0,S.parseSearchRequest)(r,e.query);return await t.conditionalDelete(n),[S.allOk]}async function oc(e,t){let{resourceType:r,id:n}=e.params,i=e.body;if(!i)return[(0,S.badRequest)("Empty patch body")];if(!Array.isArray(i))return[(0,S.badRequest)("Patch body must be an array")];let o=await t.patchResource(r,n,i);return[S.allOk,o]}async function sc(e,t){let{resourceType:r}=e.params,n=e.body;if(!n)return[(0,S.badRequest)("Empty patch body")];if(!Array.isArray(n))return[(0,S.badRequest)("Patch body must be an array")];let i=(0,S.parseSearchRequest)(r,e.query),o=await t.conditionalPatch(i,n);return[S.allOk,o]}var ti=class extends S.EventTarget{constructor(r={}){super();this.router=new At;this.options=r,this.router.add("GET","",za,{interaction:"search-system"}),this.router.add("POST","",Ha,{interaction:"batch"}),this.router.add("GET",":resourceType",Ja,{interaction:"search-type"}),this.router.add("POST",":resourceType/_search",Xa,{interaction:"search-type"}),this.router.add("POST",":resourceType",Ka,{interaction:"create"}),this.router.add("GET",":resourceType/:id",Wa,{interaction:"read"}),this.router.add("GET",":resourceType/:id/_history",Za,{interaction:"history-instance"}),this.router.add("GET",":resourceType/:id/_history/:vid",ec,{interaction:"vread"}),this.router.add("PUT",":resourceType/:id",tc,{interaction:"update"}),this.router.add("PUT",":resourceType",rc,{interaction:"update"}),this.router.add("DELETE",":resourceType/:id",nc,{interaction:"delete"}),this.router.add("DELETE",":resourceType",ic,{interaction:"delete"}),this.router.add("PATCH",":resourceType/:id",oc,{interaction:"patch"}),this.router.add("PATCH",":resourceType",sc,{interaction:"patch"}),this.router.add("POST","$graphql",io,{interaction:"operation"})}add(r,n,i,o){this.router.add(r,n,i,{interaction:o??"operation"})}find(r,n){return this.router.find(r,n)}async handleRequest(r,n){let i=r.url;if(r.pathname)throw new S.OperationOutcomeError((0,S.badRequest)("FhirRequest must specify url instead of pathname"));let o=this.find(r.method,i);if(!o)return[S.notFound];let{handler:s,path:a,params:c,query:p}=o;r.params=c,r.pathname=a,p&&(r.query=p);try{return await s(r,n,this)}catch(l){return[(0,S.normalizeOperationOutcome)(l)]}}log(r,n,i){let o={type:r,message:n,data:i};this.dispatchEvent(o)}};function ac(e){if(!e)return;let t=/"([^"]+)"/.exec(e);return t?t[1]:void 0}function oo(e,t){let r=e[t],n;return Array.isArray(r)?n=r[r.length-1]:n=r,n?parseInt(n,10):void 0}function cc(e,t,r){return{method:e,url:t,pathname:"",query:{},params:{},body:r}}0&&(module.exports={FhirRepository,FhirRouter,MemoryRepository,RepositoryMode,Router,createResourceImpl,makeSimpleRequest,processBatch,updateResourceImpl});
53
+ `))}var Kr=class{constructor(t){this._errors=[],this.schema=t}reportError(t,r){let n=Array.isArray(r)?r.filter(Boolean):r;this._errors.push(new f(t,{nodes:n}))}getErrors(){return this._errors}};function qo(e){let t=e.schema,r=t.getQueryType();if(!r)e.reportError("Query root type must be provided.",t.astNode);else if(!x(r)){var n;e.reportError(`Query root type must be Object type, it cannot be ${y(r)}.`,(n=Xr(t,U.QUERY))!==null&&n!==void 0?n:r.astNode)}let i=t.getMutationType();if(i&&!x(i)){var o;e.reportError(`Mutation root type must be Object type if provided, it cannot be ${y(i)}.`,(o=Xr(t,U.MUTATION))!==null&&o!==void 0?o:i.astNode)}let s=t.getSubscriptionType();if(s&&!x(s)){var a;e.reportError(`Subscription root type must be Object type if provided, it cannot be ${y(s)}.`,(a=Xr(t,U.SUBSCRIPTION))!==null&&a!==void 0?a:s.astNode)}}function Xr(e,t){var r;return(r=[e.astNode,...e.extensionASTNodes].flatMap(n=>{var i;return(i=n?.operationTypes)!==null&&i!==void 0?i:[]}).find(n=>n.operation===t))===null||r===void 0?void 0:r.type}function Yo(e){for(let r of e.schema.getDirectives()){if(!vt(r)){e.reportError(`Expected directive but got: ${y(r)}.`,r?.astNode);continue}Pe(e,r),r.locations.length===0&&e.reportError(`Directive @${r.name} must include 1 or more locations.`,r.astNode);for(let n of r.args)if(Pe(e,n),K(n.type)||e.reportError(`The type of @${r.name}(${n.name}:) must be Input Type but got: ${y(n.type)}.`,n.astNode),Oe(n)&&n.deprecationReason!=null){var t;e.reportError(`Required argument @${r.name}(${n.name}:) cannot be deprecated.`,[Wr(n.astNode),(t=n.astNode)===null||t===void 0?void 0:t.type])}}}function Pe(e,t){t.name.startsWith("__")&&e.reportError(`Name "${t.name}" must not begin with "__", which is reserved by GraphQL introspection.`,t.astNode)}function Ho(e){let t=es(e),r=e.schema.getTypeMap();for(let n of Object.values(r)){if(!Yt(n)){e.reportError(`Expected GraphQL named type but got: ${y(n)}.`,n.astNode);continue}Jr(n)||Pe(e,n),x(n)||w(n)?(Li(e,n),wi(e,n)):X(n)?Xo(e,n):Q(n)?Ko(e,n):D(n)&&(Wo(e,n),t(n))}}function Li(e,t){let r=Object.values(t.getFields());r.length===0&&e.reportError(`Type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let s of r){if(Pe(e,s),!Re(s.type)){var n;e.reportError(`The type of ${t.name}.${s.name} must be Output Type but got: ${y(s.type)}.`,(n=s.astNode)===null||n===void 0?void 0:n.type)}for(let a of s.args){let c=a.name;if(Pe(e,a),!K(a.type)){var i;e.reportError(`The type of ${t.name}.${s.name}(${c}:) must be Input Type but got: ${y(a.type)}.`,(i=a.astNode)===null||i===void 0?void 0:i.type)}if(Oe(a)&&a.deprecationReason!=null){var o;e.reportError(`Required argument ${t.name}.${s.name}(${c}:) cannot be deprecated.`,[Wr(a.astNode),(o=a.astNode)===null||o===void 0?void 0:o.type])}}}}function wi(e,t){let r=Object.create(null);for(let n of t.getInterfaces()){if(!w(n)){e.reportError(`Type ${y(t)} must only implement Interface types, it cannot implement ${y(n)}.`,bt(t,n));continue}if(t===n){e.reportError(`Type ${t.name} cannot implement itself because it would create a circular reference.`,bt(t,n));continue}if(r[n.name]){e.reportError(`Type ${t.name} can only implement ${n.name} once.`,bt(t,n));continue}r[n.name]=!0,zo(e,t,n),Jo(e,t,n)}}function Jo(e,t,r){let n=t.getFields();for(let c of Object.values(r.getFields())){let p=c.name,l=n[p];if(!l){e.reportError(`Interface field ${r.name}.${p} expected but ${t.name} does not provide it.`,[c.astNode,t.astNode,...t.extensionASTNodes]);continue}if(!_e(e.schema,l.type,c.type)){var i,o;e.reportError(`Interface field ${r.name}.${p} expects type ${y(c.type)} but ${t.name}.${p} is type ${y(l.type)}.`,[(i=c.astNode)===null||i===void 0?void 0:i.type,(o=l.astNode)===null||o===void 0?void 0:o.type])}for(let d of c.args){let m=d.name,T=l.args.find(g=>g.name===m);if(!T){e.reportError(`Interface field argument ${r.name}.${p}(${m}:) expected but ${t.name}.${p} does not provide it.`,[d.astNode,l.astNode]);continue}if(!zt(d.type,T.type)){var s,a;e.reportError(`Interface field argument ${r.name}.${p}(${m}:) expects type ${y(d.type)} but ${t.name}.${p}(${m}:) is type ${y(T.type)}.`,[(s=d.astNode)===null||s===void 0?void 0:s.type,(a=T.astNode)===null||a===void 0?void 0:a.type])}}for(let d of l.args){let m=d.name;!c.args.find(g=>g.name===m)&&Oe(d)&&e.reportError(`Object field ${t.name}.${p} includes required argument ${m} that is missing from the Interface field ${r.name}.${p}.`,[d.astNode,c.astNode])}}}function zo(e,t,r){let n=t.getInterfaces();for(let i of r.getInterfaces())n.includes(i)||e.reportError(i===t?`Type ${t.name} cannot implement ${r.name} because it would create a circular reference.`:`Type ${t.name} must implement ${i.name} because it is implemented by ${r.name}.`,[...bt(r,i),...bt(t,r)])}function Xo(e,t){let r=t.getTypes();r.length===0&&e.reportError(`Union type ${t.name} must define one or more member types.`,[t.astNode,...t.extensionASTNodes]);let n=Object.create(null);for(let i of r){if(n[i.name]){e.reportError(`Union type ${t.name} can only include type ${i.name} once.`,Di(t,i.name));continue}n[i.name]=!0,x(i)||e.reportError(`Union type ${t.name} can only include Object types, it cannot include ${y(i)}.`,Di(t,String(i)))}}function Ko(e,t){let r=t.getValues();r.length===0&&e.reportError(`Enum type ${t.name} must define one or more values.`,[t.astNode,...t.extensionASTNodes]);for(let n of r)Pe(e,n)}function Wo(e,t){let r=Object.values(t.getFields());r.length===0&&e.reportError(`Input Object type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let o of r){if(Pe(e,o),!K(o.type)){var n;e.reportError(`The type of ${t.name}.${o.name} must be Input Type but got: ${y(o.type)}.`,(n=o.astNode)===null||n===void 0?void 0:n.type)}if(et(o)&&o.deprecationReason!=null){var i;e.reportError(`Required input field ${t.name}.${o.name} cannot be deprecated.`,[Wr(o.astNode),(i=o.astNode)===null||i===void 0?void 0:i.type])}t.isOneOf&&Zo(t,o,e)}}function Zo(e,t,r){if(O(t.type)){var n;r.reportError(`OneOf input field ${e.name}.${t.name} must be nullable.`,(n=t.astNode)===null||n===void 0?void 0:n.type)}t.defaultValue!==void 0&&r.reportError(`OneOf input field ${e.name}.${t.name} cannot have a default value.`,t.astNode)}function es(e){let t=Object.create(null),r=[],n=Object.create(null);return i;function i(o){if(t[o.name])return;t[o.name]=!0,n[o.name]=r.length;let s=Object.values(o.getFields());for(let a of s)if(O(a.type)&&D(a.type.ofType)){let c=a.type.ofType,p=n[c.name];if(r.push(a),p===void 0)i(c);else{let l=r.slice(p),d=l.map(m=>m.name).join(".");e.reportError(`Cannot reference Input Object "${c.name}" within itself through a series of non-null fields: "${d}".`,l.map(m=>m.astNode))}r.pop()}n[o.name]=void 0}}function bt(e,t){let{astNode:r,extensionASTNodes:n}=e;return(r!=null?[r,...n]:n).flatMap(o=>{var s;return(s=o.interfaces)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t.name)}function Di(e,t){let{astNode:r,extensionASTNodes:n}=e;return(r!=null?[r,...n]:n).flatMap(o=>{var s;return(s=o.types)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t)}function Wr(e){var t;return e==null||(t=e.directives)===null||t===void 0?void 0:t.find(r=>r.name.value===Zt.name)}function V(e,t){switch(t.kind){case u.LIST_TYPE:{let r=V(e,t.type);return r&&new P(r)}case u.NON_NULL_TYPE:{let r=V(e,t.type);return r&&new R(r)}case u.NAMED_TYPE:return e.getType(t.name.value)}}var nt=class{constructor(t,r,n){this._schema=t,this._typeStack=[],this._parentTypeStack=[],this._inputTypeStack=[],this._fieldDefStack=[],this._defaultValueStack=[],this._directive=null,this._argument=null,this._enumValue=null,this._getFieldDef=n??ts,r&&(K(r)&&this._inputTypeStack.push(r),ue(r)&&this._parentTypeStack.push(r),Re(r)&&this._typeStack.push(r))}get[Symbol.toStringTag](){return"TypeInfo"}getType(){if(this._typeStack.length>0)return this._typeStack[this._typeStack.length-1]}getParentType(){if(this._parentTypeStack.length>0)return this._parentTypeStack[this._parentTypeStack.length-1]}getInputType(){if(this._inputTypeStack.length>0)return this._inputTypeStack[this._inputTypeStack.length-1]}getParentInputType(){if(this._inputTypeStack.length>1)return this._inputTypeStack[this._inputTypeStack.length-2]}getFieldDef(){if(this._fieldDefStack.length>0)return this._fieldDefStack[this._fieldDefStack.length-1]}getDefaultValue(){if(this._defaultValueStack.length>0)return this._defaultValueStack[this._defaultValueStack.length-1]}getDirective(){return this._directive}getArgument(){return this._argument}getEnumValue(){return this._enumValue}enter(t){let r=this._schema;switch(t.kind){case u.SELECTION_SET:{let i=z(this.getType());this._parentTypeStack.push(ue(i)?i:void 0);break}case u.FIELD:{let i=this.getParentType(),o,s;i&&(o=this._getFieldDef(r,i,t),o&&(s=o.type)),this._fieldDefStack.push(o),this._typeStack.push(Re(s)?s:void 0);break}case u.DIRECTIVE:this._directive=r.getDirective(t.name.value);break;case u.OPERATION_DEFINITION:{let i=r.getRootType(t.operation);this._typeStack.push(x(i)?i:void 0);break}case u.INLINE_FRAGMENT:case u.FRAGMENT_DEFINITION:{let i=t.typeCondition,o=i?V(r,i):z(this.getType());this._typeStack.push(Re(o)?o:void 0);break}case u.VARIABLE_DEFINITION:{let i=V(r,t.type);this._inputTypeStack.push(K(i)?i:void 0);break}case u.ARGUMENT:{var n;let i,o,s=(n=this.getDirective())!==null&&n!==void 0?n:this.getFieldDef();s&&(i=s.args.find(a=>a.name===t.name.value),i&&(o=i.type)),this._argument=i,this._defaultValueStack.push(i?i.defaultValue:void 0),this._inputTypeStack.push(K(o)?o:void 0);break}case u.LIST:{let i=Ze(this.getInputType()),o=C(i)?i.ofType:i;this._defaultValueStack.push(void 0),this._inputTypeStack.push(K(o)?o:void 0);break}case u.OBJECT_FIELD:{let i=z(this.getInputType()),o,s;D(i)&&(s=i.getFields()[t.name.value],s&&(o=s.type)),this._defaultValueStack.push(s?s.defaultValue:void 0),this._inputTypeStack.push(K(o)?o:void 0);break}case u.ENUM:{let i=z(this.getInputType()),o;Q(i)&&(o=i.getValue(t.value)),this._enumValue=o;break}default:}}leave(t){switch(t.kind){case u.SELECTION_SET:this._parentTypeStack.pop();break;case u.FIELD:this._fieldDefStack.pop(),this._typeStack.pop();break;case u.DIRECTIVE:this._directive=null;break;case u.OPERATION_DEFINITION:case u.INLINE_FRAGMENT:case u.FRAGMENT_DEFINITION:this._typeStack.pop();break;case u.VARIABLE_DEFINITION:this._inputTypeStack.pop();break;case u.ARGUMENT:this._argument=null,this._defaultValueStack.pop(),this._inputTypeStack.pop();break;case u.LIST:case u.OBJECT_FIELD:this._defaultValueStack.pop(),this._inputTypeStack.pop();break;case u.ENUM:this._enumValue=null;break;default:}}};function ts(e,t,r){let n=r.name.value;if(n===Fe.name&&e.getQueryType()===t)return Fe;if(n===ke.name&&e.getQueryType()===t)return ke;if(n===Ce.name&&ue(t))return Ce;if(x(t)||w(t))return t.getFields()[n]}function rr(e,t){return{enter(...r){let n=r[0];e.enter(n);let i=Xe(t,n.kind).enter;if(i){let o=i.apply(t,r);return o!==void 0&&(e.leave(n),ct(o)&&e.enter(o)),o}},leave(...r){let n=r[0],i=Xe(t,n.kind).leave,o;return i&&(o=i.apply(t,r)),e.leave(n),o}}}function Zr(e){return e.kind===u.OPERATION_DEFINITION||e.kind===u.FRAGMENT_DEFINITION}function en(e){return e.kind===u.SCHEMA_DEFINITION||xe(e)||e.kind===u.DIRECTIVE_DEFINITION}function xe(e){return e.kind===u.SCALAR_TYPE_DEFINITION||e.kind===u.OBJECT_TYPE_DEFINITION||e.kind===u.INTERFACE_TYPE_DEFINITION||e.kind===u.UNION_TYPE_DEFINITION||e.kind===u.ENUM_TYPE_DEFINITION||e.kind===u.INPUT_OBJECT_TYPE_DEFINITION}function tn(e){return e.kind===u.SCHEMA_EXTENSION||nr(e)}function nr(e){return e.kind===u.SCALAR_TYPE_EXTENSION||e.kind===u.OBJECT_TYPE_EXTENSION||e.kind===u.INTERFACE_TYPE_EXTENSION||e.kind===u.UNION_TYPE_EXTENSION||e.kind===u.ENUM_TYPE_EXTENSION||e.kind===u.INPUT_OBJECT_TYPE_EXTENSION}function rn(e){return{Document(t){for(let r of t.definitions)if(!Zr(r)){let n=r.kind===u.SCHEMA_DEFINITION||r.kind===u.SCHEMA_EXTENSION?"schema":'"'+r.name.value+'"';e.reportError(new f(`The ${n} definition is not executable.`,{nodes:r}))}return!1}}}function nn(e){return{Field(t){let r=e.getParentType();if(r&&!e.getFieldDef()){let i=e.getSchema(),o=t.name.value,s=ee("to use an inline fragment on",rs(i,r,o));s===""&&(s=ee(ns(r,o))),e.reportError(new f(`Cannot query field "${o}" on type "${r.name}".`+s,{nodes:t}))}}}}function rs(e,t,r){if(!oe(t))return[];let n=new Set,i=Object.create(null);for(let s of e.getPossibleTypes(t))if(s.getFields()[r]){n.add(s),i[s.name]=1;for(let a of s.getInterfaces()){var o;a.getFields()[r]&&(n.add(a),i[a.name]=((o=i[a.name])!==null&&o!==void 0?o:0)+1)}}return[...n].sort((s,a)=>{let c=i[a.name]-i[s.name];return c!==0?c:w(s)&&e.isSubType(s,a)?-1:w(a)&&e.isSubType(a,s)?1:Je(s.name,a.name)}).map(s=>s.name)}function ns(e,t){if(x(e)||w(e)){let r=Object.keys(e.getFields());return ne(t,r)}return[]}function on(e){return{InlineFragment(t){let r=t.typeCondition;if(r){let n=V(e.getSchema(),r);if(n&&!ue(n)){let i=A(r);e.reportError(new f(`Fragment cannot condition on non composite type "${i}".`,{nodes:r}))}}},FragmentDefinition(t){let r=V(e.getSchema(),t.typeCondition);if(r&&!ue(r)){let n=A(t.typeCondition);e.reportError(new f(`Fragment "${t.name.value}" cannot condition on non composite type "${n}".`,{nodes:t.typeCondition}))}}}}function sn(e){return{...an(e),Argument(t){let r=e.getArgument(),n=e.getFieldDef(),i=e.getParentType();if(!r&&n&&i){let o=t.name.value,s=n.args.map(c=>c.name),a=ne(o,s);e.reportError(new f(`Unknown argument "${o}" on field "${i.name}.${n.name}".`+ee(a),{nodes:t}))}}}}function an(e){let t=Object.create(null),r=e.getSchema(),n=r?r.getDirectives():Ne;for(let s of n)t[s.name]=s.args.map(a=>a.name);let i=e.getDocument().definitions;for(let s of i)if(s.kind===u.DIRECTIVE_DEFINITION){var o;let a=(o=s.arguments)!==null&&o!==void 0?o:[];t[s.name.value]=a.map(c=>c.name.value)}return{Directive(s){let a=s.name.value,c=t[a];if(s.arguments&&c)for(let p of s.arguments){let l=p.name.value;if(!c.includes(l)){let d=ne(l,c);e.reportError(new f(`Unknown argument "${l}" on directive "@${a}".`+ee(d),{nodes:p}))}}return!1}}}function ir(e){let t=Object.create(null),r=e.getSchema(),n=r?r.getDirectives():Ne;for(let o of n)t[o.name]=o.locations;let i=e.getDocument().definitions;for(let o of i)o.kind===u.DIRECTIVE_DEFINITION&&(t[o.name.value]=o.locations.map(s=>s.value));return{Directive(o,s,a,c,p){let l=o.name.value,d=t[l];if(!d){e.reportError(new f(`Unknown directive "@${l}".`,{nodes:o}));return}let m=is(p);m&&!d.includes(m)&&e.reportError(new f(`Directive "@${l}" may not be used on ${m}.`,{nodes:o}))}}}function is(e){let t=e[e.length-1];switch("kind"in t||$(!1),t.kind){case u.OPERATION_DEFINITION:return os(t.operation);case u.FIELD:return b.FIELD;case u.FRAGMENT_SPREAD:return b.FRAGMENT_SPREAD;case u.INLINE_FRAGMENT:return b.INLINE_FRAGMENT;case u.FRAGMENT_DEFINITION:return b.FRAGMENT_DEFINITION;case u.VARIABLE_DEFINITION:return b.VARIABLE_DEFINITION;case u.SCHEMA_DEFINITION:case u.SCHEMA_EXTENSION:return b.SCHEMA;case u.SCALAR_TYPE_DEFINITION:case u.SCALAR_TYPE_EXTENSION:return b.SCALAR;case u.OBJECT_TYPE_DEFINITION:case u.OBJECT_TYPE_EXTENSION:return b.OBJECT;case u.FIELD_DEFINITION:return b.FIELD_DEFINITION;case u.INTERFACE_TYPE_DEFINITION:case u.INTERFACE_TYPE_EXTENSION:return b.INTERFACE;case u.UNION_TYPE_DEFINITION:case u.UNION_TYPE_EXTENSION:return b.UNION;case u.ENUM_TYPE_DEFINITION:case u.ENUM_TYPE_EXTENSION:return b.ENUM;case u.ENUM_VALUE_DEFINITION:return b.ENUM_VALUE;case u.INPUT_OBJECT_TYPE_DEFINITION:case u.INPUT_OBJECT_TYPE_EXTENSION:return b.INPUT_OBJECT;case u.INPUT_VALUE_DEFINITION:{let r=e[e.length-3];return"kind"in r||$(!1),r.kind===u.INPUT_OBJECT_TYPE_DEFINITION?b.INPUT_FIELD_DEFINITION:b.ARGUMENT_DEFINITION}default:$(!1,"Unexpected kind: "+y(t.kind))}}function os(e){switch(e){case U.QUERY:return b.QUERY;case U.MUTATION:return b.MUTATION;case U.SUBSCRIPTION:return b.SUBSCRIPTION}}function cn(e){return{FragmentSpread(t){let r=t.name.value;e.getFragment(r)||e.reportError(new f(`Unknown fragment "${r}".`,{nodes:t.name}))}}}function or(e){let t=e.getSchema(),r=t?t.getTypeMap():Object.create(null),n=Object.create(null);for(let o of e.getDocument().definitions)xe(o)&&(n[o.name.value]=!0);let i=[...Object.keys(r),...Object.keys(n)];return{NamedType(o,s,a,c,p){let l=o.name.value;if(!r[l]&&!n[l]){var d;let m=(d=p[2])!==null&&d!==void 0?d:a,T=m!=null&&ss(m);if(T&&Fi.includes(l))return;let g=ne(l,T?Fi.concat(i):i);e.reportError(new f(`Unknown type "${l}".`+ee(g),{nodes:o}))}}}}var Fi=[...Xt,...er].map(e=>e.name);function ss(e){return"kind"in e&&(en(e)||tn(e))}function un(e){let t=0;return{Document(r){t=r.definitions.filter(n=>n.kind===u.OPERATION_DEFINITION).length},OperationDefinition(r){!r.name&&t>1&&e.reportError(new f("This anonymous operation must be the only defined operation.",{nodes:r}))}}}function pn(e){var t,r,n;let i=e.getSchema(),o=(t=(r=(n=i?.astNode)!==null&&n!==void 0?n:i?.getQueryType())!==null&&r!==void 0?r:i?.getMutationType())!==null&&t!==void 0?t:i?.getSubscriptionType(),s=0;return{SchemaDefinition(a){if(o){e.reportError(new f("Cannot define a new schema within a schema extension.",{nodes:a}));return}s>0&&e.reportError(new f("Must provide only one schema definition.",{nodes:a})),++s}}}var as=3;function ln(e){function t(r,n=Object.create(null),i=0){if(r.kind===u.FRAGMENT_SPREAD){let o=r.name.value;if(n[o]===!0)return!1;let s=e.getFragment(o);if(!s)return!1;try{return n[o]=!0,t(s,n,i)}finally{n[o]=void 0}}if(r.kind===u.FIELD&&(r.name.value==="fields"||r.name.value==="interfaces"||r.name.value==="possibleTypes"||r.name.value==="inputFields")&&(i++,i>=as))return!0;if("selectionSet"in r&&r.selectionSet){for(let o of r.selectionSet.selections)if(t(o,n,i))return!0}return!1}return{Field(r){if((r.name.value==="__schema"||r.name.value==="__type")&&t(r))return e.reportError(new f("Maximum introspection depth exceeded",{nodes:[r]})),!1}}}function fn(e){let t=Object.create(null),r=[],n=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(o){return i(o),!1}};function i(o){if(t[o.name.value])return;let s=o.name.value;t[s]=!0;let a=e.getFragmentSpreads(o.selectionSet);if(a.length!==0){n[s]=r.length;for(let c of a){let p=c.name.value,l=n[p];if(r.push(c),l===void 0){let d=e.getFragment(p);d&&i(d)}else{let d=r.slice(l),m=d.slice(0,-1).map(T=>'"'+T.name.value+'"').join(", ");e.reportError(new f(`Cannot spread fragment "${p}" within itself`+(m!==""?` via ${m}.`:"."),{nodes:d}))}r.pop()}n[s]=void 0}}}function dn(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(r){let n=e.getRecursiveVariableUsages(r);for(let{node:i}of n){let o=i.name.value;t[o]!==!0&&e.reportError(new f(r.name?`Variable "$${o}" is not defined by operation "${r.name.value}".`:`Variable "$${o}" is not defined.`,{nodes:[i,r]}))}}},VariableDefinition(r){t[r.variable.name.value]=!0}}}function mn(e){let t=[],r=[];return{OperationDefinition(n){return t.push(n),!1},FragmentDefinition(n){return r.push(n),!1},Document:{leave(){let n=Object.create(null);for(let i of t)for(let o of e.getRecursivelyReferencedFragments(i))n[o.name.value]=!0;for(let i of r){let o=i.name.value;n[o]!==!0&&e.reportError(new f(`Fragment "${o}" is never used.`,{nodes:i}))}}}}}function hn(e){let t=[];return{OperationDefinition:{enter(){t=[]},leave(r){let n=Object.create(null),i=e.getRecursiveVariableUsages(r);for(let{node:o}of i)n[o.name.value]=!0;for(let o of t){let s=o.variable.name.value;n[s]!==!0&&e.reportError(new f(r.name?`Variable "$${s}" is never used in operation "${r.name.value}".`:`Variable "$${s}" is never used.`,{nodes:o}))}}},VariableDefinition(r){t.push(r)}}}function sr(e){switch(e.kind){case u.OBJECT:return{...e,fields:cs(e.fields)};case u.LIST:return{...e,values:e.values.map(sr)};case u.INT:case u.FLOAT:case u.STRING:case u.BOOLEAN:case u.NULL:case u.ENUM:case u.VARIABLE:return e}}function cs(e){return e.map(t=>({...t,value:sr(t.value)})).sort((t,r)=>Je(t.name.value,r.name.value))}function Ci(e){return Array.isArray(e)?e.map(([t,r])=>`subfields "${t}" conflict because `+Ci(r)).join(" and "):e}function En(e){let t=new pr,r=new gn,n=new Map;return{SelectionSet(i){let o=us(e,n,t,r,e.getParentType(),i);for(let[[s,a],c,p]of o){let l=Ci(a);e.reportError(new f(`Fields "${s}" conflict because ${l}. Use different aliases on the fields to fetch both if this was intentional.`,{nodes:c.concat(p)}))}}}}function us(e,t,r,n,i,o){let s=[],[a,c]=ur(e,t,i,o);if(ls(e,s,t,r,n,a),c.length!==0)for(let p=0;p<c.length;p++){ar(e,s,t,r,n,!1,a,c[p]);for(let l=p+1;l<c.length;l++)cr(e,s,t,r,n,!1,c[p],c[l])}return s}function ar(e,t,r,n,i,o,s,a){if(n.has(s,a,o))return;n.add(s,a,o);let c=e.getFragment(a);if(!c)return;let[p,l]=Tn(e,r,c);if(s!==p){vn(e,t,r,n,i,o,s,p);for(let d of l)ar(e,t,r,n,i,o,s,d)}}function cr(e,t,r,n,i,o,s,a){if(s===a||i.has(s,a,o))return;i.add(s,a,o);let c=e.getFragment(s),p=e.getFragment(a);if(!c||!p)return;let[l,d]=Tn(e,r,c),[m,T]=Tn(e,r,p);vn(e,t,r,n,i,o,l,m);for(let g of T)cr(e,t,r,n,i,o,s,g);for(let g of d)cr(e,t,r,n,i,o,g,a)}function ps(e,t,r,n,i,o,s,a,c){let p=[],[l,d]=ur(e,t,o,s),[m,T]=ur(e,t,a,c);vn(e,p,t,r,n,i,l,m);for(let g of T)ar(e,p,t,r,n,i,l,g);for(let g of d)ar(e,p,t,r,n,i,m,g);for(let g of d)for(let M of T)cr(e,p,t,r,n,i,g,M);return p}function ls(e,t,r,n,i,o){for(let[s,a]of Object.entries(o))if(a.length>1)for(let c=0;c<a.length;c++)for(let p=c+1;p<a.length;p++){let l=Mi(e,r,n,i,!1,s,a[c],a[p]);l&&t.push(l)}}function vn(e,t,r,n,i,o,s,a){for(let[c,p]of Object.entries(s)){let l=a[c];if(l)for(let d of p)for(let m of l){let T=Mi(e,r,n,i,o,c,d,m);T&&t.push(T)}}}function Mi(e,t,r,n,i,o,s,a){let[c,p,l]=s,[d,m,T]=a,g=i||c!==d&&x(c)&&x(d);if(!g){let ae=p.name.value,he=m.name.value;if(ae!==he)return[[o,`"${ae}" and "${he}" are different fields`],[p],[m]];if(!fs(p,m))return[[o,"they have differing arguments"],[p],[m]]}let M=l?.type,Z=T?.type;if(M&&Z&&yn(M,Z))return[[o,`they return conflicting types "${y(M)}" and "${y(Z)}"`],[p],[m]];let J=p.selectionSet,fe=m.selectionSet;if(J&&fe){let ae=ps(e,t,r,n,g,z(M),J,z(Z),fe);return ds(ae,o,p,m)}}function fs(e,t){let r=e.arguments,n=t.arguments;if(r===void 0||r.length===0)return n===void 0||n.length===0;if(n===void 0||n.length===0||r.length!==n.length)return!1;let i=new Map(n.map(({name:o,value:s})=>[o.value,s]));return r.every(o=>{let s=o.value,a=i.get(o.name.value);return a===void 0?!1:ki(s)===ki(a)})}function ki(e){return A(sr(e))}function yn(e,t){return C(e)?C(t)?yn(e.ofType,t.ofType):!0:C(t)?!0:O(e)?O(t)?yn(e.ofType,t.ofType):!0:O(t)?!0:W(e)||W(t)?e!==t:!1}function ur(e,t,r,n){let i=t.get(n);if(i)return i;let o=Object.create(null),s=Object.create(null);Pi(e,r,n,o,s);let a=[o,Object.keys(s)];return t.set(n,a),a}function Tn(e,t,r){let n=t.get(r.selectionSet);if(n)return n;let i=V(e.getSchema(),r.typeCondition);return ur(e,t,i,r.selectionSet)}function Pi(e,t,r,n,i){for(let o of r.selections)switch(o.kind){case u.FIELD:{let s=o.name.value,a;(x(t)||w(t))&&(a=t.getFields()[s]);let c=o.alias?o.alias.value:s;n[c]||(n[c]=[]),n[c].push([t,o,a]);break}case u.FRAGMENT_SPREAD:i[o.name.value]=!0;break;case u.INLINE_FRAGMENT:{let s=o.typeCondition,a=s?V(e.getSchema(),s):t;Pi(e,a,o.selectionSet,n,i);break}}}function ds(e,t,r,n){if(e.length>0)return[[t,e.map(([i])=>i)],[r,...e.map(([,i])=>i).flat()],[n,...e.map(([,,i])=>i).flat()]]}var pr=class{constructor(){this._data=new Map}has(t,r,n){var i;let o=(i=this._data.get(t))===null||i===void 0?void 0:i.get(r);return o===void 0?!1:n?!0:n===o}add(t,r,n){let i=this._data.get(t);i===void 0?this._data.set(t,new Map([[r,n]])):i.set(r,n)}},gn=class{constructor(){this._orderedPairSet=new pr}has(t,r,n){return t<r?this._orderedPairSet.has(t,r,n):this._orderedPairSet.has(r,t,n)}add(t,r,n){t<r?this._orderedPairSet.add(t,r,n):this._orderedPairSet.add(r,t,n)}};function Nn(e){return{InlineFragment(t){let r=e.getType(),n=e.getParentType();if(ue(r)&&ue(n)&&!jr(e.getSchema(),r,n)){let i=y(n),o=y(r);e.reportError(new f(`Fragment cannot be spread here as objects of type "${i}" can never be of type "${o}".`,{nodes:t}))}},FragmentSpread(t){let r=t.name.value,n=ms(e,r),i=e.getParentType();if(n&&i&&!jr(e.getSchema(),n,i)){let o=y(i),s=y(n);e.reportError(new f(`Fragment "${r}" cannot be spread here as objects of type "${o}" can never be of type "${s}".`,{nodes:t}))}}}}function ms(e,t){let r=e.getFragment(t);if(r){let n=V(e.getSchema(),r.typeCondition);if(ue(n))return n}}function In(e){let t=e.getSchema(),r=Object.create(null);for(let i of e.getDocument().definitions)xe(i)&&(r[i.name.value]=i);return{ScalarTypeExtension:n,ObjectTypeExtension:n,InterfaceTypeExtension:n,UnionTypeExtension:n,EnumTypeExtension:n,InputObjectTypeExtension:n};function n(i){let o=i.name.value,s=r[o],a=t?.getType(o),c;if(s?c=hs[s.kind]:a&&(c=ys(a)),c){if(c!==i.kind){let p=Ts(i.kind);e.reportError(new f(`Cannot extend non-${p} type "${o}".`,{nodes:s?[s,i]:i}))}}else{let p=Object.keys({...r,...t?.getTypeMap()}),l=ne(o,p);e.reportError(new f(`Cannot extend type "${o}" because it is not defined.`+ee(l),{nodes:i.name}))}}}var hs={[u.SCALAR_TYPE_DEFINITION]:u.SCALAR_TYPE_EXTENSION,[u.OBJECT_TYPE_DEFINITION]:u.OBJECT_TYPE_EXTENSION,[u.INTERFACE_TYPE_DEFINITION]:u.INTERFACE_TYPE_EXTENSION,[u.UNION_TYPE_DEFINITION]:u.UNION_TYPE_EXTENSION,[u.ENUM_TYPE_DEFINITION]:u.ENUM_TYPE_EXTENSION,[u.INPUT_OBJECT_TYPE_DEFINITION]:u.INPUT_OBJECT_TYPE_EXTENSION};function ys(e){if(Ee(e))return u.SCALAR_TYPE_EXTENSION;if(x(e))return u.OBJECT_TYPE_EXTENSION;if(w(e))return u.INTERFACE_TYPE_EXTENSION;if(X(e))return u.UNION_TYPE_EXTENSION;if(Q(e))return u.ENUM_TYPE_EXTENSION;if(D(e))return u.INPUT_OBJECT_TYPE_EXTENSION;$(!1,"Unexpected type: "+y(e))}function Ts(e){switch(e){case u.SCALAR_TYPE_EXTENSION:return"scalar";case u.OBJECT_TYPE_EXTENSION:return"object";case u.INTERFACE_TYPE_EXTENSION:return"interface";case u.UNION_TYPE_EXTENSION:return"union";case u.ENUM_TYPE_EXTENSION:return"enum";case u.INPUT_OBJECT_TYPE_EXTENSION:return"input object";default:$(!1,"Unexpected kind: "+y(e))}}function bn(e){return{...Rn(e),Field:{leave(t){var r;let n=e.getFieldDef();if(!n)return!1;let i=new Set((r=t.arguments)===null||r===void 0?void 0:r.map(o=>o.name.value));for(let o of n.args)if(!i.has(o.name)&&Oe(o)){let s=y(o.type);e.reportError(new f(`Field "${n.name}" argument "${o.name}" of type "${s}" is required, but it was not provided.`,{nodes:t}))}}}}}function Rn(e){var t;let r=Object.create(null),n=e.getSchema(),i=(t=n?.getDirectives())!==null&&t!==void 0?t:Ne;for(let a of i)r[a.name]=ye(a.args.filter(Oe),c=>c.name);let o=e.getDocument().definitions;for(let a of o)if(a.kind===u.DIRECTIVE_DEFINITION){var s;let c=(s=a.arguments)!==null&&s!==void 0?s:[];r[a.name.value]=ye(c.filter(gs),p=>p.name.value)}return{Directive:{leave(a){let c=a.name.value,p=r[c];if(p){var l;let d=(l=a.arguments)!==null&&l!==void 0?l:[],m=new Set(d.map(T=>T.name.value));for(let[T,g]of Object.entries(p))if(!m.has(T)){let M=We(g.type)?y(g.type):A(g.type);e.reportError(new f(`Directive "@${c}" argument "${T}" of type "${M}" is required, but it was not provided.`,{nodes:a}))}}}}}}function gs(e){return e.type.kind===u.NON_NULL_TYPE&&e.defaultValue==null}function On(e){return{Field(t){let r=e.getType(),n=t.selectionSet;if(r)if(W(z(r))){if(n){let i=t.name.value,o=y(r);e.reportError(new f(`Field "${i}" must not have a selection since type "${o}" has no subfields.`,{nodes:n}))}}else if(n){if(n.selections.length===0){let i=t.name.value,o=y(r);e.reportError(new f(`Field "${i}" of type "${o}" must have at least one field selected.`,{nodes:t}))}}else{let i=t.name.value,o=y(r);e.reportError(new f(`Field "${i}" of type "${o}" must have a selection of subfields. Did you mean "${i} { ... }"?`,{nodes:t}))}}}}function lr(e){return e.map(t=>typeof t=="number"?"["+t.toString()+"]":"."+t).join("")}function Ue(e,t,r){return{prev:e,key:t,typename:r}}function te(e){let t=[],r=e;for(;r;)t.push(r.key),r=r.prev;return t.reverse()}function Ui(e,t,r=Es){return Ot(e,t,r,void 0)}function Es(e,t,r){let n="Invalid value "+y(t);throw e.length>0&&(n+=` at "value${lr(e)}"`),r.message=n+": "+r.message,r}function Ot(e,t,r,n){if(O(t)){if(e!=null)return Ot(e,t.ofType,r,n);r(te(n),e,new f(`Expected non-nullable type "${y(t)}" not to be null.`));return}if(e==null)return null;if(C(t)){let i=t.ofType;return tt(e)?Array.from(e,(o,s)=>{let a=Ue(n,s,void 0);return Ot(o,i,r,a)}):[Ot(e,i,r,n)]}if(D(t)){if(!q(e)||Array.isArray(e)){r(te(n),e,new f(`Expected type "${t.name}" to be an object.`));return}let i={},o=t.getFields();for(let s of Object.values(o)){let a=e[s.name];if(a===void 0){if(s.defaultValue!==void 0)i[s.name]=s.defaultValue;else if(O(s.type)){let c=y(s.type);r(te(n),e,new f(`Field "${s.name}" of required type "${c}" was not provided.`))}continue}i[s.name]=Ot(a,s.type,r,Ue(n,s.name,t.name))}for(let s of Object.keys(e))if(!o[s]){let a=ne(s,Object.keys(t.getFields()));r(te(n),e,new f(`Field "${s}" is not defined by type "${t.name}".`+ee(a)))}if(t.isOneOf){let s=Object.keys(i);s.length!==1&&r(te(n),e,new f(`Exactly one key must be specified for OneOf type "${t.name}".`));let a=s[0],c=i[a];c===null&&r(te(n).concat(a),c,new f(`Field "${a}" must be non-null.`))}return i}if(W(t)){let i;try{i=t.parseValue(e)}catch(o){o instanceof f?r(te(n),e,o):r(te(n),e,new f(`Expected type "${t.name}". `+o.message,{originalError:o}));return}return i===void 0&&r(te(n),e,new f(`Expected type "${t.name}".`)),i}$(!1,"Unexpected input type: "+y(t))}function $e(e,t,r){if(e){if(e.kind===u.VARIABLE){let n=e.name.value;if(r==null||r[n]===void 0)return;let i=r[n];return i===null&&O(t)?void 0:i}if(O(t))return e.kind===u.NULL?void 0:$e(e,t.ofType,r);if(e.kind===u.NULL)return null;if(C(t)){let n=t.ofType;if(e.kind===u.LIST){let o=[];for(let s of e.values)if($i(s,r)){if(O(n))return;o.push(null)}else{let a=$e(s,n,r);if(a===void 0)return;o.push(a)}return o}let i=$e(e,n,r);return i===void 0?void 0:[i]}if(D(t)){if(e.kind!==u.OBJECT)return;let n=Object.create(null),i=ye(e.fields,o=>o.name.value);for(let o of Object.values(t.getFields())){let s=i[o.name];if(!s||$i(s.value,r)){if(o.defaultValue!==void 0)n[o.name]=o.defaultValue;else if(O(o.type))return;continue}let a=$e(s.value,o.type,r);if(a===void 0)return;n[o.name]=a}if(t.isOneOf){let o=Object.keys(n);if(o.length!==1||n[o[0]]===null)return}return n}if(W(t)){let n;try{n=t.parseLiteral(e,r)}catch{return}return n===void 0?void 0:n}$(!1,"Unexpected input type: "+y(t))}}function $i(e,t){return e.kind===u.VARIABLE&&(t==null||t[e.name.value]===void 0)}function Sn(e,t,r,n){let i=[],o=n?.maxErrors;try{let s=vs(e,t,r,a=>{if(o!=null&&i.length>=o)throw new f("Too many errors processing variables, error limit reached. Execution aborted.");i.push(a)});if(i.length===0)return{coerced:s}}catch(s){i.push(s)}return{errors:i}}function vs(e,t,r,n){let i={};for(let o of t){let s=o.variable.name.value,a=V(e,o.type);if(!K(a)){let p=A(o.type);n(new f(`Variable "$${s}" expected value of type "${p}" which cannot be used as an input type.`,{nodes:o.type}));continue}if(!Vi(r,s)){if(o.defaultValue)i[s]=$e(o.defaultValue,a);else if(O(a)){let p=y(a);n(new f(`Variable "$${s}" of required type "${p}" was not provided.`,{nodes:o}))}continue}let c=r[s];if(c===null&&O(a)){let p=y(a);n(new f(`Variable "$${s}" of non-null type "${p}" must not be null.`,{nodes:o}));continue}i[s]=Ui(c,a,(p,l,d)=>{let m=`Variable "$${s}" got invalid value `+y(l);p.length>0&&(m+=` at "${s}${lr(p)}"`),n(new f(m+"; "+d.message,{nodes:o,originalError:d}))})}return i}function fr(e,t,r){var n;let i={},o=(n=t.arguments)!==null&&n!==void 0?n:[],s=ye(o,a=>a.name.value);for(let a of e.args){let c=a.name,p=a.type,l=s[c];if(!l){if(a.defaultValue!==void 0)i[c]=a.defaultValue;else if(O(p))throw new f(`Argument "${c}" of required type "${y(p)}" was not provided.`,{nodes:t});continue}let d=l.value,m=d.kind===u.NULL;if(d.kind===u.VARIABLE){let g=d.name.value;if(r==null||!Vi(r,g)){if(a.defaultValue!==void 0)i[c]=a.defaultValue;else if(O(p))throw new f(`Argument "${c}" of required type "${y(p)}" was provided the variable "$${g}" which was not provided a runtime value.`,{nodes:d});continue}m=r[g]==null}if(m&&O(p))throw new f(`Argument "${c}" of non-null type "${y(p)}" must not be null.`,{nodes:d});let T=$e(d,p,r);if(T===void 0)throw new f(`Argument "${c}" has invalid value ${A(d)}.`,{nodes:d});i[c]=T}return i}function dr(e,t,r){var n;let i=(n=t.directives)===null||n===void 0?void 0:n.find(o=>o.name.value===e.name);if(i)return fr(e,i,r)}function Vi(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function hr(e,t,r,n,i){let o=new Map;return mr(e,t,r,n,i,o,new Set),o}function ji(e,t,r,n,i){let o=new Map,s=new Set;for(let a of i)a.selectionSet&&mr(e,t,r,n,a.selectionSet,o,s);return o}function mr(e,t,r,n,i,o,s){for(let a of i.selections)switch(a.kind){case u.FIELD:{if(!_n(r,a))continue;let c=Ns(a),p=o.get(c);p!==void 0?p.push(a):o.set(c,[a]);break}case u.INLINE_FRAGMENT:{if(!_n(r,a)||!Gi(e,a,n))continue;mr(e,t,r,n,a.selectionSet,o,s);break}case u.FRAGMENT_SPREAD:{let c=a.name.value;if(s.has(c)||!_n(r,a))continue;s.add(c);let p=t[c];if(!p||!Gi(e,p,n))continue;mr(e,t,r,n,p.selectionSet,o,s);break}}}function _n(e,t){let r=dr(Wt,t,e);if(r?.if===!0)return!1;let n=dr(Kt,t,e);return n?.if!==!1}function Gi(e,t,r){let n=t.typeCondition;if(!n)return!0;let i=V(e,n);return i===r?!0:oe(i)?e.isSubType(i,r):!1}function Ns(e){return e.alias?e.alias.value:e.name.value}function xn(e){return{OperationDefinition(t){if(t.operation==="subscription"){let r=e.getSchema(),n=r.getSubscriptionType();if(n){let i=t.name?t.name.value:null,o=Object.create(null),s=e.getDocument(),a=Object.create(null);for(let p of s.definitions)p.kind===u.FRAGMENT_DEFINITION&&(a[p.name.value]=p);let c=hr(r,a,o,n,t.selectionSet);if(c.size>1){let d=[...c.values()].slice(1).flat();e.reportError(new f(i!=null?`Subscription "${i}" must select only one top level field.`:"Anonymous Subscription must select only one top level field.",{nodes:d}))}for(let p of c.values())p[0].name.value.startsWith("__")&&e.reportError(new f(i!=null?`Subscription "${i}" must not select an introspection top level field.`:"Anonymous Subscription must not select an introspection top level field.",{nodes:p}))}}}}}function it(e,t){let r=new Map;for(let n of e){let i=t(n),o=r.get(i);o===void 0?r.set(i,[n]):o.push(n)}return r}function Ln(e){return{DirectiveDefinition(n){var i;let o=(i=n.arguments)!==null&&i!==void 0?i:[];return r(`@${n.name.value}`,o)},InterfaceTypeDefinition:t,InterfaceTypeExtension:t,ObjectTypeDefinition:t,ObjectTypeExtension:t};function t(n){var i;let o=n.name.value,s=(i=n.fields)!==null&&i!==void 0?i:[];for(let c of s){var a;let p=c.name.value,l=(a=c.arguments)!==null&&a!==void 0?a:[];r(`${o}.${p}`,l)}return!1}function r(n,i){let o=it(i,s=>s.name.value);for(let[s,a]of o)a.length>1&&e.reportError(new f(`Argument "${n}(${s}:)" can only be defined once.`,{nodes:a.map(c=>c.name)}));return!1}}function yr(e){return{Field:t,Directive:t};function t(r){var n;let i=(n=r.arguments)!==null&&n!==void 0?n:[],o=it(i,s=>s.name.value);for(let[s,a]of o)a.length>1&&e.reportError(new f(`There can be only one argument named "${s}".`,{nodes:a.map(c=>c.name)}))}}function wn(e){let t=Object.create(null),r=e.getSchema();return{DirectiveDefinition(n){let i=n.name.value;if(r!=null&&r.getDirective(i)){e.reportError(new f(`Directive "@${i}" already exists in the schema. It cannot be redefined.`,{nodes:n.name}));return}return t[i]?e.reportError(new f(`There can be only one directive named "@${i}".`,{nodes:[t[i],n.name]})):t[i]=n.name,!1}}}function Tr(e){let t=Object.create(null),r=e.getSchema(),n=r?r.getDirectives():Ne;for(let a of n)t[a.name]=!a.isRepeatable;let i=e.getDocument().definitions;for(let a of i)a.kind===u.DIRECTIVE_DEFINITION&&(t[a.name.value]=!a.repeatable);let o=Object.create(null),s=Object.create(null);return{enter(a){if(!("directives"in a)||!a.directives)return;let c;if(a.kind===u.SCHEMA_DEFINITION||a.kind===u.SCHEMA_EXTENSION)c=o;else if(xe(a)||nr(a)){let p=a.name.value;c=s[p],c===void 0&&(s[p]=c=Object.create(null))}else c=Object.create(null);for(let p of a.directives){let l=p.name.value;t[l]&&(c[l]?e.reportError(new f(`The directive "@${l}" can only be used once at this location.`,{nodes:[c[l],p]})):c[l]=p)}}}}function Dn(e){let t=e.getSchema(),r=t?t.getTypeMap():Object.create(null),n=Object.create(null);return{EnumTypeDefinition:i,EnumTypeExtension:i};function i(o){var s;let a=o.name.value;n[a]||(n[a]=Object.create(null));let c=(s=o.values)!==null&&s!==void 0?s:[],p=n[a];for(let l of c){let d=l.name.value,m=r[a];Q(m)&&m.getValue(d)?e.reportError(new f(`Enum value "${a}.${d}" already exists in the schema. It cannot also be defined in this type extension.`,{nodes:l.name})):p[d]?e.reportError(new f(`Enum value "${a}.${d}" can only be defined once.`,{nodes:[p[d],l.name]})):p[d]=l.name}return!1}}function An(e){let t=e.getSchema(),r=t?t.getTypeMap():Object.create(null),n=Object.create(null);return{InputObjectTypeDefinition:i,InputObjectTypeExtension:i,InterfaceTypeDefinition:i,InterfaceTypeExtension:i,ObjectTypeDefinition:i,ObjectTypeExtension:i};function i(o){var s;let a=o.name.value;n[a]||(n[a]=Object.create(null));let c=(s=o.fields)!==null&&s!==void 0?s:[],p=n[a];for(let l of c){let d=l.name.value;Is(r[a],d)?e.reportError(new f(`Field "${a}.${d}" already exists in the schema. It cannot also be defined in this type extension.`,{nodes:l.name})):p[d]?e.reportError(new f(`Field "${a}.${d}" can only be defined once.`,{nodes:[p[d],l.name]})):p[d]=l.name}return!1}}function Is(e,t){return x(e)||w(e)||D(e)?e.getFields()[t]!=null:!1}function Fn(e){let t=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(r){let n=r.name.value;return t[n]?e.reportError(new f(`There can be only one fragment named "${n}".`,{nodes:[t[n],r.name]})):t[n]=r.name,!1}}}function gr(e){let t=[],r=Object.create(null);return{ObjectValue:{enter(){t.push(r),r=Object.create(null)},leave(){let n=t.pop();n||$(!1),r=n}},ObjectField(n){let i=n.name.value;r[i]?e.reportError(new f(`There can be only one input field named "${i}".`,{nodes:[r[i],n.name]})):r[i]=n.name}}}function kn(e){let t=Object.create(null);return{OperationDefinition(r){let n=r.name;return n&&(t[n.value]?e.reportError(new f(`There can be only one operation named "${n.value}".`,{nodes:[t[n.value],n]})):t[n.value]=n),!1},FragmentDefinition:()=>!1}}function Cn(e){let t=e.getSchema(),r=Object.create(null),n=t?{query:t.getQueryType(),mutation:t.getMutationType(),subscription:t.getSubscriptionType()}:{};return{SchemaDefinition:i,SchemaExtension:i};function i(o){var s;let a=(s=o.operationTypes)!==null&&s!==void 0?s:[];for(let c of a){let p=c.operation,l=r[p];n[p]?e.reportError(new f(`Type for ${p} already defined in the schema. It cannot be redefined.`,{nodes:c})):l?e.reportError(new f(`There can be only one ${p} type in schema.`,{nodes:[l,c]})):r[p]=c}return!1}}function Mn(e){let t=Object.create(null),r=e.getSchema();return{ScalarTypeDefinition:n,ObjectTypeDefinition:n,InterfaceTypeDefinition:n,UnionTypeDefinition:n,EnumTypeDefinition:n,InputObjectTypeDefinition:n};function n(i){let o=i.name.value;if(r!=null&&r.getType(o)){e.reportError(new f(`Type "${o}" already exists in the schema. It cannot also be defined in this type definition.`,{nodes:i.name}));return}return t[o]?e.reportError(new f(`There can be only one type named "${o}".`,{nodes:[t[o],i.name]})):t[o]=i.name,!1}}function Pn(e){return{OperationDefinition(t){var r;let n=(r=t.variableDefinitions)!==null&&r!==void 0?r:[],i=it(n,o=>o.variable.name.value);for(let[o,s]of i)s.length>1&&e.reportError(new f(`There can be only one variable named "$${o}".`,{nodes:s.map(a=>a.variable.name)}))}}}function Un(e){let t={};return{OperationDefinition:{enter(){t={}}},VariableDefinition(r){t[r.variable.name.value]=r},ListValue(r){let n=Ze(e.getParentInputType());if(!C(n))return Ve(e,r),!1},ObjectValue(r){let n=z(e.getInputType());if(!D(n))return Ve(e,r),!1;let i=ye(r.fields,o=>o.name.value);for(let o of Object.values(n.getFields()))if(!i[o.name]&&et(o)){let a=y(o.type);e.reportError(new f(`Field "${n.name}.${o.name}" of required type "${a}" was not provided.`,{nodes:r}))}n.isOneOf&&bs(e,r,n,i,t)},ObjectField(r){let n=z(e.getParentInputType());if(!e.getInputType()&&D(n)){let o=ne(r.name.value,Object.keys(n.getFields()));e.reportError(new f(`Field "${r.name.value}" is not defined by type "${n.name}".`+ee(o),{nodes:r}))}},NullValue(r){let n=e.getInputType();O(n)&&e.reportError(new f(`Expected value of type "${y(n)}", found ${A(r)}.`,{nodes:r}))},EnumValue:r=>Ve(e,r),IntValue:r=>Ve(e,r),FloatValue:r=>Ve(e,r),StringValue:r=>Ve(e,r),BooleanValue:r=>Ve(e,r)}}function Ve(e,t){let r=e.getInputType();if(!r)return;let n=z(r);if(!W(n)){let i=y(r);e.reportError(new f(`Expected value of type "${i}", found ${A(t)}.`,{nodes:t}));return}try{if(n.parseLiteral(t,void 0)===void 0){let o=y(r);e.reportError(new f(`Expected value of type "${o}", found ${A(t)}.`,{nodes:t}))}}catch(i){let o=y(r);i instanceof f?e.reportError(i):e.reportError(new f(`Expected value of type "${o}", found ${A(t)}; `+i.message,{nodes:t,originalError:i}))}}function bs(e,t,r,n,i){var o;let s=Object.keys(n);if(s.length!==1){e.reportError(new f(`OneOf Input Object "${r.name}" must specify exactly one key.`,{nodes:[t]}));return}let c=(o=n[s[0]])===null||o===void 0?void 0:o.value,p=!c||c.kind===u.NULL,l=c?.kind===u.VARIABLE;if(p){e.reportError(new f(`Field "${r.name}.${s[0]}" must be non-null.`,{nodes:[t]}));return}if(l){let d=c.name.value;i[d].type.kind!==u.NON_NULL_TYPE&&e.reportError(new f(`Variable "${d}" must be non-nullable to be used for OneOf Input Object "${r.name}".`,{nodes:[t]}))}}function $n(e){return{VariableDefinition(t){let r=V(e.getSchema(),t.type);if(r!==void 0&&!K(r)){let n=t.variable.name.value,i=A(t.type);e.reportError(new f(`Variable "$${n}" cannot be non-input type "${i}".`,{nodes:t.type}))}}}}function Vn(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(r){let n=e.getRecursiveVariableUsages(r);for(let{node:i,type:o,defaultValue:s,parentType:a}of n){let c=i.name.value,p=t[c];if(p&&o){let l=e.getSchema(),d=V(l,p.type);if(d&&!Rs(l,d,p.defaultValue,o,s)){let m=y(d),T=y(o);e.reportError(new f(`Variable "$${c}" of type "${m}" used in position expecting type "${T}".`,{nodes:[p,i]}))}D(a)&&a.isOneOf&&yt(d)&&e.reportError(new f(`Variable "$${c}" is of type "${d}" but must be non-nullable to be used for OneOf Input Object "${a}".`,{nodes:[p,i]}))}}}},VariableDefinition(r){t[r.variable.name.value]=r}}}function Rs(e,t,r,n,i){if(O(n)&&!O(t)){if(!(r!=null&&r.kind!==u.NULL)&&!(i!==void 0))return!1;let a=n.ofType;return _e(e,t,a)}return _e(e,t,n)}var Gn=Object.freeze([ln]),ot=Object.freeze([rn,kn,un,xn,or,on,$n,On,nn,Fn,cn,mn,Nn,fn,Pn,dn,hn,ir,Tr,sn,yr,Un,bn,Vn,En,gr,...Gn]),Os=Object.freeze([pn,Cn,Mn,Dn,An,Ln,wn,or,ir,Tr,In,an,yr,gr,Rn]);var jn=class{constructor(t,r){this._ast=t,this._fragments=void 0,this._fragmentSpreads=new Map,this._recursivelyReferencedFragments=new Map,this._onError=r}get[Symbol.toStringTag](){return"ASTValidationContext"}reportError(t){this._onError(t)}getDocument(){return this._ast}getFragment(t){let r;if(this._fragments)r=this._fragments;else{r=Object.create(null);for(let n of this.getDocument().definitions)n.kind===u.FRAGMENT_DEFINITION&&(r[n.name.value]=n);this._fragments=r}return r[t]}getFragmentSpreads(t){let r=this._fragmentSpreads.get(t);if(!r){r=[];let n=[t],i;for(;i=n.pop();)for(let o of i.selections)o.kind===u.FRAGMENT_SPREAD?r.push(o):o.selectionSet&&n.push(o.selectionSet);this._fragmentSpreads.set(t,r)}return r}getRecursivelyReferencedFragments(t){let r=this._recursivelyReferencedFragments.get(t);if(!r){r=[];let n=Object.create(null),i=[t.selectionSet],o;for(;o=i.pop();)for(let s of this.getFragmentSpreads(o)){let a=s.name.value;if(n[a]!==!0){n[a]=!0;let c=this.getFragment(a);c&&(r.push(c),i.push(c.selectionSet))}}this._recursivelyReferencedFragments.set(t,r)}return r}};var St=class extends jn{constructor(t,r,n,i){super(r,i),this._schema=t,this._typeInfo=n,this._variableUsages=new Map,this._recursiveVariableUsages=new Map}get[Symbol.toStringTag](){return"ValidationContext"}getSchema(){return this._schema}getVariableUsages(t){let r=this._variableUsages.get(t);if(!r){let n=[],i=new nt(this._schema);we(t,rr(i,{VariableDefinition:()=>!1,Variable(o){n.push({node:o,type:i.getInputType(),defaultValue:i.getDefaultValue(),parentType:i.getParentInputType()})}})),r=n,this._variableUsages.set(t,r)}return r}getRecursiveVariableUsages(t){let r=this._recursiveVariableUsages.get(t);if(!r){r=this.getVariableUsages(t);for(let n of this.getRecursivelyReferencedFragments(t))r=r.concat(this.getVariableUsages(n));this._recursiveVariableUsages.set(t,r)}return r}getType(){return this._typeInfo.getType()}getParentType(){return this._typeInfo.getParentType()}getInputType(){return this._typeInfo.getInputType()}getParentInputType(){return this._typeInfo.getParentInputType()}getFieldDef(){return this._typeInfo.getFieldDef()}getDirective(){return this._typeInfo.getDirective()}getArgument(){return this._typeInfo.getArgument()}getEnumValue(){return this._typeInfo.getEnumValue()}};function Er(e,t,r=ot,n,i=new nt(e)){var o;let s=(o=n?.maxErrors)!==null&&o!==void 0?o:100;t||_(!1,"Must provide document."),Rt(e);let a=Object.freeze({}),c=[],p=new St(e,t,i,d=>{if(c.length>=s)throw c.push(new f("Too many validation errors, error limit reached. Validation aborted.")),a;c.push(d)}),l=Ur(r.map(d=>d(p)));try{we(t,rr(i,l))}catch(d){if(d!==a)throw d}return c}function Qi(e){let t;return function(n,i,o){t===void 0&&(t=new WeakMap);let s=t.get(n);s===void 0&&(s=new WeakMap,t.set(n,s));let a=s.get(i);a===void 0&&(a=new WeakMap,s.set(i,a));let c=a.get(o);return c===void 0&&(c=e(n,i,o),a.set(o,c)),c}}function Qn(e){return Promise.all(Object.values(e)).then(t=>{let r=Object.create(null);for(let[n,i]of Object.keys(e).entries())r[i]=t[n];return r})}function Bi(e,t,r){let n=r;for(let i of e)n=ce(n)?n.then(o=>t(o,i)):t(n,i);return n}function qi(e){return e instanceof Error?e:new Bn(e)}var Bn=class extends Error{constructor(t){super("Unexpected error value: "+y(t)),this.name="NonErrorThrown",this.thrownValue=t}};function _t(e,t,r){var n;let i=qi(e);return Ss(i)?i:new f(i.message,{nodes:(n=i.nodes)!==null&&n!==void 0?n:t,source:i.source,positions:i.positions,path:r,originalError:i})}function Ss(e){return Array.isArray(e.path)}var _s=Qi((e,t,r)=>ji(e.schema,e.fragments,e.variableValues,t,r));function Rr(e){arguments.length<2||_(!1,"graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.");let{schema:t,document:r,variableValues:n,rootValue:i}=e;xs(t,r,n);let o=Ls(e);if(!("schema"in o))return{errors:o};try{let{operation:s}=o,a=ws(o,s,i);return ce(a)?a.then(c=>vr(c,o.errors),c=>(o.errors.push(c),vr(null,o.errors))):vr(a,o.errors)}catch(s){return o.errors.push(s),vr(null,o.errors)}}function vr(e,t){return t.length===0?{data:e}:{errors:t,data:e}}function xs(e,t,r){t||_(!1,"Must provide document."),Rt(e),r==null||q(r)||_(!1,"Variables must be provided as an Object where each property is a variable value. Perhaps look to see if an unparsed JSON string was provided.")}function Ls(e){var t,r,n;let{schema:i,document:o,rootValue:s,contextValue:a,variableValues:c,operationName:p,fieldResolver:l,typeResolver:d,subscribeFieldResolver:m,options:T}=e,g,M=Object.create(null);for(let fe of o.definitions)switch(fe.kind){case u.OPERATION_DEFINITION:if(p==null){if(g!==void 0)return[new f("Must provide operation name if query contains multiple operations.")];g=fe}else((t=fe.name)===null||t===void 0?void 0:t.value)===p&&(g=fe);break;case u.FRAGMENT_DEFINITION:M[fe.name.value]=fe;break;default:}if(!g)return p!=null?[new f(`Unknown operation named "${p}".`)]:[new f("Must provide an operation.")];let Z=(r=g.variableDefinitions)!==null&&r!==void 0?r:[],J=Sn(i,Z,c??{},{maxErrors:(n=T?.maxCoercionErrors)!==null&&n!==void 0?n:50});return J.errors?J.errors:{schema:i,fragments:M,rootValue:s,contextValue:a,operation:g,variableValues:J.coerced,fieldResolver:l??br,typeResolver:d??Yn,subscribeFieldResolver:m??br,errors:[]}}function ws(e,t,r){let n=e.schema.getRootType(t.operation);if(n==null)throw new f(`Schema is not configured to execute ${t.operation} operation.`,{nodes:t});let i=hr(e.schema,e.fragments,e.variableValues,n,t.selectionSet),o=void 0;switch(t.operation){case U.QUERY:return Nr(e,n,r,o,i);case U.MUTATION:return Ds(e,n,r,o,i);case U.SUBSCRIPTION:return Nr(e,n,r,o,i)}}function Ds(e,t,r,n,i){return Bi(i.entries(),(o,[s,a])=>{let c=Ue(n,s,t.name),p=Ji(e,t,r,a,c);return p===void 0?o:ce(p)?p.then(l=>(o[s]=l,o)):(o[s]=p,o)},Object.create(null))}function Nr(e,t,r,n,i){let o=Object.create(null),s=!1;try{for(let[a,c]of i.entries()){let p=Ue(n,a,t.name),l=Ji(e,t,r,c,p);l!==void 0&&(o[a]=l,ce(l)&&(s=!0))}}catch(a){if(s)return Qn(o).finally(()=>{throw a});throw a}return s?Qn(o):o}function Ji(e,t,r,n,i){var o;let s=Ms(e.schema,t,n[0]);if(!s)return;let a=s.type,c=(o=s.resolve)!==null&&o!==void 0?o:e.fieldResolver,p=As(e,s,n,t,i);try{let l=fr(s,n[0],e.variableValues),d=e.contextValue,m=c(r,l,d,p),T;return ce(m)?T=m.then(g=>xt(e,a,n,p,i,g)):T=xt(e,a,n,p,i,m),ce(T)?T.then(void 0,g=>{let M=_t(g,n,te(i));return Ir(M,a,e)}):T}catch(l){let d=_t(l,n,te(i));return Ir(d,a,e)}}function As(e,t,r,n,i){return{fieldName:t.name,fieldNodes:r,returnType:t.type,parentType:n,path:i,schema:e.schema,fragments:e.fragments,rootValue:e.rootValue,operation:e.operation,variableValues:e.variableValues}}function Ir(e,t,r){if(O(t))throw e;return r.errors.push(e),null}function xt(e,t,r,n,i,o){if(o instanceof Error)throw o;if(O(t)){let s=xt(e,t.ofType,r,n,i,o);if(s===null)throw new Error(`Cannot return null for non-nullable field ${n.parentType.name}.${n.fieldName}.`);return s}if(o==null)return null;if(C(t))return Fs(e,t,r,n,i,o);if(W(t))return ks(t,o);if(oe(t))return Cs(e,t,r,n,i,o);if(x(t))return qn(e,t,r,n,i,o);$(!1,"Cannot complete value of unexpected output type: "+y(t))}function Fs(e,t,r,n,i,o){if(!tt(o))throw new f(`Expected Iterable, but did not find one for field "${n.parentType.name}.${n.fieldName}".`);let s=t.ofType,a=!1,c=Array.from(o,(p,l)=>{let d=Ue(i,l,void 0);try{let m;return ce(p)?m=p.then(T=>xt(e,s,r,n,d,T)):m=xt(e,s,r,n,d,p),ce(m)?(a=!0,m.then(void 0,T=>{let g=_t(T,r,te(d));return Ir(g,s,e)})):m}catch(m){let T=_t(m,r,te(d));return Ir(T,s,e)}});return a?Promise.all(c):c}function ks(e,t){let r=e.serialize(t);if(r==null)throw new Error(`Expected \`${y(e)}.serialize(${y(t)})\` to return non-nullable value, returned: ${y(r)}`);return r}function Cs(e,t,r,n,i,o){var s;let a=(s=t.resolveType)!==null&&s!==void 0?s:e.typeResolver,c=e.contextValue,p=a(o,c,n,t);return ce(p)?p.then(l=>qn(e,Yi(l,e,t,r,n,o),r,n,i,o)):qn(e,Yi(p,e,t,r,n,o),r,n,i,o)}function Yi(e,t,r,n,i,o){if(e==null)throw new f(`Abstract type "${r.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}". Either the "${r.name}" type should provide a "resolveType" function or each possible type should provide an "isTypeOf" function.`,n);if(x(e))throw new f("Support for returning GraphQLObjectType from resolveType was removed in graphql-js@16.0.0 please return type name instead.");if(typeof e!="string")throw new f(`Abstract type "${r.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}" with value ${y(o)}, received "${y(e)}".`);let s=t.schema.getType(e);if(s==null)throw new f(`Abstract type "${r.name}" was resolved to a type "${e}" that does not exist inside the schema.`,{nodes:n});if(!x(s))throw new f(`Abstract type "${r.name}" was resolved to a non-object type "${e}".`,{nodes:n});if(!t.schema.isSubType(r,s))throw new f(`Runtime Object type "${s.name}" is not a possible type for "${r.name}".`,{nodes:n});return s}function qn(e,t,r,n,i,o){let s=_s(e,t,r);if(t.isTypeOf){let a=t.isTypeOf(o,e.contextValue,n);if(ce(a))return a.then(c=>{if(!c)throw Hi(t,o,r);return Nr(e,t,o,i,s)});if(!a)throw Hi(t,o,r)}return Nr(e,t,o,i,s)}function Hi(e,t,r){return new f(`Expected value of type "${e.name}" but got: ${y(t)}.`,{nodes:r})}var Yn=function(e,t,r,n){if(q(e)&&typeof e.__typename=="string")return e.__typename;let i=r.schema.getPossibleTypes(n),o=[];for(let s=0;s<i.length;s++){let a=i[s];if(a.isTypeOf){let c=a.isTypeOf(e,t,r);if(ce(c))o[s]=c;else if(c)return a.name}}if(o.length)return Promise.all(o).then(s=>{for(let a=0;a<s.length;a++)if(s[a])return i[a].name})},br=function(e,t,r,n){if(q(e)||typeof e=="function"){let i=e[n.fieldName];return typeof i=="function"?e[n.fieldName](t,r,n):i}};function Ms(e,t,r){let n=r.name.value;return n===Fe.name&&e.getQueryType()===t?Fe:n===ke.name&&e.getQueryType()===t?ke:n===Ce.name?Ce:t.getFields()[n]}var E=require("@medplum/core"),zi=require("rfc6902"),Lt={READER:"reader",WRITER:"writer"},Or=class{async searchOne(t){return(await this.search({...t,count:1})).entry?.[0]?.resource}async searchResources(t){return(await this.search(t)).entry?.map(n=>n.resource)??[]}async conditionalCreate(t,r,n){if(r.resourceType!==t.resourceType)throw new E.OperationOutcomeError((0,E.badRequest)("Search type must match resource type for conditional update"));return r.count=2,r.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(r);if(i.length===1){let s=i[0];if(!n?.assignedId&&t.id&&t.id!==s.id)throw new E.OperationOutcomeError((0,E.badRequest)("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:i[0],outcome:E.allOk}}else if(i.length>1)throw new E.OperationOutcomeError(E.multipleMatches);return{resource:await this.createResource(t,n),outcome:E.created}},{serializable:!0})}async conditionalUpdate(t,r,n){if(r.resourceType!==t.resourceType)throw new E.OperationOutcomeError((0,E.badRequest)("Search type must match resource type for conditional update"));return r.count=2,r.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(r);if(i.length===0){if(t.id&&!n?.assignedId)throw new E.OperationOutcomeError((0,E.badRequest)("Cannot perform create as update with client-assigned ID",t.resourceType+".id"));return{resource:await this.createResource(t,n),outcome:E.created}}else if(i.length>1)throw new E.OperationOutcomeError(E.multipleMatches);let o=i[0];if(t.id&&t.id!==o.id)throw new E.OperationOutcomeError((0,E.badRequest)("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:await this.updateResource({...t,id:o.id},n),outcome:E.allOk}},{serializable:!0})}async conditionalDelete(t){t.count=2,t.sortRules=void 0,await this.withTransaction(async()=>{let r=await this.searchResources(t);if(r.length>1)throw new E.OperationOutcomeError(E.multipleMatches);if(!r.length)return;let n=r[0];await this.deleteResource(n.resourceType,n.id)},{serializable:!0})}async conditionalPatch(t,r){return t.count=2,t.sortRules=void 0,this.withTransaction(async()=>{let n=await this.searchResources(t);if(n.length>1)throw new E.OperationOutcomeError(E.multipleMatches);if(!n.length)throw new E.OperationOutcomeError(E.notFound);let i=n[0];return this.patchResource(i.resourceType,i.id,r)},{serializable:!0})}},Hn=class extends Or{constructor(){super(),this.resources=new Map,this.history=new Map}clear(){this.resources.clear(),this.history.clear()}setMode(t){}async createResource(t){let r=JSON.parse((0,E.stringify)(t));r.id||(r.id=this.generateId()),r.meta||(r.meta={}),r.meta.versionId||(r.meta.versionId=(0,E.generateId)()),r.meta.lastUpdated||(r.meta.lastUpdated=new Date().toISOString());let{resourceType:n,id:i}=r,o=this.resources.get(n);o||(o=new Map,this.resources.set(n,o)),o.set(i,r);let s=this.history.get(n);s||(s=new Map,this.history.set(n,s));let a=s.get(i);return a||(a=[],s.set(i,a)),a.push(r),(0,E.deepClone)(r)}generateId(){return(0,E.generateId)()}updateResource(t,r){if(!t.id)throw new E.OperationOutcomeError((0,E.badRequest)("Missing id"));if(r?.ifMatch){let i=r.ifMatch,o=this.resources.get(t.resourceType)?.get(t.id);if(!o)throw new E.OperationOutcomeError(E.notFound);if(o.meta?.versionId!==i)throw new E.OperationOutcomeError(E.preconditionFailed)}let n=(0,E.deepClone)(t);return n.meta&&(n.meta.versionId&&delete n.meta.versionId,n.meta.lastUpdated&&delete n.meta.lastUpdated),this.createResource(n)}async patchResource(t,r,n){let i=await this.readResource(t,r);try{let o=(0,zi.applyPatch)(i,n).filter(Boolean);if(o.length>0)throw new E.OperationOutcomeError((0,E.badRequest)(o.map(s=>s.message).join(`
54
+ `)))}catch(o){throw new E.OperationOutcomeError((0,E.normalizeOperationOutcome)(o))}return this.updateResource(i)}async readResource(t,r){let n=this.resources.get(t)?.get(r);if(!n)throw new E.OperationOutcomeError(E.notFound);return(0,E.deepClone)(n)}async readReference(t){let r=t.reference?.split("/");if(!r||r.length!==2)throw new E.OperationOutcomeError((0,E.badRequest)("Invalid reference"));return this.readResource(r[0],r[1])}async readReferences(t){return Promise.all(t.map(r=>this.readReference(r)))}async readHistory(t,r){await this.readResource(t,r);let n=(this.history.get(t)?.get(r)??[]).reverse().map(i=>({resource:(0,E.deepClone)(i)}));return{resourceType:"Bundle",type:"history",...n.length?{entry:n}:void 0}}async readVersion(t,r,n){await this.readResource(t,r);let i=this.history.get(t)?.get(r)?.find(o=>o.meta?.versionId===n);if(!i)throw new E.OperationOutcomeError(E.notFound);return(0,E.deepClone)(i)}async search(t){let{resourceType:r}=t,n=this.resources.get(r)??new Map,i=[];for(let s of n.values())(0,E.matchesSearchRequest)(s,t)&&i.push(s);let o=i.map(s=>({resource:(0,E.deepClone)(s)}));if(t.sortRules)for(let s of t.sortRules)o=o.sort((a,c)=>oa(a.resource,c.resource,s));return t.offset!==void 0&&(o=o.slice(t.offset)),t.count!==void 0&&(o=o.slice(0,t.count)),{resourceType:"Bundle",type:"searchset",entry:o.length?o:void 0,total:i.length}}async searchByReference(t,r,n){t.filters??=[];let i={};for(let o of n){t.filters.push({code:r,operator:E.Operator.EQUALS,value:o});let s=await this.search(t);i[o]=[];for(let a of s.entry??[])a.resource&&i[o].push(a.resource);t.filters.pop()}return i}async deleteResource(t,r){if(!this.resources.get(t)?.get(r))throw new E.OperationOutcomeError(E.notFound);this.resources.get(t)?.delete(r)}withTransaction(t){return t(void 0)}},oa=(e,t,r)=>{let i=E.globalSchema.types[e.resourceType]?.searchParams?.[r.code]?.expression;if(!i)return 0;let o=JSON.stringify((0,E.evalFhirPath)(i,e)),s=JSON.stringify((0,E.evalFhirPath)(i,t));return o.localeCompare(s)*(r.descending?-1:1)};var Ge=require("@medplum/core");var me=require("@medplum/core"),Xi=si(require("dataloader"));var Sr={base64Binary:N,boolean:B,canonical:N,code:N,date:N,dateTime:N,decimal:le,id:ve,instant:N,integer:le,markdown:N,number:le,oid:N,positiveInt:le,string:N,time:N,unsignedInt:le,uri:N,url:N,uuid:N,xhtml:N,"http://hl7.org/fhirpath/System.Boolean":B,"http://hl7.org/fhirpath/System.Date":N,"http://hl7.org/fhirpath/System.DateTime":N,"http://hl7.org/fhirpath/System.Decimal":le,"http://hl7.org/fhirpath/System.Integer":le,"http://hl7.org/fhirpath/System.String":N,"http://hl7.org/fhirpath/System.Time":N};function Ki(e,t,r){let n;if(t){let o=r._reference;delete r._reference,n={code:o,operator:me.Operator.EQUALS,value:(0,me.getReferenceString)(t)}}return r=Object.fromEntries(Object.entries(r).map(([o,s])=>[sa(o),s])),{searchRequest:(0,me.parseSearchRequest)(e,r),referenceFilter:n}}function Wi(e,t){let r=e.filters||[];e.filters=[t,...r]}function Zi(e,t,r){let{searchRequest:n,referenceFilter:i}=Ki(e,t,r);return i&&Wi(n,i),n}function Jn(e,t){e.count=Math.min(e.count??me.DEFAULT_SEARCH_COUNT,t??me.DEFAULT_MAX_SEARCH_COUNT)}function sa(e){return e.startsWith("_")?e:e.replaceAll("_","-")}function zn(e){return e.replaceAll("-","_")}function aa(e){return JSON.stringify(e,(r,n)=>n&&typeof n=="object"&&!Array.isArray(n)?Object.keys(n).sort((i,o)=>i.localeCompare(o)).reduce((i,o)=>(i[o]=n[o],i),{}):n)}async function _r(e,t,r,n){if(r.searchCount++,r.config?.graphqlMaxSearches&&r.searchCount>r.config.graphqlMaxSearches)throw new Error("Maximum number of searches exceeded");let i=n.fieldName,o=i.substring(0,i.length-4),{searchRequest:s,referenceFilter:a}=Ki(o,e,t);Jn(s,r.config?.graphqlMaxSearches);let c=r.config?.graphqlBatchedSearchSize??0;if(c===0||!a)return a&&Wi(s,a),(await r.repo.search(s)).entry?.map(m=>m.resource);let p=aa(s);return(r.searchDataLoaders[p]??=ca(r.repo,s,c)).load(a)}function ca(e,t,r){return new Xi.default(async n=>{let i=await e.searchByReference(t,n[0].code,n.map(o=>o.value));return n.map(o=>i[o.value])},{maxBatchSize:r})}function wt(e){let t={_count:{type:pe,description:"Specify how many elements to return from a repeating list."},_offset:{type:pe,description:"Specify the offset to start at for a repeating element."},_sort:{type:N,description:"Specify the sort order by comma-separated list of sort rules in priority order."},_id:{type:N,description:"Select resources based on the logical id of the resource."},_lastUpdated:{type:N,description:"Select resources based on the last time they were changed."},_filter:{type:N,description:" The _filter parameter provides a syntax for expressing a set of query expressions on the underlying resources."},_cursor:{type:N,description:"The _cursor parameter is used to retrieve the next page of results from a previous search."}},r=(0,me.getSearchParameters)(e);if(r)for(let[n,i]of Object.entries(r))t[zn(n)]={type:N,description:i.description};return t}function Xn(e,t){return e.fieldNodes.some(r=>r.selectionSet?.selections.some(n=>n.kind===u.FIELD&&n.name.value===t))}function eo(e){return{resourceType:"OperationOutcome",issue:e.map(t=>({severity:"error",code:"invalid",details:{text:t.message}}))}}var to={...Sr};function Dt(e,t){let r=to[e];return r||(r=ua(e,t),to[e]=r),r}function ua(e,t){let r=(0,Ge.getDataType)(e);return new Ae({name:e+t,description:r.description,fields:()=>pa(e,t)})}function pa(e,t){let r={};if((0,Ge.isResourceType)(e)){let n={description:"The type of resource",type:N};r.resourceType=n}return la(e,r,t),r}function la(e,t,r){let n=(0,Ge.getDataType)(e);for(let[i,o]of Object.entries(n.elements))for(let s of o.type)fa(t,i,o,s,r)}function fa(e,t,r,n,i){let o=n.code;if(o==="Resource")return;(o==="Element"||o==="BackboneElement")&&(o=r.type[0].code);let s={description:r.description,type:Dt(o,i)};r.max>1&&(s.type=new P(new R(Dt(o,i)))),r.min>0&&!t.endsWith("[x]")&&(s.type=new R(s.type));let a=t.split(".").pop().replace("[x]",(0,Ge.capitalize)(n.code));e[a]=s}var F=require("@medplum/core");var xr={...Sr};function je(e){let t=xr[e];return t||(t=Kn(e),xr[e]=t),t}function Kn(e){if(e==="ResourceList")return new De({name:"ResourceList",types:()=>(0,F.getResourceTypes)().map(je).filter(r=>!!r),resolveType:Ia});let t=(0,F.getDataType)(e);return new Y({name:e,description:t.description,fields:()=>da(e)})}function da(e){let t={};return ma(e,t),ga(e,t),t}function ma(e,t){let r=(0,F.getDataType)(e);(0,F.isResourceTypeSchema)(r)&&(t.resourceType={type:new R(N),description:"Resource Type"}),e==="Reference"&&(t.resource={description:"Reference",type:je("ResourceList"),resolve:Na});for(let[n,i]of Object.entries(r.elements))for(let o of i.type)ha(t,n,i,o)}function ha(e,t,r,n){let i=n.code;(i==="Element"||i==="BackboneElement")&&(i=r.type[0].code),i==="Resource"&&(i="ResourceList");let o={description:r.description,type:Ea(r,i,t),resolve:va};r.max>1&&(o.args=ya(i));let s=t.split(".").pop().replace("[x]",(0,F.capitalize)(n.code));e[s]=o}function ya(e){let t={_count:{type:pe,description:"Specify how many elements to return from a repeating list."},_offset:{type:pe,description:"Specify the offset to start at for a repeating element."}};if(!(0,F.isLowerCase)(e.charAt(0))){t.fhirpath={type:N,description:"A FHIRPath statement selecting which of the subnodes is to be included"};let r=(0,F.tryGetDataType)(e);if(r?.elements)for(let[n,i]of Object.entries(r.elements))for(let o of i.type)Ta(t,n,i,o)}return t}function Ta(e,t,r,n){let i=n.code,o=t.replace("[x]",(0,F.capitalize)(i));switch(i){case"canonical":case"code":case"id":case"oid":case"string":case"uri":case"url":case"uuid":case"http://hl7.org/fhirpath/System.String":e[o]={type:N,description:r.description};break}}function ga(e,t){for(let r of(0,F.getResourceTypes)()){let n=je(r),i=(0,F.getSearchParameters)(r),o={},s=0;if(i)for(let[a,c]of Object.entries(i))c.target?.includes(e)&&(o[zn(a)]={value:a},s++);if(s>0){let a=new be({name:e+"_"+r+"_reference",values:o}),c=wt(r);c._reference={type:new R(a),description:`Specify which property to use for reverse lookup for ${r}`},t[r+"List"]={type:new P(n),args:c,resolve:_r}}}}function Ea(e,t,r){let n=je(t);return e.max>1&&(n=new P(new R(n))),e.min!==0&&!r.endsWith("[x]")&&(n=new R(n)),n}async function va(e,t,r,n){let i=e?.[n.fieldName];if(!t||!i)return i;let{_offset:o,_count:s,fhirpath:a,...c}=t,p=i;for(let[l,d]of Object.entries(c))p=p.filter(m=>m[l]===d);return a&&(p=p.filter(l=>(0,F.toJsBoolean)((0,F.evalFhirPathTyped)(a,[(0,F.toTypedValue)(l)])))),o&&(p=p.slice(o)),s&&(p=p.slice(0,s)),p}async function Na(e,t,r){if((0,F.isReference)(e))try{return await r.dataLoader.load(e)}catch(n){throw new F.OperationOutcomeError((0,F.normalizeOperationOutcome)(n),n)}}function Ia(e){let t=e?.resourceType;if(t)return je(t).name}var ba=new k.LRUCache,Wn;async function no(e,t,r,n){let{query:i,operationName:o,variables:s}=e.body;if(!i)return[(0,k.badRequest)("Must provide query.")];let a;try{a=Gt(i)}catch{return[(0,k.badRequest)("GraphQL syntax error.")]}let c=Sa(),p=[...ot,Pa(r,e.config?.graphqlMaxDepth),$a(r)],l=Er(c,a,p);if(l.length>0)return[eo(l)];let d=Ra(i);if(d&&!r.options?.introspectionEnabled)return[k.forbidden];!n?.batch&&!Oa(i)&&t.setMode(Lt.READER);let m=new ro.default(g=>t.readReferences(g)),T=d&&ba.get(i);if(!T){let g={repo:t,config:e.config,dataLoader:m,searchCount:0,searchDataLoaders:Object.create(null)};T=await Rr({schema:c,document:a,contextValue:g,operationName:o,variableValues:s})}return[k.allOk,T,{contentType:k.ContentType.JSON}]}function Ra(e){return e.includes("query IntrospectionQuery")||e.includes("__schema")}function Oa(e){return e.includes("mutation")}function Sa(){return Wn||(Wn=_a()),Wn}function _a(){for(let r of(0,k.getResourceTypes)())xr[r]=Kn(r);let e={},t={};for(let r of(0,k.getResourceTypes)()){let n=je(r);e[r]={type:n,args:{id:{type:new R(ve),description:r+" ID"}},resolve:Aa},e[r+"List"]={type:new P(n),args:wt(r),resolve:_r},e[r+"Connection"]={type:wa(r,n),args:wt(r),resolve:Da},t[r+"Create"]={type:n,args:xa(r),resolve:Fa},t[r+"Update"]={type:n,args:La(r),resolve:ka},t[r+"Delete"]={type:n,args:{id:{type:new R(ve),description:r+" ID"}},resolve:Ca}}return new Me({query:new Y({name:"QueryType",fields:e}),mutation:new Y({name:"MutationType",fields:t})})}function xa(e){return{res:{type:new R(Dt(e,"Create")),description:e+" Create"}}}function La(e){return{id:{type:new R(ve),description:e+" ID"},res:{type:new R(Dt(e,"Update")),description:e+" Update"}}}function wa(e,t){return new Y({name:e+"Connection",fields:{count:{type:pe},offset:{type:pe},pageSize:{type:pe},first:{type:N},previous:{type:N},next:{type:N},last:{type:N},edges:{type:new P(new Y({name:e+"ConnectionEdge",fields:{mode:{type:N},score:{type:le},resource:{type:t}}}))}}})}async function Da(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-10),s=Zi(o,e,t);Xn(n,"count")&&(s.total="accurate"),Xn(n,"edges")||(s.count=0),Jn(s,r.config?.graphqlMaxSearches);let a=await r.repo.search(s);return{count:a.total,offset:s.offset??0,pageSize:s.count??k.DEFAULT_SEARCH_COUNT,edges:a.entry?.map(c=>({mode:c.search?.mode,score:c.search?.score,resource:c.resource})),next:ja(a)}}async function Aa(e,t,r,n){try{return await r.dataLoader.load({reference:`${n.fieldName}/${t.id}`})}catch(i){throw new k.OperationOutcomeError((0,k.normalizeOperationOutcome)(i),i)}}async function Fa(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-6),s=t.res;if(s.resourceType!==o)throw new k.OperationOutcomeError((0,k.badRequest)("Invalid resourceType"));return r.repo.createResource((0,k.deepClone)(s))}async function ka(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-6),s=t.res,a=t.id;if(s.resourceType!==o)throw new k.OperationOutcomeError((0,k.badRequest)("Invalid resourceType"));if(a!==s.id)throw new k.OperationOutcomeError((0,k.badRequest)("Invalid ID"));return r.repo.updateResource((0,k.deepClone)(s))}async function Ca(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-6);await r.repo.deleteResource(o,t.id)}var Ma=12,Pa=(e,t=Ma)=>r=>new Zn(r,e,t),Zn=class{constructor(t,r,n){this.context=t,this.router=r,this.fragmentDepths=Object.create(null),this.maxDepth=n}OperationDefinition(t){let r=this.getDepth(...t.selectionSet.selections);r.depth>this.maxDepth&&this.router.log("warn","Query max depth too high",{depth:r.depth,limit:this.maxDepth,query:t.loc?.source?.body})}getDepth(...t){let r={depth:-1};for(let n of t){let i={depth:0};if(n.kind===u.FIELD)n.selectionSet?.selections?(i=this.getDepth(...n.selectionSet.selections),i.depth+=1):i={depth:0,node:n};else if(n.kind===u.FRAGMENT_SPREAD){let o=n.name.value,s=this.context.getFragment(o),a=this.fragmentDepths[o];a?i=a:s&&(i=this.getDepth(...s.selectionSet.selections),this.fragmentDepths[o]=i)}else n.kind===u.INLINE_FRAGMENT&&(i=this.getDepth(...n.selectionSet.selections));if(i.depth>this.maxDepth)return i;i.depth>r.depth&&(r=i)}return r}},Ua=1e4,$a=(e,t)=>r=>new ei(r,e,t),ei=class{constructor(t,r,n){this.context=t,this.maxCost=n?.maxCost??Ua,this.debug=n?.debug??!1,this.router=r,this.fragmentCosts=Object.create(null)}OperationDefinition(t){let r=0;for(let n of t.selectionSet.selections){let i=performance.now(),o=this.calculateCost(n);r+=o,this.log(n.kind,"node has final cost",o,"(",performance.now()-i,"ms)"),r>this.maxCost&&this.router.log("warn","GraphQL query too complex",{cost:r,limit:this.maxCost,query:t.loc?.source?.body})}}calculateCost(...t){let r=0;for(let n of t){if(n.kind===u.FIELD&&n.selectionSet){let i=0,o=1;Va(n)?(this.log("Found search field",n.name.value),i=8,o=this.getCount(n.arguments)??20):Ga(n)&&(this.log("Found linked resource"),i=1,o=2);let s=i+o*this.calculateCost(...n.selectionSet.selections);s&&this.log("Field",n.name.value,"costs",s),r+=s}else if(n.kind===u.FRAGMENT_SPREAD){let i=n.name.value,o=this.context.getFragment(i),s=this.fragmentCosts[i];if(s!==void 0)this.log("Fragment",i,"costs",s,"(cached)"),r+=s;else if(o){let a=this.calculateCost(...o.selectionSet.selections);this.fragmentCosts[i]=a,this.log("Fragment",i,"costs",a),r+=a}}else if(n.kind===u.INLINE_FRAGMENT){let i=this.calculateCost(...n.selectionSet.selections);this.log("Inline fragment on",n.typeCondition?.name.value,"costs",i),r+=i}if(r>this.maxCost)return r}return r}getCount(t){let r=t?.find(n=>n.name.value==="_count");if(r?.value.kind===u.INT)return parseInt(r.value.value,10)}log(...t){this.debug&&console.log(...t)}};function Va(e){return e.name.value.endsWith("List")}function Ga(e){return e.name.value==="resource"}function ja(e){let t=e.link?.find(r=>r.relation==="next")?.url;if(t)return new URL(t).searchParams.get("_cursor")||void 0}var At=class{constructor(){this.routes=[]}add(t,r,n,i){let o=r.split("/").filter(s=>!!s).map(s=>s.startsWith(":")?{value:s.substring(1),param:!0}:{value:s});this.routes.push({method:t,path:o,handler:n,data:i})}find(t,r){let n=r.indexOf("?"),i=n>-1,o=r.substring(0,i?n:r.length).split("/").filter(Boolean),s,a=-1;for(let c of this.routes){let p=Qa(c,t,o);p>a&&(s=c,a=p)}if(s)return{handler:s.handler,path:o.join("/"),params:Ba(s,o),query:i?qa(r):void 0,data:s.data}}};function Qa(e,t,r){if(t!==e.method||r.length!==e.path.length)return-1;let n=0;for(let i=0;i<r.length;i++)if(!e.path[i].param){if(r[i]!==e.path[i].value)return-1;n++}return n}function Ba(e,t){let r=Object.create(null);for(let n=0;n<t.length;n++)e.path[n].param&&(r[e.path[n].value]=t[n]);return r}function qa(e){let t=new URL(e,"https://example.com/"),r=Object.create(null),n=t.searchParams;for(let i of n.keys()){let o=n.getAll(i);r[i]=o.length===1?o[0]:o}return r}async function Ya(e,t,r){let n=e.body;if(n.resourceType!=="Bundle")return[(0,S.badRequest)("Not a bundle")];let i=await kt(e,t,r,n);return[S.allOk,i]}async function Ha(e,t,r,n){ri(e,t,n);let{resourceType:i}=e.params,o=await t.search((0,S.parseSearchRequest)(i,e.query));return[S.allOk,o]}async function Ja(e,t,r,n){ri(e,t,n);let i=(0,S.parseSearchRequest)("MultipleTypes",e.query);if(!i.types||i.types.length===0)return[(0,S.badRequest)("No types specified")];let o=await t.search(i);return[S.allOk,o]}async function za(e,t,r,n){ri(e,t,n);let{resourceType:i}=e.params,o=e.body,s=await t.search((0,S.parseSearchRequest)(i,o));return[S.allOk,s]}function ri(e,t,r){!r?.batch&&e.config?.searchOnReader&&t.setMode(Lt.READER)}async function Xa(e,t,r,n){let{resourceType:i}=e.params,o=e.body,s=!!n?.batch;if(e.query?._account&&typeof e.query._account=="string"&&(o.meta=o.meta||{},o.meta.account={reference:e.query._account}),e.headers?.["if-none-exist"]){let a=(0,S.singularize)(e.headers["if-none-exist"]),c=await t.conditionalCreate(o,(0,S.parseSearchRequest)(`${i}?${a}`),{assignedId:s});return[c.outcome,c.resource]}return oo(i,o,t,{assignedId:s})}async function oo(e,t,r,n){if(t.resourceType!==e)return[(0,S.badRequest)(`Incorrect resource type: expected ${e}, but found ${t.resourceType||"<EMPTY>"}`)];let i=await r.createResource(t,n);return[S.created,i]}async function Ka(e,t){let{resourceType:r,id:n}=e.params,i=await t.readResource(r,n);return[S.allOk,i]}async function Wa(e,t){let{resourceType:r,id:n}=e.params,i=io(e.query,"_offset"),o=io(e.query,"_count"),s=await t.readHistory(r,n,{offset:i,limit:o});return[S.allOk,s]}async function Za(e,t){let{resourceType:r,id:n,vid:i}=e.params,o=await t.readVersion(r,n,i);return[S.allOk,o]}async function ec(e,t){let{resourceType:r,id:n}=e.params,i=e.body;return so(r,n,i,t,{ifMatch:sc(e.headers?.["if-match"])})}async function so(e,t,r,n,i){if(r.resourceType!==e)return[(0,S.badRequest)("Incorrect resource type")];if(r.id!==t)return[(0,S.badRequest)("Incorrect resource ID")];let o=await n.updateResource(r,i);return[S.allOk,o]}async function tc(e,t,r,n){let{resourceType:i}=e.params,o=e.body,s=(0,S.parseSearchRequest)(i,e.query),a=await t.conditionalUpdate(o,s,{assignedId:n?.batch});return[a.outcome,a.resource]}async function rc(e,t){let{resourceType:r,id:n}=e.params;return await t.deleteResource(r,n),[S.allOk]}async function nc(e,t){let{resourceType:r}=e.params,n=(0,S.parseSearchRequest)(r,e.query);return await t.conditionalDelete(n),[S.allOk]}async function ic(e,t){let{resourceType:r,id:n}=e.params,i=e.body;if(!i)return[(0,S.badRequest)("Empty patch body")];if(!Array.isArray(i))return[(0,S.badRequest)("Patch body must be an array")];let o=await t.patchResource(r,n,i);return[S.allOk,o]}async function oc(e,t){let{resourceType:r}=e.params,n=e.body;if(!n)return[(0,S.badRequest)("Empty patch body")];if(!Array.isArray(n))return[(0,S.badRequest)("Patch body must be an array")];let i=(0,S.parseSearchRequest)(r,e.query),o=await t.conditionalPatch(i,n);return[S.allOk,o]}var ti=class extends S.EventTarget{constructor(r={}){super();this.router=new At;this.options=r,this.router.add("GET","",Ja,{interaction:"search-system"}),this.router.add("POST","",Ya,{interaction:"batch"}),this.router.add("GET",":resourceType",Ha,{interaction:"search-type"}),this.router.add("POST",":resourceType/_search",za,{interaction:"search-type"}),this.router.add("POST",":resourceType",Xa,{interaction:"create"}),this.router.add("GET",":resourceType/:id",Ka,{interaction:"read"}),this.router.add("GET",":resourceType/:id/_history",Wa,{interaction:"history-instance"}),this.router.add("GET",":resourceType/:id/_history/:vid",Za,{interaction:"vread"}),this.router.add("PUT",":resourceType/:id",ec,{interaction:"update"}),this.router.add("PUT",":resourceType",tc,{interaction:"update"}),this.router.add("DELETE",":resourceType/:id",rc,{interaction:"delete"}),this.router.add("DELETE",":resourceType",nc,{interaction:"delete"}),this.router.add("PATCH",":resourceType/:id",ic,{interaction:"patch"}),this.router.add("PATCH",":resourceType",oc,{interaction:"patch"}),this.router.add("POST","$graphql",no,{interaction:"operation"})}add(r,n,i,o){this.router.add(r,n,i,{interaction:o??"operation"})}find(r,n){return this.router.find(r,n)}async handleRequest(r,n){let i=r.url;if(r.pathname)throw new S.OperationOutcomeError((0,S.badRequest)("FhirRequest must specify url instead of pathname"));let o=this.find(r.method,i);if(!o)return[S.notFound];let{handler:s,path:a,params:c,query:p}=o;r.params=c,r.pathname=a,p&&(r.query=p);try{return await s(r,n,this)}catch(l){return[(0,S.normalizeOperationOutcome)(l)]}}log(r,n,i){let o={type:r,message:n,data:i};this.dispatchEvent(o)}};function sc(e){if(!e)return;let t=/"([^"]+)"/.exec(e);return t?t[1]:void 0}function io(e,t){let r=e[t],n;return Array.isArray(r)?n=r[r.length-1]:n=r,n?parseInt(n,10):void 0}function ac(e,t,r){return{method:e,url:t,pathname:"",query:{},params:{},body:r}}0&&(module.exports={FhirRepository,FhirRouter,MemoryRepository,RepositoryMode,Router,createResourceImpl,makeSimpleRequest,processBatch,updateResourceImpl});
55
55
  //# sourceMappingURL=index.cjs.map