@medplum/fhir-router 4.3.3 → 4.3.5

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
- import{badRequest as K,getReferenceString as ct,getStatus as li,isOk as fi,normalizeOperationOutcome as vo,notFound as ci,OperationOutcomeError as M,parseSearchRequest as ui}from"@medplum/core";var No=50,Io=8,bo=/urn(:|%3A)uuid(:|%3A)[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/,pi="urn:uuid";async function Cn(e,t,n,r){return new kn(n,t,r,e).run()}var kn=class{constructor(t,n,r,i){this.router=t,this.repo=n,this.bundle=r,this.req=i,this.resolvedIdentities=Object.create(null)}async run(){let t=this.bundle.type;if(t!=="batch"&&t!=="transaction")throw new M(K("Unrecognized bundle type: "+t));let n=new Array(this.bundle.entry?.length??0),r=await this.preprocessBundle(n);if(!this.isTransaction())return this.processBatch(r,n);if(r.updates>No)throw new M(K("Transaction contains more update operations than allowed"));if(r.requiresStrongTransaction&&n.length>Io)throw new M(K("Transaction requires strict isolation but has too many entries"));return this.repo.withTransaction(()=>this.processBatch(r,n),{serializable:r.requiresStrongTransaction})}async preprocessBundle(t){let n=this.bundle.entry;if(!n?.length)throw new M(K("Missing bundle entries"));let r={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<n.length;c++){let p=n[c];if(!p.request?.method){t[c]=at(K("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]=at(d);continue}throw new M(d)}let T=this.getRouteForEntry(p)?.data?.interaction;if(!T||!r[T])throw new M(K(`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),r[T].push(c)}let a=[];for(let c of Object.values(r))a.push(...c);return{ordering:a,requiresStrongTransaction:o,updates:s}}async preprocessEntry(t,n,r){if(!t.request?.url)return K("Missing Bundle entry request URL",`Bundle.entry[${n}].request.url`);let i;try{i=await this.resolveIdentity(t,`Bundle.entry[${n}]`)}catch(o){if(o instanceof M)return o.outcome;throw o}if(i&&(this.resolvedIdentities[i.placeholder]=i.reference,this.isTransaction())){if(r.has(i.reference))throw new M(K("Duplicate resource identity found in Bundle"));r.add(i.reference)}}async resolveIdentity(t,n){let i=this.getRouteForEntry(t)?.data?.interaction;if(!i)throw new M(ci);switch(i){case"create":return this.resolveCreateIdentity(t);case"delete":case"update":case"patch":return this.resolveModificationIdentity(t,n);default:return}}getRouteForEntry(t){return this.router.find(t.request?.method,t.request?.url??"")}async resolveCreateIdentity(t){if(!t.fullUrl?.startsWith(pi))return;let n=t.fullUrl;if(t.request?.ifNoneExist){let r=await this.repo.searchResources(ui(t.request.url+"?"+t.request.ifNoneExist));if(r.length===1)return{placeholder:n,reference:ct(r[0])}}if(t.resource)return t.resource.id=this.repo.generateId(),{placeholder:n,reference:ct(t.resource)}}async resolveModificationIdentity(t,n){if(!t.fullUrl?.startsWith(pi))return;let r=t.fullUrl;if(t.request?.url?.includes("?")){let i=t.request.method,o=ui(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 M(K("Cannot provide ID for create by update"));return t.resource.id=this.repo.generateId(),{placeholder:r,reference:ct(t.resource)}}return;default:throw new M(K(`Conditional ${t.request.method} did not match any resources`,n+".request.url"))}if(a)throw new M(K(`Conditional ${t.request.method} matched multiple resources`,n+".request.url"));let c=ct(s);return t.request.url=c,t.resource&&(t.resource.id=s.id),{placeholder:r,reference:c}}if(t.request?.url.includes("/"))return{placeholder:r,reference:t.request.url}}async processBatch(t,n){let r=this.bundle.type,i=this.bundle.entry;if(!i)throw new M(K("Missing bundle entry"));let o={type:"batch",bundleType:r,count:i.length,size:JSON.stringify(this.bundle).length};this.router.dispatchEvent(o);let s=0;for(let c=0;c<t.ordering.length;c++){let p=t.ordering[c],l=i[p],d=this.rewriteIdsInObject(l);try{n[p]=await this.processBatchEntry(d)}catch(m){if(this.isTransaction())throw m;if(m instanceof M&&li(m.outcome)===429){for(let T=c;T<t.ordering.length;T++){let g=t.ordering[T];n[g]=at(m.outcome)}s+=t.ordering.length-c;break}s++,n[p]=at(vo(m));continue}}let a={type:"batch",bundleType:r,errors:s};return this.router.dispatchEvent(a),{resourceType:"Bundle",type:`${r}-response`,entry:n}}async processBatchEntry(t){let n=this.getRouteForEntry(t);if(!n)throw new M(ci);let r=this.parseBatchRequest(t,n),[i,o]=await n.handler(r,this.repo,this.router,{batch:!0});if(!fi(i)&&this.isTransaction())throw new M(i);return at(i,o)}parseBatchRequest(t,n){let r=t.request,i=Object.create(null);r.ifNoneExist&&(i["if-none-exist"]=r.ifNoneExist),r.ifMatch&&(i["if-match"]=r.ifMatch),r.ifNoneMatch&&(i["if-none-match"]=r.ifNoneMatch),r.ifModifiedSince&&(i["if-modified-since"]=r.ifModifiedSince);let o;return r.method==="PATCH"?o=this.parsePatchBody(t):o=t.resource,{method:r.method,url:n?.query?r.url.slice(0,r.url.indexOf("?")):r.url,pathname:"",params:n?.params??Object.create(null),query:n?.query??Object.create(null),body:o,headers:i}}parsePatchBody(t){let n=t.resource,r;if(n?.resourceType==="Binary"){if(!n.data)throw new M(K("Missing entry.resource.data"));r=JSON.parse(Buffer.from(n.data,"base64").toString("utf8"))}else if(n?.resourceType==="Parameters"){if(n.parameter){r=[];for(let i of n.parameter)if(i.name==="operation"){let o=this.parsePatchParameter(i);r.push(o)}}}else throw new M(K("Patch entry must include a Binary or Parameters resource"));if(!Array.isArray(r))throw new M(K("Decoded PATCH body must be an array"));return this.rewriteIdsInArray(r)}parsePatchParameter(t){let n=t.part?.find(i=>i.name==="op")?.valueCode;if(!n)throw new M(K("PATCH Parameters missing op"));let r={op:n};switch(n){case"add":case"replace":case"test":for(let i of t.part)i.name==="path"?r.path=i.valueString:i.name==="value"&&(r.value=JSON.parse(i.valueString??""));break;case"copy":case"move":for(let i of t.part)i.name==="path"?r.path=i.valueString:i.name==="from"&&(r.from=i.valueString);break;case"remove":r.path=t.part?.find(i=>i.name==="path")?.valueString;break}return r}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(n=>this.rewriteIds(n))}rewriteIdsInObject(t){return Object.fromEntries(Object.entries(t).map(([n,r])=>[n,this.rewriteIds(r)]))}rewriteIdsInString(t){let n=bo.exec(t)?.[0];if(!n)return t;let r=n.replaceAll("%3A",":"),i=this.resolvedIdentities[r];return i?t.replaceAll(n,i):t}isTransaction(){return this.bundle.type==="transaction"&&!!this.req.config?.transactions}};function at(e,t){return{response:{outcome:e,status:li(e).toString(),location:fi(e)&&t?.id?ct(t):void 0},resource:t}}import{EventTarget as wc,OperationOutcomeError as Dc,allOk as fe,badRequest as Ie,created as Ac,normalizeOperationOutcome as Fc,notFound as kc,parseSearchRequest as je,singularize as Cc}from"@medplum/core";import{allOk as tc,badRequest as kt,ContentType as nc,deepClone as To,DEFAULT_SEARCH_COUNT as rc,forbidden as ic,getResourceTypes as yo,LRUCache as oc,normalizeOperationOutcome as sc,OperationOutcomeError as Dn}from"@medplum/core";import ac from"dataloader";function R(e,t){if(!!!e)throw new Error(t)}function se(e){return typeof e?.then=="function"}function G(e){return typeof e=="object"&&e!==null}function k(e,t){if(!!!e)throw new Error(t??"Unexpected invariant triggered.")}var Ro=/\r\n|[\n\r]/g;function Qe(e,t){let n=0,r=1;for(let i of e.body.matchAll(Ro)){if(typeof i.index=="number"||k(!1),i.index>=t)break;n=i.index+i[0].length,r+=1}return{line:r,column:t+1-n}}function Mn(e){return Ct(e.source,Qe(e.source,e.start))}function Ct(e,t){let n=e.locationOffset.column-1,r="".padStart(n)+e.body,i=t.line-1,o=e.locationOffset.line-1,s=t.line+o,a=t.line===1?n:0,c=t.column+a,p=`${e.name}:${s}:${c}
1
+ import{append as vo,badRequest as K,getReferenceString as ct,getStatus as li,isOk as fi,normalizeOperationOutcome as No,notFound as ci,OperationOutcomeError as M,parseSearchRequest as ui}from"@medplum/core";var Io=50,bo=8,Ro=/urn(:|%3A)uuid(:|%3A)[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/,pi="urn:uuid";async function Cn(e,t,n,r){return new kn(n,t,r,e).run()}var kn=class{constructor(t,n,r,i){this.router=t,this.repo=n,this.bundle=r,this.req=i,this.resolvedIdentities=Object.create(null)}async run(){let t=this.bundle.type;if(t!=="batch"&&t!=="transaction")throw new M(K("Unrecognized bundle type: "+t));let n=new Array(this.bundle.entry?.length??0),r=await this.preprocessBundle(n);if(!this.isTransaction())return this.processBatch(r,n);if(r.updates>Io)throw new M(K("Transaction contains more update operations than allowed"));if(r.requiresStrongTransaction&&n.length>bo)throw new M(K("Transaction requires strict isolation but has too many entries"));return this.repo.withTransaction(()=>this.processBatch(r,n),{serializable:r.requiresStrongTransaction})}async preprocessBundle(t){let n=this.bundle.entry;if(!n?.length)throw new M(K("Missing bundle entries"));let r={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<n.length;c++){let p=n[c];if(!p.request?.method){t[c]=at(K("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]=at(d);continue}throw new M(d)}let T=this.getRouteForEntry(p)?.data?.interaction;if(!T||!r[T])throw new M(K(`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),r[T].push(c)}let a=[];for(let c of Object.values(r))a.push(...c);return{ordering:a,requiresStrongTransaction:o,updates:s}}async preprocessEntry(t,n,r){if(!t.request?.url)return K("Missing Bundle entry request URL",`Bundle.entry[${n}].request.url`);let i;try{i=await this.resolveIdentity(t,`Bundle.entry[${n}]`)}catch(o){if(o instanceof M)return o.outcome;throw o}if(i&&(this.resolvedIdentities[i.placeholder]=i.reference,this.isTransaction())){if(r.has(i.reference))throw new M(K("Duplicate resource identity found in Bundle"));r.add(i.reference)}}async resolveIdentity(t,n){let i=this.getRouteForEntry(t)?.data?.interaction;if(!i)throw new M(ci);switch(i){case"create":return this.resolveCreateIdentity(t);case"delete":case"update":case"patch":return this.resolveModificationIdentity(t,n);default:return}}getRouteForEntry(t){return this.router.find(t.request?.method,t.request?.url??"")}async resolveCreateIdentity(t){if(!t.fullUrl?.startsWith(pi))return;let n=t.fullUrl;if(t.request?.ifNoneExist){let r=await this.repo.searchResources(ui(t.request.url+"?"+t.request.ifNoneExist));if(r.length===1)return{placeholder:n,reference:ct(r[0])}}if(t.resource)return t.resource.id=this.repo.generateId(),{placeholder:n,reference:ct(t.resource)}}async resolveModificationIdentity(t,n){if(!t.fullUrl?.startsWith(pi))return;let r=t.fullUrl;if(t.request?.url?.includes("?")){let i=t.request.method,o=ui(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 M(K("Cannot provide ID for create by update"));return t.resource.id=this.repo.generateId(),{placeholder:r,reference:ct(t.resource)}}return;default:throw new M(K(`Conditional ${t.request.method} did not match any resources`,n+".request.url"))}if(a)throw new M(K(`Conditional ${t.request.method} matched multiple resources`,n+".request.url"));let c=ct(s);return t.request.url=c,t.resource&&(t.resource.id=s.id),{placeholder:r,reference:c}}if(t.request?.url.includes("/"))return{placeholder:r,reference:t.request.url}}async processBatch(t,n){let r=this.bundle.type,i=this.bundle.entry;if(!i)throw new M(K("Missing bundle entry"));let o={type:"batch",bundleType:r,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{n[p]=await this.processBatchEntry(d)}catch(m){if(this.isTransaction())throw m;if(s=vo(s,m.message),m instanceof M&&li(m.outcome)===429){for(let T=c;T<t.ordering.length;T++){let g=t.ordering[T];n[g]=at(m.outcome)}break}n[p]=at(No(m));continue}}let a={type:"batch",bundleType:r,errors:s};return this.router.dispatchEvent(a),{resourceType:"Bundle",type:`${r}-response`,entry:n}}async processBatchEntry(t){let n=this.getRouteForEntry(t);if(!n)throw new M(ci);let r=this.parseBatchRequest(t,n),[i,o]=await n.handler(r,this.repo,this.router,{batch:!0});if(!fi(i)&&this.isTransaction())throw new M(i);return at(i,o)}parseBatchRequest(t,n){let r=t.request,i=Object.create(null);r.ifNoneExist&&(i["if-none-exist"]=r.ifNoneExist),r.ifMatch&&(i["if-match"]=r.ifMatch),r.ifNoneMatch&&(i["if-none-match"]=r.ifNoneMatch),r.ifModifiedSince&&(i["if-modified-since"]=r.ifModifiedSince);let o;return r.method==="PATCH"?o=this.parsePatchBody(t):o=t.resource,{method:r.method,url:n?.query?r.url.slice(0,r.url.indexOf("?")):r.url,pathname:"",params:n?.params??Object.create(null),query:n?.query??Object.create(null),body:o,headers:i}}parsePatchBody(t){let n=t.resource,r;if(n?.resourceType==="Binary"){if(!n.data)throw new M(K("Missing entry.resource.data"));r=JSON.parse(Buffer.from(n.data,"base64").toString("utf8"))}else if(n?.resourceType==="Parameters"){if(n.parameter){r=[];for(let i of n.parameter)if(i.name==="operation"){let o=this.parsePatchParameter(i);r.push(o)}}}else throw new M(K("Patch entry must include a Binary or Parameters resource"));if(!Array.isArray(r))throw new M(K("Decoded PATCH body must be an array"));return this.rewriteIdsInArray(r)}parsePatchParameter(t){let n=t.part?.find(i=>i.name==="op")?.valueCode;if(!n)throw new M(K("PATCH Parameters missing op"));let r={op:n};switch(n){case"add":case"replace":case"test":for(let i of t.part)i.name==="path"?r.path=i.valueString:i.name==="value"&&(r.value=JSON.parse(i.valueString??""));break;case"copy":case"move":for(let i of t.part)i.name==="path"?r.path=i.valueString:i.name==="from"&&(r.from=i.valueString);break;case"remove":r.path=t.part?.find(i=>i.name==="path")?.valueString;break}return r}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(n=>this.rewriteIds(n))}rewriteIdsInObject(t){return Object.fromEntries(Object.entries(t).map(([n,r])=>[n,this.rewriteIds(r)]))}rewriteIdsInString(t){let n=Ro.exec(t)?.[0];if(!n)return t;let r=n.replaceAll("%3A",":"),i=this.resolvedIdentities[r];return i?t.replaceAll(n,i):t}isTransaction(){return this.bundle.type==="transaction"&&!!this.req.config?.transactions}};function at(e,t){return{response:{outcome:e,status:li(e).toString(),location:fi(e)&&t?.id?ct(t):void 0},resource:t}}import{EventTarget as Dc,OperationOutcomeError as Ac,allOk as fe,badRequest as Ie,created as Fc,normalizeOperationOutcome as kc,notFound as Cc,parseSearchRequest as je,singularize as Mc}from"@medplum/core";import{allOk as nc,badRequest as kt,ContentType as rc,deepClone as To,DEFAULT_SEARCH_COUNT as ic,forbidden as oc,getResourceTypes as yo,LRUCache as sc,normalizeOperationOutcome as ac,OperationOutcomeError as Dn}from"@medplum/core";import cc from"dataloader";function R(e,t){if(!!!e)throw new Error(t)}function se(e){return typeof e?.then=="function"}function G(e){return typeof e=="object"&&e!==null}function k(e,t){if(!!!e)throw new Error(t??"Unexpected invariant triggered.")}var Oo=/\r\n|[\n\r]/g;function Qe(e,t){let n=0,r=1;for(let i of e.body.matchAll(Oo)){if(typeof i.index=="number"||k(!1),i.index>=t)break;n=i.index+i[0].length,r+=1}return{line:r,column:t+1-n}}function Mn(e){return Ct(e.source,Qe(e.source,e.start))}function Ct(e,t){let n=e.locationOffset.column-1,r="".padStart(n)+e.body,i=t.line-1,o=e.locationOffset.line-1,s=t.line+o,a=t.line===1?n:0,c=t.column+a,p=`${e.name}:${s}:${c}
2
2
  `,l=r.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 D=0;D<d.length;D+=80)g.push(d.slice(D,D+80));return p+di([[`${s} |`,g[0]],...g.slice(1,m+1).map(D=>["|",D]),["|","^".padStart(T)],["|",g[m+1]]])}return p+di([[`${s-1} |`,l[i-1]],[`${s} |`,d],["|","^".padStart(c)],[`${s+1} |`,l[i+1]]])}function di(e){let t=e.filter(([r,i])=>i!==void 0),n=Math.max(...t.map(([r])=>r.length));return t.map(([r,i])=>r.padStart(n)+(i?" "+i:"")).join(`
3
- `)}function Oo(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,...n){var r,i,o;let{nodes:s,source:a,positions:c,path:p,originalError:l,extensions:d}=Oo(n);super(t),this.name="GraphQLError",this.path=p??void 0,this.originalError=l??void 0,this.nodes=mi(Array.isArray(s)?s:s?[s]:void 0);let m=mi((r=this.nodes)===null||r===void 0?void 0:r.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=G(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 n of this.nodes)n.loc&&(t+=`
3
+ `)}function So(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,...n){var r,i,o;let{nodes:s,source:a,positions:c,path:p,originalError:l,extensions:d}=So(n);super(t),this.name="GraphQLError",this.path=p??void 0,this.originalError=l??void 0,this.nodes=mi(Array.isArray(s)?s:s?[s]:void 0);let m=mi((r=this.nodes)===null||r===void 0?void 0:r.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=G(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 n of this.nodes)n.loc&&(t+=`
4
4
 
5
5
  `+Mn(n.loc));else if(this.source&&this.locations)for(let n of this.locations)t+=`
6
6
 
7
- `+Ct(this.source,n);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 mi(e){return e===void 0||e.length===0?void 0:e}function P(e,t,n){return new f(`Syntax Error: ${n}`,{source:e,positions:[t]})}var ut=class{constructor(t,n,r){this.start=t.start,this.end=n.end,this.startToken=t,this.endToken=n,this.source=r}get[Symbol.toStringTag](){return"Location"}toJSON(){return{start:this.start,end:this.end}}},Be=class{constructor(t,n,r,i,o,s){this.kind=t,this.start=n,this.end=r,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}}},Pn={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"]},So=new Set(Object.keys(Pn));function pt(e){let t=e?.kind;return typeof t=="string"&&So.has(t)}var F;(function(e){e.QUERY="query",e.MUTATION="mutation",e.SUBSCRIPTION="subscription"})(F||(F={}));var N;(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"})(N||(N={}));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 hi(e){return e>=97&&e<=122||e>=65&&e<=90}function lt(e){return hi(e)||e===95}function Pt(e){return hi(e)||qe(e)||e===95}function yi(e){var t;let n=Number.MAX_SAFE_INTEGER,r=null,i=-1;for(let s=0;s<e.length;++s){var o;let a=e[s],c=_o(a);c!==a.length&&(r=(o=r)!==null&&o!==void 0?o:s,i=s,s!==0&&c<n&&(n=c))}return e.map((s,a)=>a===0?s:s.slice(n)).slice((t=r)!==null&&t!==void 0?t:0,i+1)}function _o(e){let t=0;for(;t<e.length&&Mt(e.charCodeAt(t));)++t;return t}function Ti(e,t){let n=e.replace(/"""/g,'\\"""'),r=n.split(/\r\n|[\n\r]/g),i=r.length===1,o=r.length>1&&r.slice(1).every(T=>T.length===0||Mt(T.charCodeAt(0))),s=n.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,n);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 mi(e){return e===void 0||e.length===0?void 0:e}function P(e,t,n){return new f(`Syntax Error: ${n}`,{source:e,positions:[t]})}var ut=class{constructor(t,n,r){this.start=t.start,this.end=n.end,this.startToken=t,this.endToken=n,this.source=r}get[Symbol.toStringTag](){return"Location"}toJSON(){return{start:this.start,end:this.end}}},Be=class{constructor(t,n,r,i,o,s){this.kind=t,this.start=n,this.end=r,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}}},Pn={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"]},_o=new Set(Object.keys(Pn));function pt(e){let t=e?.kind;return typeof t=="string"&&_o.has(t)}var F;(function(e){e.QUERY="query",e.MUTATION="mutation",e.SUBSCRIPTION="subscription"})(F||(F={}));var N;(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"})(N||(N={}));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 hi(e){return e>=97&&e<=122||e>=65&&e<=90}function lt(e){return hi(e)||e===95}function Pt(e){return hi(e)||qe(e)||e===95}function yi(e){var t;let n=Number.MAX_SAFE_INTEGER,r=null,i=-1;for(let s=0;s<e.length;++s){var o;let a=e[s],c=xo(a);c!==a.length&&(r=(o=r)!==null&&o!==void 0?o:s,i=s,s!==0&&c<n&&(n=c))}return e.map((s,a)=>a===0?s:s.slice(n)).slice((t=r)!==null&&t!==void 0?t:0,i+1)}function xo(e){let t=0;for(;t<e.length&&Mt(e.charCodeAt(t));)++t;return t}function Ti(e,t){let n=e.replace(/"""/g,'\\"""'),r=n.split(/\r\n|[\n\r]/g),i=r.length===1,o=r.length>1&&r.slice(1).every(T=>T.length===0||Mt(T.charCodeAt(0))),s=n.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+=n,(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 dt=class{constructor(t){let n=new Be(h.SOF,0,0,0,0);this.source=t,this.lastToken=n,this.token=n,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 n=xo(this,t.end);t.next=n,n.prev=t,t=n}while(t.kind===h.COMMENT);return t}};function Ei(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 vi(e.charCodeAt(t))&&Ni(e.charCodeAt(t+1))}function vi(e){return e>=55296&&e<=56319}function Ni(e){return e>=56320&&e<=57343}function Le(e,t){let n=e.source.body.codePointAt(t);if(n===void 0)return h.EOF;if(n>=32&&n<=126){let r=String.fromCodePoint(n);return r==='"'?`'"'`:`"${r}"`}return"U+"+n.toString(16).toUpperCase().padStart(4,"0")}function U(e,t,n,r,i){let o=e.line,s=1+n-e.lineStart;return new Be(t,n,r,o,s,i)}function xo(e,t){let n=e.source.body,r=n.length,i=t;for(;i<r;){let o=n.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:n.charCodeAt(i+1)===10?i+=2:++i,++e.line,e.lineStart=i;continue;case 35:return Lo(e,i);case 33:return U(e,h.BANG,i,i+1);case 36:return U(e,h.DOLLAR,i,i+1);case 38:return U(e,h.AMP,i,i+1);case 40:return U(e,h.PAREN_L,i,i+1);case 41:return U(e,h.PAREN_R,i,i+1);case 46:if(n.charCodeAt(i+1)===46&&n.charCodeAt(i+2)===46)return U(e,h.SPREAD,i,i+3);break;case 58:return U(e,h.COLON,i,i+1);case 61:return U(e,h.EQUALS,i,i+1);case 64:return U(e,h.AT,i,i+1);case 91:return U(e,h.BRACKET_L,i,i+1);case 93:return U(e,h.BRACKET_R,i,i+1);case 123:return U(e,h.BRACE_L,i,i+1);case 124:return U(e,h.PIPE,i,i+1);case 125:return U(e,h.BRACE_R,i,i+1);case 34:return n.charCodeAt(i+1)===34&&n.charCodeAt(i+2)===34?Co(e,i):Do(e,i)}if(qe(o)||o===45)return wo(e,i,o);if(lt(o))return Mo(e,i);throw P(e.source,i,o===39?`Unexpected single quote character ('), did you mean to use a double quote (")?`:Ye(o)||Ut(n,i)?`Unexpected character: ${Le(e,i)}.`:`Invalid character: ${Le(e,i)}.`)}return U(e,h.EOF,r,r)}function Lo(e,t){let n=e.source.body,r=n.length,i=t+1;for(;i<r;){let o=n.charCodeAt(i);if(o===10||o===13)break;if(Ye(o))++i;else if(Ut(n,i))i+=2;else break}return U(e,h.COMMENT,t,i,n.slice(t+1,i))}function wo(e,t,n){let r=e.source.body,i=t,o=n,s=!1;if(o===45&&(o=r.charCodeAt(++i)),o===48){if(o=r.charCodeAt(++i),qe(o))throw P(e.source,i,`Invalid number, unexpected digit after 0: ${Le(e,i)}.`)}else i=Un(e,i,o),o=r.charCodeAt(i);if(o===46&&(s=!0,o=r.charCodeAt(++i),i=Un(e,i,o),o=r.charCodeAt(i)),(o===69||o===101)&&(s=!0,o=r.charCodeAt(++i),(o===43||o===45)&&(o=r.charCodeAt(++i)),i=Un(e,i,o),o=r.charCodeAt(i)),o===46||lt(o))throw P(e.source,i,`Invalid number, expected digit but got: ${Le(e,i)}.`);return U(e,s?h.FLOAT:h.INT,t,i,r.slice(t,i))}function Un(e,t,n){if(!qe(n))throw P(e.source,t,`Invalid number, expected digit but got: ${Le(e,t)}.`);let r=e.source.body,i=t+1;for(;qe(r.charCodeAt(i));)++i;return i}function Do(e,t){let n=e.source.body,r=n.length,i=t+1,o=i,s="";for(;i<r;){let a=n.charCodeAt(i);if(a===34)return s+=n.slice(o,i),U(e,h.STRING,t,i+1,s);if(a===92){s+=n.slice(o,i);let c=n.charCodeAt(i+1)===117?n.charCodeAt(i+2)===123?Ao(e,i):Fo(e,i):ko(e,i);s+=c.value,i+=c.size,o=i;continue}if(a===10||a===13)break;if(Ye(a))++i;else if(Ut(n,i))i+=2;else throw P(e.source,i,`Invalid character within String: ${Le(e,i)}.`)}throw P(e.source,i,"Unterminated string.")}function Ao(e,t){let n=e.source.body,r=0,i=3;for(;i<12;){let o=n.charCodeAt(t+i++);if(o===125){if(i<5||!Ye(r))break;return{value:String.fromCodePoint(r),size:i}}if(r=r<<4|ft(o),r<0)break}throw P(e.source,t,`Invalid Unicode escape sequence: "${n.slice(t,t+i)}".`)}function Fo(e,t){let n=e.source.body,r=gi(n,t+2);if(Ye(r))return{value:String.fromCodePoint(r),size:6};if(vi(r)&&n.charCodeAt(t+6)===92&&n.charCodeAt(t+7)===117){let i=gi(n,t+8);if(Ni(i))return{value:String.fromCodePoint(r,i),size:12}}throw P(e.source,t,`Invalid Unicode escape sequence: "${n.slice(t,t+6)}".`)}function gi(e,t){return ft(e.charCodeAt(t))<<12|ft(e.charCodeAt(t+1))<<8|ft(e.charCodeAt(t+2))<<4|ft(e.charCodeAt(t+3))}function ft(e){return e>=48&&e<=57?e-48:e>=65&&e<=70?e-55:e>=97&&e<=102?e-87:-1}function ko(e,t){let n=e.source.body;switch(n.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 P(e.source,t,`Invalid character escape sequence: "${n.slice(t,t+2)}".`)}function Co(e,t){let n=e.source.body,r=n.length,i=e.lineStart,o=t+3,s=o,a="",c=[];for(;o<r;){let p=n.charCodeAt(o);if(p===34&&n.charCodeAt(o+1)===34&&n.charCodeAt(o+2)===34){a+=n.slice(s,o),c.push(a);let l=U(e,h.BLOCK_STRING,t,o+3,yi(c).join(`
11
- `));return e.line+=c.length-1,e.lineStart=i,l}if(p===92&&n.charCodeAt(o+1)===34&&n.charCodeAt(o+2)===34&&n.charCodeAt(o+3)===34){a+=n.slice(s,o),s=o+1,o+=4;continue}if(p===10||p===13){a+=n.slice(s,o),c.push(a),p===13&&n.charCodeAt(o+1)===10?o+=2:++o,a="",s=o,i=o;continue}if(Ye(p))++o;else if(Ut(n,o))o+=2;else throw P(e.source,o,`Invalid character within String: ${Le(e,o)}.`)}throw P(e.source,o,"Unterminated string.")}function Mo(e,t){let n=e.source.body,r=n.length,i=t+1;for(;i<r;){let o=n.charCodeAt(i);if(Pt(o))++i;else break}return U(e,h.NAME,t,i,n.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 Po(e,t);default:return String(e)}}function Po(e,t){if(e===null)return"null";if(t.includes(e))return"[Circular]";let n=[...t,e];if(Uo(e)){let r=e.toJSON();if(r!==e)return typeof r=="string"?r:$t(r,n)}else if(Array.isArray(e))return Vo(e,n);return $o(e,n)}function Uo(e){return typeof e.toJSON=="function"}function $o(e,t){let n=Object.entries(e);return n.length===0?"{}":t.length>2?"["+Go(e)+"]":"{ "+n.map(([i,o])=>i+": "+$t(o,t)).join(", ")+" }"}function Vo(e,t){if(e.length===0)return"[]";if(t.length>2)return"[Array]";let n=Math.min(10,e.length),r=e.length-n,i=[];for(let o=0;o<n;++o)i.push($t(e[o],t));return r===1?i.push("... 1 more item"):r>1&&i.push(`... ${r} more items`),"["+i.join(", ")+"]"}function Go(e){let t=Object.prototype.toString.call(e).replace(/^\[object /,"").replace(/]$/,"");if(t==="Object"&&typeof e.constructor=="function"){let n=e.constructor.name;if(typeof n=="string"&&n!=="")return n}return t}var jo=globalThis.process&&process.env.NODE_ENV==="production",ee=jo?function(t,n){return t instanceof n}:function(t,n){if(t instanceof n)return!0;if(typeof t=="object"&&t!==null){var r;let i=n.prototype[Symbol.toStringTag],o=Symbol.toStringTag in t?t[Symbol.toStringTag]:(r=t.constructor)===null||r===void 0?void 0:r.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 dt=class{constructor(t){let n=new Be(h.SOF,0,0,0,0);this.source=t,this.lastToken=n,this.token=n,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 n=Lo(this,t.end);t.next=n,n.prev=t,t=n}while(t.kind===h.COMMENT);return t}};function Ei(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 vi(e.charCodeAt(t))&&Ni(e.charCodeAt(t+1))}function vi(e){return e>=55296&&e<=56319}function Ni(e){return e>=56320&&e<=57343}function Le(e,t){let n=e.source.body.codePointAt(t);if(n===void 0)return h.EOF;if(n>=32&&n<=126){let r=String.fromCodePoint(n);return r==='"'?`'"'`:`"${r}"`}return"U+"+n.toString(16).toUpperCase().padStart(4,"0")}function U(e,t,n,r,i){let o=e.line,s=1+n-e.lineStart;return new Be(t,n,r,o,s,i)}function Lo(e,t){let n=e.source.body,r=n.length,i=t;for(;i<r;){let o=n.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:n.charCodeAt(i+1)===10?i+=2:++i,++e.line,e.lineStart=i;continue;case 35:return wo(e,i);case 33:return U(e,h.BANG,i,i+1);case 36:return U(e,h.DOLLAR,i,i+1);case 38:return U(e,h.AMP,i,i+1);case 40:return U(e,h.PAREN_L,i,i+1);case 41:return U(e,h.PAREN_R,i,i+1);case 46:if(n.charCodeAt(i+1)===46&&n.charCodeAt(i+2)===46)return U(e,h.SPREAD,i,i+3);break;case 58:return U(e,h.COLON,i,i+1);case 61:return U(e,h.EQUALS,i,i+1);case 64:return U(e,h.AT,i,i+1);case 91:return U(e,h.BRACKET_L,i,i+1);case 93:return U(e,h.BRACKET_R,i,i+1);case 123:return U(e,h.BRACE_L,i,i+1);case 124:return U(e,h.PIPE,i,i+1);case 125:return U(e,h.BRACE_R,i,i+1);case 34:return n.charCodeAt(i+1)===34&&n.charCodeAt(i+2)===34?Mo(e,i):Ao(e,i)}if(qe(o)||o===45)return Do(e,i,o);if(lt(o))return Po(e,i);throw P(e.source,i,o===39?`Unexpected single quote character ('), did you mean to use a double quote (")?`:Ye(o)||Ut(n,i)?`Unexpected character: ${Le(e,i)}.`:`Invalid character: ${Le(e,i)}.`)}return U(e,h.EOF,r,r)}function wo(e,t){let n=e.source.body,r=n.length,i=t+1;for(;i<r;){let o=n.charCodeAt(i);if(o===10||o===13)break;if(Ye(o))++i;else if(Ut(n,i))i+=2;else break}return U(e,h.COMMENT,t,i,n.slice(t+1,i))}function Do(e,t,n){let r=e.source.body,i=t,o=n,s=!1;if(o===45&&(o=r.charCodeAt(++i)),o===48){if(o=r.charCodeAt(++i),qe(o))throw P(e.source,i,`Invalid number, unexpected digit after 0: ${Le(e,i)}.`)}else i=Un(e,i,o),o=r.charCodeAt(i);if(o===46&&(s=!0,o=r.charCodeAt(++i),i=Un(e,i,o),o=r.charCodeAt(i)),(o===69||o===101)&&(s=!0,o=r.charCodeAt(++i),(o===43||o===45)&&(o=r.charCodeAt(++i)),i=Un(e,i,o),o=r.charCodeAt(i)),o===46||lt(o))throw P(e.source,i,`Invalid number, expected digit but got: ${Le(e,i)}.`);return U(e,s?h.FLOAT:h.INT,t,i,r.slice(t,i))}function Un(e,t,n){if(!qe(n))throw P(e.source,t,`Invalid number, expected digit but got: ${Le(e,t)}.`);let r=e.source.body,i=t+1;for(;qe(r.charCodeAt(i));)++i;return i}function Ao(e,t){let n=e.source.body,r=n.length,i=t+1,o=i,s="";for(;i<r;){let a=n.charCodeAt(i);if(a===34)return s+=n.slice(o,i),U(e,h.STRING,t,i+1,s);if(a===92){s+=n.slice(o,i);let c=n.charCodeAt(i+1)===117?n.charCodeAt(i+2)===123?Fo(e,i):ko(e,i):Co(e,i);s+=c.value,i+=c.size,o=i;continue}if(a===10||a===13)break;if(Ye(a))++i;else if(Ut(n,i))i+=2;else throw P(e.source,i,`Invalid character within String: ${Le(e,i)}.`)}throw P(e.source,i,"Unterminated string.")}function Fo(e,t){let n=e.source.body,r=0,i=3;for(;i<12;){let o=n.charCodeAt(t+i++);if(o===125){if(i<5||!Ye(r))break;return{value:String.fromCodePoint(r),size:i}}if(r=r<<4|ft(o),r<0)break}throw P(e.source,t,`Invalid Unicode escape sequence: "${n.slice(t,t+i)}".`)}function ko(e,t){let n=e.source.body,r=gi(n,t+2);if(Ye(r))return{value:String.fromCodePoint(r),size:6};if(vi(r)&&n.charCodeAt(t+6)===92&&n.charCodeAt(t+7)===117){let i=gi(n,t+8);if(Ni(i))return{value:String.fromCodePoint(r,i),size:12}}throw P(e.source,t,`Invalid Unicode escape sequence: "${n.slice(t,t+6)}".`)}function gi(e,t){return ft(e.charCodeAt(t))<<12|ft(e.charCodeAt(t+1))<<8|ft(e.charCodeAt(t+2))<<4|ft(e.charCodeAt(t+3))}function ft(e){return e>=48&&e<=57?e-48:e>=65&&e<=70?e-55:e>=97&&e<=102?e-87:-1}function Co(e,t){let n=e.source.body;switch(n.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 P(e.source,t,`Invalid character escape sequence: "${n.slice(t,t+2)}".`)}function Mo(e,t){let n=e.source.body,r=n.length,i=e.lineStart,o=t+3,s=o,a="",c=[];for(;o<r;){let p=n.charCodeAt(o);if(p===34&&n.charCodeAt(o+1)===34&&n.charCodeAt(o+2)===34){a+=n.slice(s,o),c.push(a);let l=U(e,h.BLOCK_STRING,t,o+3,yi(c).join(`
11
+ `));return e.line+=c.length-1,e.lineStart=i,l}if(p===92&&n.charCodeAt(o+1)===34&&n.charCodeAt(o+2)===34&&n.charCodeAt(o+3)===34){a+=n.slice(s,o),s=o+1,o+=4;continue}if(p===10||p===13){a+=n.slice(s,o),c.push(a),p===13&&n.charCodeAt(o+1)===10?o+=2:++o,a="",s=o,i=o;continue}if(Ye(p))++o;else if(Ut(n,o))o+=2;else throw P(e.source,o,`Invalid character within String: ${Le(e,o)}.`)}throw P(e.source,o,"Unterminated string.")}function Po(e,t){let n=e.source.body,r=n.length,i=t+1;for(;i<r;){let o=n.charCodeAt(i);if(Pt(o))++i;else break}return U(e,h.NAME,t,i,n.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 Uo(e,t);default:return String(e)}}function Uo(e,t){if(e===null)return"null";if(t.includes(e))return"[Circular]";let n=[...t,e];if($o(e)){let r=e.toJSON();if(r!==e)return typeof r=="string"?r:$t(r,n)}else if(Array.isArray(e))return Go(e,n);return Vo(e,n)}function $o(e){return typeof e.toJSON=="function"}function Vo(e,t){let n=Object.entries(e);return n.length===0?"{}":t.length>2?"["+jo(e)+"]":"{ "+n.map(([i,o])=>i+": "+$t(o,t)).join(", ")+" }"}function Go(e,t){if(e.length===0)return"[]";if(t.length>2)return"[Array]";let n=Math.min(10,e.length),r=e.length-n,i=[];for(let o=0;o<n;++o)i.push($t(e[o],t));return r===1?i.push("... 1 more item"):r>1&&i.push(`... ${r} more items`),"["+i.join(", ")+"]"}function jo(e){let t=Object.prototype.toString.call(e).replace(/^\[object /,"").replace(/]$/,"");if(t==="Object"&&typeof e.constructor=="function"){let n=e.constructor.name;if(typeof n=="string"&&n!=="")return n}return t}var Qo=globalThis.process&&process.env.NODE_ENV==="production",ee=Qo?function(t,n){return t instanceof n}:function(t,n){if(t instanceof n)return!0;if(typeof t=="object"&&t!==null){var r;let i=n.prototype[Symbol.toStringTag],o=Symbol.toStringTag in t?t[Symbol.toStringTag]:(r=t.constructor)===null||r===void 0?void 0:r.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,9 +19,9 @@ 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,n="GraphQL request",r={line:1,column:1}){typeof t=="string"||R(!1,`Body must be a string. Received: ${y(t)}.`),this.body=t,this.name=n,this.locationOffset=r,this.locationOffset.line>0||R(!1,"line in locationOffset is 1-indexed and must be positive."),this.locationOffset.column>0||R(!1,"column in locationOffset is 1-indexed and must be positive.")}get[Symbol.toStringTag](){return"Source"}};function Ii(e){return ee(e,He)}function Gt(e,t){let n=new $n(e,t),r=n.parseDocument();return Object.defineProperty(r,"tokenCount",{enumerable:!1,value:n.tokenCount}),r}var $n=class{constructor(t,n={}){let r=Ii(t)?t:new He(t);this._lexer=new dt(r),this._options=n,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(),n=t?this._lexer.lookahead():this._lexer.token;if(n.kind===h.NAME){switch(n.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 P(this._lexer.source,this._lexer.token.start,"Unexpected description, descriptions are supported only on type definitions.");switch(n.value){case"query":case"mutation":case"subscription":return this.parseOperationDefinition();case"fragment":return this.parseFragmentDefinition();case"extend":return this.parseTypeSystemExtension()}}throw this.unexpected(n)}parseOperationDefinition(){let t=this._lexer.token;if(this.peek(h.BRACE_L))return this.node(t,{kind:u.OPERATION_DEFINITION,operation:F.QUERY,name:void 0,variableDefinitions:[],directives:[],selectionSet:this.parseSelectionSet()});let n=this.parseOperationType(),r;return this.peek(h.NAME)&&(r=this.parseName()),this.node(t,{kind:u.OPERATION_DEFINITION,operation:n,name:r,variableDefinitions:this.parseVariableDefinitions(),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseOperationType(){let t=this.expectToken(h.NAME);switch(t.value){case"query":return F.QUERY;case"mutation":return F.MUTATION;case"subscription":return F.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,n=this.parseName(),r,i;return this.expectOptionalToken(h.COLON)?(r=n,i=this.parseName()):i=n,this.node(t,{kind:u.FIELD,alias:r,name:i,arguments:this.parseArguments(!1),directives:this.parseDirectives(!1),selectionSet:this.peek(h.BRACE_L)?this.parseSelectionSet():void 0})}parseArguments(t){let n=t?this.parseConstArgument:this.parseArgument;return this.optionalMany(h.PAREN_L,n,h.PAREN_R)}parseArgument(t=!1){let n=this._lexer.token,r=this.parseName();return this.expectToken(h.COLON),this.node(n,{kind:u.ARGUMENT,name:r,value:this.parseValueLiteral(t)})}parseConstArgument(){return this.parseArgument(!0)}parseFragment(){let t=this._lexer.token;this.expectToken(h.SPREAD);let n=this.expectOptionalKeyword("on");return!n&&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:n?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 n=this._lexer.token;switch(n.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(n,{kind:u.INT,value:n.value});case h.FLOAT:return this.advanceLexer(),this.node(n,{kind:u.FLOAT,value:n.value});case h.STRING:case h.BLOCK_STRING:return this.parseStringLiteral();case h.NAME:switch(this.advanceLexer(),n.value){case"true":return this.node(n,{kind:u.BOOLEAN,value:!0});case"false":return this.node(n,{kind:u.BOOLEAN,value:!1});case"null":return this.node(n,{kind:u.NULL});default:return this.node(n,{kind:u.ENUM,value:n.value})}case h.DOLLAR:if(t)if(this.expectToken(h.DOLLAR),this._lexer.token.kind===h.NAME){let r=this._lexer.token.value;throw P(this._lexer.source,n.start,`Unexpected variable "$${r}" in constant value.`)}else throw this.unexpected(n);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 n=()=>this.parseValueLiteral(t);return this.node(this._lexer.token,{kind:u.LIST,values:this.any(h.BRACKET_L,n,h.BRACKET_R)})}parseObject(t){let n=()=>this.parseObjectField(t);return this.node(this._lexer.token,{kind:u.OBJECT,fields:this.any(h.BRACE_L,n,h.BRACE_R)})}parseObjectField(t){let n=this._lexer.token,r=this.parseName();return this.expectToken(h.COLON),this.node(n,{kind:u.OBJECT_FIELD,name:r,value:this.parseValueLiteral(t)})}parseDirectives(t){let n=[];for(;this.peek(h.AT);)n.push(this.parseDirective(t));return n}parseConstDirectives(){return this.parseDirectives(!0)}parseDirective(t){let n=this._lexer.token;return this.expectToken(h.AT),this.node(n,{kind:u.DIRECTIVE,name:this.parseName(),arguments:this.parseArguments(t)})}parseTypeReference(){let t=this._lexer.token,n;if(this.expectOptionalToken(h.BRACKET_L)){let r=this.parseTypeReference();this.expectToken(h.BRACKET_R),n=this.node(t,{kind:u.LIST_TYPE,type:r})}else n=this.parseNamedType();return this.expectOptionalToken(h.BANG)?this.node(t,{kind:u.NON_NULL_TYPE,type:n}):n}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,n=this.parseDescription();this.expectKeyword("schema");let r=this.parseConstDirectives(),i=this.many(h.BRACE_L,this.parseOperationTypeDefinition,h.BRACE_R);return this.node(t,{kind:u.SCHEMA_DEFINITION,description:n,directives:r,operationTypes:i})}parseOperationTypeDefinition(){let t=this._lexer.token,n=this.parseOperationType();this.expectToken(h.COLON);let r=this.parseNamedType();return this.node(t,{kind:u.OPERATION_TYPE_DEFINITION,operation:n,type:r})}parseScalarTypeDefinition(){let t=this._lexer.token,n=this.parseDescription();this.expectKeyword("scalar");let r=this.parseName(),i=this.parseConstDirectives();return this.node(t,{kind:u.SCALAR_TYPE_DEFINITION,description:n,name:r,directives:i})}parseObjectTypeDefinition(){let t=this._lexer.token,n=this.parseDescription();this.expectKeyword("type");let r=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:u.OBJECT_TYPE_DEFINITION,description:n,name:r,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,n=this.parseDescription(),r=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:n,name:r,arguments:i,type:o,directives:s})}parseArgumentDefs(){return this.optionalMany(h.PAREN_L,this.parseInputValueDef,h.PAREN_R)}parseInputValueDef(){let t=this._lexer.token,n=this.parseDescription(),r=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:n,name:r,type:i,defaultValue:o,directives:s})}parseInterfaceTypeDefinition(){let t=this._lexer.token,n=this.parseDescription();this.expectKeyword("interface");let r=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:u.INTERFACE_TYPE_DEFINITION,description:n,name:r,interfaces:i,directives:o,fields:s})}parseUnionTypeDefinition(){let t=this._lexer.token,n=this.parseDescription();this.expectKeyword("union");let r=this.parseName(),i=this.parseConstDirectives(),o=this.parseUnionMemberTypes();return this.node(t,{kind:u.UNION_TYPE_DEFINITION,description:n,name:r,directives:i,types:o})}parseUnionMemberTypes(){return this.expectOptionalToken(h.EQUALS)?this.delimitedMany(h.PIPE,this.parseNamedType):[]}parseEnumTypeDefinition(){let t=this._lexer.token,n=this.parseDescription();this.expectKeyword("enum");let r=this.parseName(),i=this.parseConstDirectives(),o=this.parseEnumValuesDefinition();return this.node(t,{kind:u.ENUM_TYPE_DEFINITION,description:n,name:r,directives:i,values:o})}parseEnumValuesDefinition(){return this.optionalMany(h.BRACE_L,this.parseEnumValueDefinition,h.BRACE_R)}parseEnumValueDefinition(){let t=this._lexer.token,n=this.parseDescription(),r=this.parseEnumValueName(),i=this.parseConstDirectives();return this.node(t,{kind:u.ENUM_VALUE_DEFINITION,description:n,name:r,directives:i})}parseEnumValueName(){if(this._lexer.token.value==="true"||this._lexer.token.value==="false"||this._lexer.token.value==="null")throw P(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,n=this.parseDescription();this.expectKeyword("input");let r=this.parseName(),i=this.parseConstDirectives(),o=this.parseInputFieldsDefinition();return this.node(t,{kind:u.INPUT_OBJECT_TYPE_DEFINITION,description:n,name:r,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 n=this.parseConstDirectives(),r=this.optionalMany(h.BRACE_L,this.parseOperationTypeDefinition,h.BRACE_R);if(n.length===0&&r.length===0)throw this.unexpected();return this.node(t,{kind:u.SCHEMA_EXTENSION,directives:n,operationTypes:r})}parseScalarTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("scalar");let n=this.parseName(),r=this.parseConstDirectives();if(r.length===0)throw this.unexpected();return this.node(t,{kind:u.SCALAR_TYPE_EXTENSION,name:n,directives:r})}parseObjectTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("type");let n=this.parseName(),r=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(r.length===0&&i.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:u.OBJECT_TYPE_EXTENSION,name:n,interfaces:r,directives:i,fields:o})}parseInterfaceTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("interface");let n=this.parseName(),r=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(r.length===0&&i.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:u.INTERFACE_TYPE_EXTENSION,name:n,interfaces:r,directives:i,fields:o})}parseUnionTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("union");let n=this.parseName(),r=this.parseConstDirectives(),i=this.parseUnionMemberTypes();if(r.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.UNION_TYPE_EXTENSION,name:n,directives:r,types:i})}parseEnumTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("enum");let n=this.parseName(),r=this.parseConstDirectives(),i=this.parseEnumValuesDefinition();if(r.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.ENUM_TYPE_EXTENSION,name:n,directives:r,values:i})}parseInputObjectTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("input");let n=this.parseName(),r=this.parseConstDirectives(),i=this.parseInputFieldsDefinition();if(r.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.INPUT_OBJECT_TYPE_EXTENSION,name:n,directives:r,fields:i})}parseDirectiveDefinition(){let t=this._lexer.token,n=this.parseDescription();this.expectKeyword("directive"),this.expectToken(h.AT);let r=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:n,name:r,arguments:i,repeatable:o,locations:s})}parseDirectiveLocations(){return this.delimitedMany(h.PIPE,this.parseDirectiveLocation)}parseDirectiveLocation(){let t=this._lexer.token,n=this.parseName();if(Object.prototype.hasOwnProperty.call(N,n.value))return n;throw this.unexpected(t)}node(t,n){return this._options.noLocation!==!0&&(n.loc=new ut(t,this._lexer.lastToken,this._lexer.source)),n}peek(t){return this._lexer.token.kind===t}expectToken(t){let n=this._lexer.token;if(n.kind===t)return this.advanceLexer(),n;throw P(this._lexer.source,n.start,`Expected ${bi(t)}, found ${Vt(n)}.`)}expectOptionalToken(t){return this._lexer.token.kind===t?(this.advanceLexer(),!0):!1}expectKeyword(t){let n=this._lexer.token;if(n.kind===h.NAME&&n.value===t)this.advanceLexer();else throw P(this._lexer.source,n.start,`Expected "${t}", found ${Vt(n)}.`)}expectOptionalKeyword(t){let n=this._lexer.token;return n.kind===h.NAME&&n.value===t?(this.advanceLexer(),!0):!1}unexpected(t){let n=t??this._lexer.token;return P(this._lexer.source,n.start,`Unexpected ${Vt(n)}.`)}any(t,n,r){this.expectToken(t);let i=[];for(;!this.expectOptionalToken(r);)i.push(n.call(this));return i}optionalMany(t,n,r){if(this.expectOptionalToken(t)){let i=[];do i.push(n.call(this));while(!this.expectOptionalToken(r));return i}return[]}many(t,n,r){this.expectToken(t);let i=[];do i.push(n.call(this));while(!this.expectOptionalToken(r));return i}delimitedMany(t,n){this.expectOptionalToken(t);let r=[];do r.push(n.call(this));while(this.expectOptionalToken(t));return r}advanceLexer(){let{maxTokens:t}=this._options,n=this._lexer.advance();if(n.kind!==h.EOF&&(++this._tokenCounter,t!==void 0&&this._tokenCounter>t))throw P(this._lexer.source,n.start,`Document contains more that ${t} tokens. Parsing aborted.`)}};function Vt(e){let t=e.value;return bi(e.kind)+(t!=null?` "${t}"`:"")}function bi(e){return Ei(e)?`"${e}"`:e}function W(e,t){let[n,r]=t?[e,t]:[void 0,e],i=" Did you mean ";n&&(i+=n+" ");let o=r.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 Vn(e){return e}function me(e,t){let n=Object.create(null);for(let r of e)n[t(r)]=r;return n}function mt(e,t,n){let r=Object.create(null);for(let i of e)r[t(i)]=n(i);return r}function ht(e,t){let n=Object.create(null);for(let r of Object.keys(e))n[r]=t(e[r],r);return n}function Je(e,t){let n=0,r=0;for(;n<e.length&&r<t.length;){let i=e.charCodeAt(n),o=t.charCodeAt(r);if(jt(i)&&jt(o)){let s=0;do++n,s=s*10+i-Gn,i=e.charCodeAt(n);while(jt(i)&&s>0);let a=0;do++r,a=a*10+o-Gn,o=t.charCodeAt(r);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;++n,++r}}return e.length-t.length}var Gn=48,Qo=57;function jt(e){return!isNaN(e)&&Gn<=e&&e<=Qo}function te(e,t){let n=Object.create(null),r=new jn(e),i=Math.floor(e.length*.4)+1;for(let o of t){let s=r.measure(o,i);s!==void 0&&(n[o]=s)}return Object.keys(n).sort((o,s)=>{let a=n[o]-n[s];return a!==0?a:Je(o,s)})}var jn=class{constructor(t){this._input=t,this._inputLowerCase=t.toLowerCase(),this._inputArray=Ri(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,n){if(this._input===t)return 0;let r=t.toLowerCase();if(this._inputLowerCase===r)return 1;let i=Ri(r),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>n)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 D=i[l-1]===o[g-1]?0:1,X=Math.min(d[g]+1,m[g-1]+1,d[g-1]+D);if(l>1&&g>1&&i[l-1]===o[g-2]&&i[l-2]===o[g-1]){let q=c[(l-2)%3][g-2];X=Math.min(X,q+1)}X<T&&(T=X),m[g]=X}if(T>n)return}let p=c[s%3][a];return p<=n?p:void 0}};function Ri(e){let t=e.length,n=new Array(t);for(let r=0;r<t;++r)n[r]=e.charCodeAt(r);return n}function ne(e){if(e==null)return Object.create(null);if(Object.getPrototypeOf(e)===null)return e;let t=Object.create(null);for(let[n,r]of Object.entries(e))t[n]=r;return t}function Oi(e){return`"${e.replace(Bo,qo)}"`}var Bo=/[\x00-\x1f\x22\x5c\x7f-\x9f]/g;function qo(e){return Yo[e.charCodeAt(0)]}var Yo=["\\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,n=Pn){let r=new Map;for(let q of Object.values(u))r.set(q,Xe(t,q));let i,o=Array.isArray(e),s=[e],a=-1,c=[],p=e,l,d,m=[],T=[];do{a++;let q=a===s.length,pe=q&&c.length!==0;if(q){if(l=T.length===0?void 0:m[m.length-1],p=d,d=T.pop(),pe)if(o){p=p.slice();let de=0;for(let[Fn,si]of c){let ai=Fn-de;si===null?(p.splice(ai,1),de++):p[ai]=si}}else{p={...p};for(let[de,Fn]of c)p[de]=Fn}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 oe;if(!Array.isArray(p)){var g,D;pt(p)||R(!1,`Invalid AST Node: ${y(p)}.`);let de=q?(g=r.get(p.kind))===null||g===void 0?void 0:g.leave:(D=r.get(p.kind))===null||D===void 0?void 0:D.enter;if(oe=de?.call(t,p,l,d,m,T),oe===ze)break;if(oe===!1){if(!q){m.pop();continue}}else if(oe!==void 0&&(c.push([l,oe]),!q))if(pt(oe))p=oe;else{m.pop();continue}}if(oe===void 0&&pe&&c.push([l,p]),q)m.pop();else{var X;i={inArray:o,index:a,keys:s,edits:c,prev:i},o=Array.isArray(p),s=o?p:(X=n[p.kind])!==null&&X!==void 0?X:[],a=-1,c=[],d&&T.push(d),d=p}}while(i!==void 0);return c.length!==0?c[c.length-1][1]:e}function Qn(e){let t=new Array(e.length).fill(null),n=Object.create(null);for(let r 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],r);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)}};n[r]=a}return n}function Xe(e,t){let n=e[t];return typeof n=="object"?n:typeof n=="function"?{enter:n,leave:void 0}:{enter:e.enter,leave:e.leave}}function L(e){return we(e,Jo)}var Ho=80,Jo={Name:{leave:e=>e.value},Variable:{leave:e=>"$"+e.name},Document:{leave:e=>E(e.definitions,`
22
+ spurious results.`)}}return!1};var He=class{constructor(t,n="GraphQL request",r={line:1,column:1}){typeof t=="string"||R(!1,`Body must be a string. Received: ${y(t)}.`),this.body=t,this.name=n,this.locationOffset=r,this.locationOffset.line>0||R(!1,"line in locationOffset is 1-indexed and must be positive."),this.locationOffset.column>0||R(!1,"column in locationOffset is 1-indexed and must be positive.")}get[Symbol.toStringTag](){return"Source"}};function Ii(e){return ee(e,He)}function Gt(e,t){let n=new $n(e,t),r=n.parseDocument();return Object.defineProperty(r,"tokenCount",{enumerable:!1,value:n.tokenCount}),r}var $n=class{constructor(t,n={}){let r=Ii(t)?t:new He(t);this._lexer=new dt(r),this._options=n,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(),n=t?this._lexer.lookahead():this._lexer.token;if(n.kind===h.NAME){switch(n.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 P(this._lexer.source,this._lexer.token.start,"Unexpected description, descriptions are supported only on type definitions.");switch(n.value){case"query":case"mutation":case"subscription":return this.parseOperationDefinition();case"fragment":return this.parseFragmentDefinition();case"extend":return this.parseTypeSystemExtension()}}throw this.unexpected(n)}parseOperationDefinition(){let t=this._lexer.token;if(this.peek(h.BRACE_L))return this.node(t,{kind:u.OPERATION_DEFINITION,operation:F.QUERY,name:void 0,variableDefinitions:[],directives:[],selectionSet:this.parseSelectionSet()});let n=this.parseOperationType(),r;return this.peek(h.NAME)&&(r=this.parseName()),this.node(t,{kind:u.OPERATION_DEFINITION,operation:n,name:r,variableDefinitions:this.parseVariableDefinitions(),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseOperationType(){let t=this.expectToken(h.NAME);switch(t.value){case"query":return F.QUERY;case"mutation":return F.MUTATION;case"subscription":return F.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,n=this.parseName(),r,i;return this.expectOptionalToken(h.COLON)?(r=n,i=this.parseName()):i=n,this.node(t,{kind:u.FIELD,alias:r,name:i,arguments:this.parseArguments(!1),directives:this.parseDirectives(!1),selectionSet:this.peek(h.BRACE_L)?this.parseSelectionSet():void 0})}parseArguments(t){let n=t?this.parseConstArgument:this.parseArgument;return this.optionalMany(h.PAREN_L,n,h.PAREN_R)}parseArgument(t=!1){let n=this._lexer.token,r=this.parseName();return this.expectToken(h.COLON),this.node(n,{kind:u.ARGUMENT,name:r,value:this.parseValueLiteral(t)})}parseConstArgument(){return this.parseArgument(!0)}parseFragment(){let t=this._lexer.token;this.expectToken(h.SPREAD);let n=this.expectOptionalKeyword("on");return!n&&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:n?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 n=this._lexer.token;switch(n.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(n,{kind:u.INT,value:n.value});case h.FLOAT:return this.advanceLexer(),this.node(n,{kind:u.FLOAT,value:n.value});case h.STRING:case h.BLOCK_STRING:return this.parseStringLiteral();case h.NAME:switch(this.advanceLexer(),n.value){case"true":return this.node(n,{kind:u.BOOLEAN,value:!0});case"false":return this.node(n,{kind:u.BOOLEAN,value:!1});case"null":return this.node(n,{kind:u.NULL});default:return this.node(n,{kind:u.ENUM,value:n.value})}case h.DOLLAR:if(t)if(this.expectToken(h.DOLLAR),this._lexer.token.kind===h.NAME){let r=this._lexer.token.value;throw P(this._lexer.source,n.start,`Unexpected variable "$${r}" in constant value.`)}else throw this.unexpected(n);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 n=()=>this.parseValueLiteral(t);return this.node(this._lexer.token,{kind:u.LIST,values:this.any(h.BRACKET_L,n,h.BRACKET_R)})}parseObject(t){let n=()=>this.parseObjectField(t);return this.node(this._lexer.token,{kind:u.OBJECT,fields:this.any(h.BRACE_L,n,h.BRACE_R)})}parseObjectField(t){let n=this._lexer.token,r=this.parseName();return this.expectToken(h.COLON),this.node(n,{kind:u.OBJECT_FIELD,name:r,value:this.parseValueLiteral(t)})}parseDirectives(t){let n=[];for(;this.peek(h.AT);)n.push(this.parseDirective(t));return n}parseConstDirectives(){return this.parseDirectives(!0)}parseDirective(t){let n=this._lexer.token;return this.expectToken(h.AT),this.node(n,{kind:u.DIRECTIVE,name:this.parseName(),arguments:this.parseArguments(t)})}parseTypeReference(){let t=this._lexer.token,n;if(this.expectOptionalToken(h.BRACKET_L)){let r=this.parseTypeReference();this.expectToken(h.BRACKET_R),n=this.node(t,{kind:u.LIST_TYPE,type:r})}else n=this.parseNamedType();return this.expectOptionalToken(h.BANG)?this.node(t,{kind:u.NON_NULL_TYPE,type:n}):n}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,n=this.parseDescription();this.expectKeyword("schema");let r=this.parseConstDirectives(),i=this.many(h.BRACE_L,this.parseOperationTypeDefinition,h.BRACE_R);return this.node(t,{kind:u.SCHEMA_DEFINITION,description:n,directives:r,operationTypes:i})}parseOperationTypeDefinition(){let t=this._lexer.token,n=this.parseOperationType();this.expectToken(h.COLON);let r=this.parseNamedType();return this.node(t,{kind:u.OPERATION_TYPE_DEFINITION,operation:n,type:r})}parseScalarTypeDefinition(){let t=this._lexer.token,n=this.parseDescription();this.expectKeyword("scalar");let r=this.parseName(),i=this.parseConstDirectives();return this.node(t,{kind:u.SCALAR_TYPE_DEFINITION,description:n,name:r,directives:i})}parseObjectTypeDefinition(){let t=this._lexer.token,n=this.parseDescription();this.expectKeyword("type");let r=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:u.OBJECT_TYPE_DEFINITION,description:n,name:r,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,n=this.parseDescription(),r=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:n,name:r,arguments:i,type:o,directives:s})}parseArgumentDefs(){return this.optionalMany(h.PAREN_L,this.parseInputValueDef,h.PAREN_R)}parseInputValueDef(){let t=this._lexer.token,n=this.parseDescription(),r=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:n,name:r,type:i,defaultValue:o,directives:s})}parseInterfaceTypeDefinition(){let t=this._lexer.token,n=this.parseDescription();this.expectKeyword("interface");let r=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:u.INTERFACE_TYPE_DEFINITION,description:n,name:r,interfaces:i,directives:o,fields:s})}parseUnionTypeDefinition(){let t=this._lexer.token,n=this.parseDescription();this.expectKeyword("union");let r=this.parseName(),i=this.parseConstDirectives(),o=this.parseUnionMemberTypes();return this.node(t,{kind:u.UNION_TYPE_DEFINITION,description:n,name:r,directives:i,types:o})}parseUnionMemberTypes(){return this.expectOptionalToken(h.EQUALS)?this.delimitedMany(h.PIPE,this.parseNamedType):[]}parseEnumTypeDefinition(){let t=this._lexer.token,n=this.parseDescription();this.expectKeyword("enum");let r=this.parseName(),i=this.parseConstDirectives(),o=this.parseEnumValuesDefinition();return this.node(t,{kind:u.ENUM_TYPE_DEFINITION,description:n,name:r,directives:i,values:o})}parseEnumValuesDefinition(){return this.optionalMany(h.BRACE_L,this.parseEnumValueDefinition,h.BRACE_R)}parseEnumValueDefinition(){let t=this._lexer.token,n=this.parseDescription(),r=this.parseEnumValueName(),i=this.parseConstDirectives();return this.node(t,{kind:u.ENUM_VALUE_DEFINITION,description:n,name:r,directives:i})}parseEnumValueName(){if(this._lexer.token.value==="true"||this._lexer.token.value==="false"||this._lexer.token.value==="null")throw P(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,n=this.parseDescription();this.expectKeyword("input");let r=this.parseName(),i=this.parseConstDirectives(),o=this.parseInputFieldsDefinition();return this.node(t,{kind:u.INPUT_OBJECT_TYPE_DEFINITION,description:n,name:r,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 n=this.parseConstDirectives(),r=this.optionalMany(h.BRACE_L,this.parseOperationTypeDefinition,h.BRACE_R);if(n.length===0&&r.length===0)throw this.unexpected();return this.node(t,{kind:u.SCHEMA_EXTENSION,directives:n,operationTypes:r})}parseScalarTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("scalar");let n=this.parseName(),r=this.parseConstDirectives();if(r.length===0)throw this.unexpected();return this.node(t,{kind:u.SCALAR_TYPE_EXTENSION,name:n,directives:r})}parseObjectTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("type");let n=this.parseName(),r=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(r.length===0&&i.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:u.OBJECT_TYPE_EXTENSION,name:n,interfaces:r,directives:i,fields:o})}parseInterfaceTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("interface");let n=this.parseName(),r=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(r.length===0&&i.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:u.INTERFACE_TYPE_EXTENSION,name:n,interfaces:r,directives:i,fields:o})}parseUnionTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("union");let n=this.parseName(),r=this.parseConstDirectives(),i=this.parseUnionMemberTypes();if(r.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.UNION_TYPE_EXTENSION,name:n,directives:r,types:i})}parseEnumTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("enum");let n=this.parseName(),r=this.parseConstDirectives(),i=this.parseEnumValuesDefinition();if(r.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.ENUM_TYPE_EXTENSION,name:n,directives:r,values:i})}parseInputObjectTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("input");let n=this.parseName(),r=this.parseConstDirectives(),i=this.parseInputFieldsDefinition();if(r.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.INPUT_OBJECT_TYPE_EXTENSION,name:n,directives:r,fields:i})}parseDirectiveDefinition(){let t=this._lexer.token,n=this.parseDescription();this.expectKeyword("directive"),this.expectToken(h.AT);let r=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:n,name:r,arguments:i,repeatable:o,locations:s})}parseDirectiveLocations(){return this.delimitedMany(h.PIPE,this.parseDirectiveLocation)}parseDirectiveLocation(){let t=this._lexer.token,n=this.parseName();if(Object.prototype.hasOwnProperty.call(N,n.value))return n;throw this.unexpected(t)}node(t,n){return this._options.noLocation!==!0&&(n.loc=new ut(t,this._lexer.lastToken,this._lexer.source)),n}peek(t){return this._lexer.token.kind===t}expectToken(t){let n=this._lexer.token;if(n.kind===t)return this.advanceLexer(),n;throw P(this._lexer.source,n.start,`Expected ${bi(t)}, found ${Vt(n)}.`)}expectOptionalToken(t){return this._lexer.token.kind===t?(this.advanceLexer(),!0):!1}expectKeyword(t){let n=this._lexer.token;if(n.kind===h.NAME&&n.value===t)this.advanceLexer();else throw P(this._lexer.source,n.start,`Expected "${t}", found ${Vt(n)}.`)}expectOptionalKeyword(t){let n=this._lexer.token;return n.kind===h.NAME&&n.value===t?(this.advanceLexer(),!0):!1}unexpected(t){let n=t??this._lexer.token;return P(this._lexer.source,n.start,`Unexpected ${Vt(n)}.`)}any(t,n,r){this.expectToken(t);let i=[];for(;!this.expectOptionalToken(r);)i.push(n.call(this));return i}optionalMany(t,n,r){if(this.expectOptionalToken(t)){let i=[];do i.push(n.call(this));while(!this.expectOptionalToken(r));return i}return[]}many(t,n,r){this.expectToken(t);let i=[];do i.push(n.call(this));while(!this.expectOptionalToken(r));return i}delimitedMany(t,n){this.expectOptionalToken(t);let r=[];do r.push(n.call(this));while(this.expectOptionalToken(t));return r}advanceLexer(){let{maxTokens:t}=this._options,n=this._lexer.advance();if(n.kind!==h.EOF&&(++this._tokenCounter,t!==void 0&&this._tokenCounter>t))throw P(this._lexer.source,n.start,`Document contains more that ${t} tokens. Parsing aborted.`)}};function Vt(e){let t=e.value;return bi(e.kind)+(t!=null?` "${t}"`:"")}function bi(e){return Ei(e)?`"${e}"`:e}function W(e,t){let[n,r]=t?[e,t]:[void 0,e],i=" Did you mean ";n&&(i+=n+" ");let o=r.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 Vn(e){return e}function me(e,t){let n=Object.create(null);for(let r of e)n[t(r)]=r;return n}function mt(e,t,n){let r=Object.create(null);for(let i of e)r[t(i)]=n(i);return r}function ht(e,t){let n=Object.create(null);for(let r of Object.keys(e))n[r]=t(e[r],r);return n}function Je(e,t){let n=0,r=0;for(;n<e.length&&r<t.length;){let i=e.charCodeAt(n),o=t.charCodeAt(r);if(jt(i)&&jt(o)){let s=0;do++n,s=s*10+i-Gn,i=e.charCodeAt(n);while(jt(i)&&s>0);let a=0;do++r,a=a*10+o-Gn,o=t.charCodeAt(r);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;++n,++r}}return e.length-t.length}var Gn=48,Bo=57;function jt(e){return!isNaN(e)&&Gn<=e&&e<=Bo}function te(e,t){let n=Object.create(null),r=new jn(e),i=Math.floor(e.length*.4)+1;for(let o of t){let s=r.measure(o,i);s!==void 0&&(n[o]=s)}return Object.keys(n).sort((o,s)=>{let a=n[o]-n[s];return a!==0?a:Je(o,s)})}var jn=class{constructor(t){this._input=t,this._inputLowerCase=t.toLowerCase(),this._inputArray=Ri(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,n){if(this._input===t)return 0;let r=t.toLowerCase();if(this._inputLowerCase===r)return 1;let i=Ri(r),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>n)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 D=i[l-1]===o[g-1]?0:1,X=Math.min(d[g]+1,m[g-1]+1,d[g-1]+D);if(l>1&&g>1&&i[l-1]===o[g-2]&&i[l-2]===o[g-1]){let q=c[(l-2)%3][g-2];X=Math.min(X,q+1)}X<T&&(T=X),m[g]=X}if(T>n)return}let p=c[s%3][a];return p<=n?p:void 0}};function Ri(e){let t=e.length,n=new Array(t);for(let r=0;r<t;++r)n[r]=e.charCodeAt(r);return n}function ne(e){if(e==null)return Object.create(null);if(Object.getPrototypeOf(e)===null)return e;let t=Object.create(null);for(let[n,r]of Object.entries(e))t[n]=r;return t}function Oi(e){return`"${e.replace(qo,Yo)}"`}var qo=/[\x00-\x1f\x22\x5c\x7f-\x9f]/g;function Yo(e){return Ho[e.charCodeAt(0)]}var Ho=["\\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,n=Pn){let r=new Map;for(let q of Object.values(u))r.set(q,Xe(t,q));let i,o=Array.isArray(e),s=[e],a=-1,c=[],p=e,l,d,m=[],T=[];do{a++;let q=a===s.length,pe=q&&c.length!==0;if(q){if(l=T.length===0?void 0:m[m.length-1],p=d,d=T.pop(),pe)if(o){p=p.slice();let de=0;for(let[Fn,si]of c){let ai=Fn-de;si===null?(p.splice(ai,1),de++):p[ai]=si}}else{p={...p};for(let[de,Fn]of c)p[de]=Fn}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 oe;if(!Array.isArray(p)){var g,D;pt(p)||R(!1,`Invalid AST Node: ${y(p)}.`);let de=q?(g=r.get(p.kind))===null||g===void 0?void 0:g.leave:(D=r.get(p.kind))===null||D===void 0?void 0:D.enter;if(oe=de?.call(t,p,l,d,m,T),oe===ze)break;if(oe===!1){if(!q){m.pop();continue}}else if(oe!==void 0&&(c.push([l,oe]),!q))if(pt(oe))p=oe;else{m.pop();continue}}if(oe===void 0&&pe&&c.push([l,p]),q)m.pop();else{var X;i={inArray:o,index:a,keys:s,edits:c,prev:i},o=Array.isArray(p),s=o?p:(X=n[p.kind])!==null&&X!==void 0?X:[],a=-1,c=[],d&&T.push(d),d=p}}while(i!==void 0);return c.length!==0?c[c.length-1][1]:e}function Qn(e){let t=new Array(e.length).fill(null),n=Object.create(null);for(let r 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],r);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)}};n[r]=a}return n}function Xe(e,t){let n=e[t];return typeof n=="object"?n:typeof n=="function"?{enter:n,leave:void 0}:{enter:e.enter,leave:e.leave}}function L(e){return we(e,zo)}var Jo=80,zo={Name:{leave:e=>e.value},Variable:{leave:e=>"$"+e.name},Document:{leave:e=>E(e.definitions,`
23
23
 
24
- `)},OperationDefinition:{leave(e){let t=S("(",E(e.variableDefinitions,", "),")"),n=E([e.operation,E([e.name,t]),E(e.directives," ")]," ");return(n==="query"?"":n+" ")+e.selectionSet}},VariableDefinition:{leave:({variable:e,type:t,defaultValue:n,directives:r})=>e+": "+t+S(" = ",n)+S(" ",E(r," "))},SelectionSet:{leave:({selections:e})=>he(e)},Field:{leave({alias:e,name:t,arguments:n,directives:r,selectionSet:i}){let o=S("",e,": ")+t,s=o+S("(",E(n,", "),")");return s.length>Ho&&(s=o+S(`(
24
+ `)},OperationDefinition:{leave(e){let t=S("(",E(e.variableDefinitions,", "),")"),n=E([e.operation,E([e.name,t]),E(e.directives," ")]," ");return(n==="query"?"":n+" ")+e.selectionSet}},VariableDefinition:{leave:({variable:e,type:t,defaultValue:n,directives:r})=>e+": "+t+S(" = ",n)+S(" ",E(r," "))},SelectionSet:{leave:({selections:e})=>he(e)},Field:{leave({alias:e,name:t,arguments:n,directives:r,selectionSet:i}){let o=S("",e,": ")+t,s=o+S("(",E(n,", "),")");return s.length>Jo&&(s=o+S(`(
25
25
  `,Qt(E(n,`
26
26
  `)),`
27
27
  )`)),E([s,E(r," "),i]," ")}},Argument:{leave:({name:e,value:t})=>e+": "+t},FragmentSpread:{leave:({name:e,directives:t})=>"..."+e+S(" ",E(t," "))},InlineFragment:{leave:({typeCondition:e,directives:t,selectionSet:n})=>E(["...",S("on ",e),E(t," "),n]," ")},FragmentDefinition:{leave:({name:e,typeCondition:t,variableDefinitions:n,directives:r,selectionSet:i})=>`fragment ${e}${S("(",E(n,", "),")")} on ${t} ${S("",E(r," ")," ")}`+i},IntValue:{leave:({value:e})=>e},FloatValue:{leave:({value:e})=>e},StringValue:{leave:({value:e,block:t})=>t?Ti(e):Oi(e)},BooleanValue:{leave:({value:e})=>e?"true":"false"},NullValue:{leave:()=>"null"},EnumValue:{leave:({value:e})=>e},ListValue:{leave:({values:e})=>"["+E(e,", ")+"]"},ObjectValue:{leave:({fields:e})=>"{"+E(e,", ")+"}"},ObjectField:{leave:({name:e,value:t})=>e+": "+t},Directive:{leave:({name:e,arguments:t})=>"@"+e+S("(",E(t,", "),")")},NamedType:{leave:({name:e})=>e},ListType:{leave:({type:e})=>"["+e+"]"},NonNullType:{leave:({type:e})=>e+"!"},SchemaDefinition:{leave:({description:e,directives:t,operationTypes:n})=>S("",e,`
@@ -46,10 +46,10 @@ spurious results.`)}}return!1};var He=class{constructor(t,n="GraphQL request",r=
46
46
  `)),`
47
47
  }`)}function S(e,t,n=""){return t!=null&&t!==""?e+t+n:""}function Qt(e){return S(" ",e.replace(/\n/g,`
48
48
  `))}function Si(e){var t;return(t=e?.some(n=>n.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(n=>Bt(n,t));case u.OBJECT:return mt(e.fields,n=>n.name.value,n=>Bt(n.value,t));case u.VARIABLE:return t?.[e.name.value]}}function ie(e){if(e!=null||R(!1,"Must provide name."),typeof e=="string"||R(!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(!lt(e.charCodeAt(0)))throw new f(`Names must start with [_a-zA-Z] but "${e}" does not.`);return e}function Bn(e){if(e==="true"||e==="false"||e==="null")throw new f(`Enum values cannot be named: ${e}`);return ie(e)}function We(e){return Te(e)||O(e)||_(e)||H(e)||$(e)||x(e)||w(e)||b(e)}function Te(e){return ee(e,ye)}function O(e){return ee(e,j)}function _(e){return ee(e,yt)}function H(e){return ee(e,De)}function $(e){return ee(e,Ne)}function x(e){return ee(e,Ae)}function w(e){return ee(e,A)}function b(e){return ee(e,I)}function J(e){return Te(e)||$(e)||x(e)||Tt(e)&&J(e.ofType)}function be(e){return Te(e)||O(e)||_(e)||H(e)||$(e)||Tt(e)&&be(e.ofType)}function z(e){return Te(e)||$(e)}function ae(e){return O(e)||_(e)||H(e)}function re(e){return _(e)||H(e)}var A=class{constructor(t){We(t)||R(!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()}},I=class{constructor(t){gt(t)||R(!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 Tt(e){return w(e)||b(e)}function gt(e){return We(e)&&!b(e)}function Ze(e){if(e)return b(e)?e.ofType:e}function Yt(e){return Te(e)||O(e)||_(e)||H(e)||$(e)||x(e)}function Y(e){if(e){let t=e;for(;Tt(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 ye=class{constructor(t){var n,r,i,o;let s=(n=t.parseValue)!==null&&n!==void 0?n:Vn;this.name=ie(t.name),this.description=t.description,this.specifiedByURL=t.specifiedByURL,this.serialize=(r=t.serialize)!==null&&r!==void 0?r:Vn,this.parseValue=s,this.parseLiteral=(i=t.parseLiteral)!==null&&i!==void 0?i:(a,c)=>s(Bt(a,c)),this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(o=t.extensionASTNodes)!==null&&o!==void 0?o:[],t.specifiedByURL==null||typeof t.specifiedByURL=="string"||R(!1,`${this.name} must provide "specifiedByURL" as a string, but got: ${y(t.specifiedByURL)}.`),t.serialize==null||typeof t.serialize=="function"||R(!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"||R(!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()}},j=class{constructor(t){var n;this.name=ie(t.name),this.description=t.description,this.isTypeOf=t.isTypeOf,this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._fields=()=>Li(t),this._interfaces=()=>xi(t),t.isTypeOf==null||typeof t.isTypeOf=="function"||R(!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:wi(this.getFields()),isTypeOf:this.isTypeOf,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}};function xi(e){var t;let n=Ht((t=e.interfaces)!==null&&t!==void 0?t:[]);return Array.isArray(n)||R(!1,`${e.name} interfaces must be an Array or a function which returns an Array.`),n}function Li(e){let t=Jt(e.fields);return Ke(t)||R(!1,`${e.name} fields must be an object with field names as keys or a function which returns such an object.`),ht(t,(n,r)=>{var i;Ke(n)||R(!1,`${e.name}.${r} field config must be an object.`),n.resolve==null||typeof n.resolve=="function"||R(!1,`${e.name}.${r} field resolver must be a function if provided, but got: ${y(n.resolve)}.`);let o=(i=n.args)!==null&&i!==void 0?i:{};return Ke(o)||R(!1,`${e.name}.${r} args must be an object with argument names as keys.`),{name:ie(r),description:n.description,type:n.type,args:qn(o),resolve:n.resolve,subscribe:n.subscribe,deprecationReason:n.deprecationReason,extensions:ne(n.extensions),astNode:n.astNode}})}function qn(e){return Object.entries(e).map(([t,n])=>({name:ie(t),description:n.description,type:n.type,defaultValue:n.defaultValue,deprecationReason:n.deprecationReason,extensions:ne(n.extensions),astNode:n.astNode}))}function Ke(e){return G(e)&&!Array.isArray(e)}function wi(e){return ht(e,t=>({description:t.description,type:t.type,args:Yn(t.args),resolve:t.resolve,subscribe:t.subscribe,deprecationReason:t.deprecationReason,extensions:t.extensions,astNode:t.astNode}))}function Yn(e){return mt(e,t=>t.name,t=>({description:t.description,type:t.type,defaultValue:t.defaultValue,deprecationReason:t.deprecationReason,extensions:t.extensions,astNode:t.astNode}))}function Re(e){return b(e.type)&&e.defaultValue===void 0}var yt=class{constructor(t){var n;this.name=ie(t.name),this.description=t.description,this.resolveType=t.resolveType,this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._fields=Li.bind(void 0,t),this._interfaces=xi.bind(void 0,t),t.resolveType==null||typeof t.resolveType=="function"||R(!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:wi(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 n;this.name=ie(t.name),this.description=t.description,this.resolveType=t.resolveType,this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._types=zo.bind(void 0,t),t.resolveType==null||typeof t.resolveType=="function"||R(!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 zo(e){let t=Ht(e.types);return Array.isArray(t)||R(!1,`Must provide Array of types or a function which returns such an array for Union ${e.name}.`),t}var Ne=class{constructor(t){var n;this.name=ie(t.name),this.description=t.description,this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._values=typeof t.values=="function"?t.values:_i(this.name,t.values),this._valueLookup=null,this._nameLookup=null}get[Symbol.toStringTag](){return"GraphQLEnumType"}getValues(){return typeof this._values=="function"&&(this._values=_i(this.name,this._values())),this._values}getValue(t){return this._nameLookup===null&&(this._nameLookup=me(this.getValues(),n=>n.name)),this._nameLookup[t]}serialize(t){this._valueLookup===null&&(this._valueLookup=new Map(this.getValues().map(r=>[r.value,r])));let n=this._valueLookup.get(t);if(n===void 0)throw new f(`Enum "${this.name}" cannot represent value: ${y(t)}`);return n.name}parseValue(t){if(typeof t!="string"){let r=y(t);throw new f(`Enum "${this.name}" cannot represent non-string value: ${r}.`+qt(this,r))}let n=this.getValue(t);if(n==null)throw new f(`Value "${t}" does not exist in "${this.name}" enum.`+qt(this,t));return n.value}parseLiteral(t,n){if(t.kind!==u.ENUM){let i=L(t);throw new f(`Enum "${this.name}" cannot represent non-enum value: ${i}.`+qt(this,i),{nodes:t})}let r=this.getValue(t.value);if(r==null){let i=L(t);throw new f(`Value "${i}" does not exist in "${this.name}" enum.`+qt(this,i),{nodes:t})}return r.value}toConfig(){let t=mt(this.getValues(),n=>n.name,n=>({description:n.description,value:n.value,deprecationReason:n.deprecationReason,extensions:n.extensions,astNode:n.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 n=e.getValues().map(i=>i.name),r=te(t,n);return W("the enum value",r)}function _i(e,t){return Ke(t)||R(!1,`${e} values must be an object with value names as keys.`),Object.entries(t).map(([n,r])=>(Ke(r)||R(!1,`${e}.${n} must refer to an object with a "value" key representing an internal value but got: ${y(r)}.`),{name:Bn(n),description:r.description,value:r.value!==void 0?r.value:n,deprecationReason:r.deprecationReason,extensions:ne(r.extensions),astNode:r.astNode}))}var Ae=class{constructor(t){var n,r;this.name=ie(t.name),this.description=t.description,this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this.isOneOf=(r=t.isOneOf)!==null&&r!==void 0?r:!1,this._fields=Xo.bind(void 0,t)}get[Symbol.toStringTag](){return"GraphQLInputObjectType"}getFields(){return typeof this._fields=="function"&&(this._fields=this._fields()),this._fields}toConfig(){let t=ht(this.getFields(),n=>({description:n.description,type:n.type,defaultValue:n.defaultValue,deprecationReason:n.deprecationReason,extensions:n.extensions,astNode:n.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 Xo(e){let t=Jt(e.fields);return Ke(t)||R(!1,`${e.name} fields must be an object with field names as keys or a function which returns such an object.`),ht(t,(n,r)=>(!("resolve"in n)||R(!1,`${e.name}.${r} field has a resolve property, but Input Types cannot define resolvers.`),{name:ie(r),description:n.description,type:n.type,defaultValue:n.defaultValue,deprecationReason:n.deprecationReason,extensions:ne(n.extensions),astNode:n.astNode}))}function et(e){return b(e.type)&&e.defaultValue===void 0}function zt(e,t){return e===t?!0:b(e)&&b(t)||w(e)&&w(t)?zt(e.ofType,t.ofType):!1}function Se(e,t,n){return t===n?!0:b(n)?b(t)?Se(e,t.ofType,n.ofType):!1:b(t)?Se(e,t.ofType,n):w(n)?w(t)?Se(e,t.ofType,n.ofType):!1:w(t)?!1:re(n)&&(_(t)||O(t))&&e.isSubType(n,t)}function Hn(e,t,n){return t===n?!0:re(t)?re(n)?e.getPossibleTypes(t).some(r=>e.isSubType(n,r)):e.isSubType(t,n):re(n)?e.isSubType(n,t):!1}var Et=2147483647,vt=-2147483648,ce=new ye({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=Nt(e);if(typeof t=="boolean")return t?1:0;let n=t;if(typeof t=="string"&&t!==""&&(n=Number(t)),typeof n!="number"||!Number.isInteger(n))throw new f(`Int cannot represent non-integer value: ${y(t)}`);if(n>Et||n<vt)throw new f("Int cannot represent non 32-bit signed integer value: "+y(t));return n},parseValue(e){if(typeof e!="number"||!Number.isInteger(e))throw new f(`Int cannot represent non-integer value: ${y(e)}`);if(e>Et||e<vt)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: ${L(e)}`,{nodes:e});let t=parseInt(e.value,10);if(t>Et||t<vt)throw new f(`Int cannot represent non 32-bit signed integer value: ${e.value}`,{nodes:e});return t}}),ue=new ye({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=Nt(e);if(typeof t=="boolean")return t?1:0;let n=t;if(typeof t=="string"&&t!==""&&(n=Number(t)),typeof n!="number"||!Number.isFinite(n))throw new f(`Float cannot represent non numeric value: ${y(t)}`);return n},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: ${L(e)}`,e);return parseFloat(e.value)}}),v=new ye({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=Nt(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: ${L(e)}`,{nodes:e});return e.value}}),V=new ye({name:"Boolean",description:"The `Boolean` scalar type represents `true` or `false`.",serialize(e){let t=Nt(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: ${L(e)}`,{nodes:e});return e.value}}),ge=new ye({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=Nt(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: "+L(e),{nodes:e});return e.value}}),Xt=Object.freeze([v,ce,ue,V,ge]);function Nt(e){if(G(e)){if(typeof e.valueOf=="function"){let t=e.valueOf();if(!G(t))return t}if(typeof e.toJSON=="function")return e.toJSON()}return e}function It(e){return ee(e,Oe)}var Oe=class{constructor(t){var n,r;this.name=ie(t.name),this.description=t.description,this.locations=t.locations,this.isRepeatable=(n=t.isRepeatable)!==null&&n!==void 0?n:!1,this.extensions=ne(t.extensions),this.astNode=t.astNode,Array.isArray(t.locations)||R(!1,`@${t.name} locations must be an Array.`);let i=(r=t.args)!==null&&r!==void 0?r:{};G(i)&&!Array.isArray(i)||R(!1,`@${t.name} args must be an object with argument names as keys.`),this.args=qn(i)}get[Symbol.toStringTag](){return"GraphQLDirective"}toConfig(){return{name:this.name,description:this.description,locations:this.locations,args:Yn(this.args),isRepeatable:this.isRepeatable,extensions:this.extensions,astNode:this.astNode}}toString(){return"@"+this.name}toJSON(){return this.toString()}},Kt=new Oe({name:"include",description:"Directs the executor to include this field or fragment only when the `if` argument is true.",locations:[N.FIELD,N.FRAGMENT_SPREAD,N.INLINE_FRAGMENT],args:{if:{type:new I(V),description:"Included when true."}}}),Wt=new Oe({name:"skip",description:"Directs the executor to skip this field or fragment when the `if` argument is true.",locations:[N.FIELD,N.FRAGMENT_SPREAD,N.INLINE_FRAGMENT],args:{if:{type:new I(V),description:"Skipped when true."}}}),Di="No longer supported",Zt=new Oe({name:"deprecated",description:"Marks an element of a GraphQL schema as no longer supported.",locations:[N.FIELD_DEFINITION,N.ARGUMENT_DEFINITION,N.INPUT_FIELD_DEFINITION,N.ENUM_VALUE],args:{reason:{type:v,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:Di}}}),Ai=new Oe({name:"specifiedBy",description:"Exposes a URL that specifies the behavior of this scalar.",locations:[N.SCALAR],args:{url:{type:new I(v),description:"The URL that specifies the behavior of this scalar."}}}),Fi=new Oe({name:"oneOf",description:"Indicates exactly one field must be supplied and this field must not be `null`.",locations:[N.INPUT_OBJECT],args:{}}),Ee=Object.freeze([Kt,Wt,Zt,Ai,Fi]);function tt(e){return typeof e=="object"&&typeof e?.[Symbol.iterator]=="function"}function nt(e,t){if(b(t)){let n=nt(e,t.ofType);return n?.kind===u.NULL?null:n}if(e===null)return{kind:u.NULL};if(e===void 0)return null;if(w(t)){let n=t.ofType;if(tt(e)){let r=[];for(let i of e){let o=nt(i,n);o!=null&&r.push(o)}return{kind:u.LIST,values:r}}return nt(e,n)}if(x(t)){if(!G(e))return null;let n=[];for(let r of Object.values(t.getFields())){let i=nt(e[r.name],r.type);i&&n.push({kind:u.OBJECT_FIELD,name:{kind:u.NAME,value:r.name},value:i})}return{kind:u.OBJECT,fields:n}}if(z(t)){let n=t.serialize(e);if(n==null)return null;if(typeof n=="boolean")return{kind:u.BOOLEAN,value:n};if(typeof n=="number"&&Number.isFinite(n)){let r=String(n);return ki.test(r)?{kind:u.INT,value:r}:{kind:u.FLOAT,value:r}}if(typeof n=="string")return $(t)?{kind:u.ENUM,value:n}:t===ge&&ki.test(n)?{kind:u.INT,value:n}:{kind:u.STRING,value:n};throw new TypeError(`Cannot convert value to AST: ${y(n)}.`)}k(!1,"Unexpected input type: "+y(t))}var ki=/^-?(?:0|[1-9][0-9]*)$/;var bt=new j({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:v,resolve:e=>e.description},types:{description:"A list of all types supported by this server.",type:new I(new A(new I(le))),resolve(e){return Object.values(e.getTypeMap())}},queryType:{description:"The type that query operations will be rooted at.",type:new I(le),resolve:e=>e.getQueryType()},mutationType:{description:"If this server supports mutation, the type that mutation operations will be rooted at.",type:le,resolve:e=>e.getMutationType()},subscriptionType:{description:"If this server support subscription, the type that subscription operations will be rooted at.",type:le,resolve:e=>e.getSubscriptionType()},directives:{description:"A list of all directives supported by this server.",type:new I(new A(new I(Jn))),resolve:e=>e.getDirectives()}})}),Jn=new j({name:"__Directive",description:`A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.
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(n=>Bt(n,t));case u.OBJECT:return mt(e.fields,n=>n.name.value,n=>Bt(n.value,t));case u.VARIABLE:return t?.[e.name.value]}}function ie(e){if(e!=null||R(!1,"Must provide name."),typeof e=="string"||R(!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(!lt(e.charCodeAt(0)))throw new f(`Names must start with [_a-zA-Z] but "${e}" does not.`);return e}function Bn(e){if(e==="true"||e==="false"||e==="null")throw new f(`Enum values cannot be named: ${e}`);return ie(e)}function We(e){return Te(e)||O(e)||_(e)||H(e)||$(e)||x(e)||w(e)||b(e)}function Te(e){return ee(e,ye)}function O(e){return ee(e,j)}function _(e){return ee(e,yt)}function H(e){return ee(e,De)}function $(e){return ee(e,Ne)}function x(e){return ee(e,Ae)}function w(e){return ee(e,A)}function b(e){return ee(e,I)}function J(e){return Te(e)||$(e)||x(e)||Tt(e)&&J(e.ofType)}function be(e){return Te(e)||O(e)||_(e)||H(e)||$(e)||Tt(e)&&be(e.ofType)}function z(e){return Te(e)||$(e)}function ae(e){return O(e)||_(e)||H(e)}function re(e){return _(e)||H(e)}var A=class{constructor(t){We(t)||R(!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()}},I=class{constructor(t){gt(t)||R(!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 Tt(e){return w(e)||b(e)}function gt(e){return We(e)&&!b(e)}function Ze(e){if(e)return b(e)?e.ofType:e}function Yt(e){return Te(e)||O(e)||_(e)||H(e)||$(e)||x(e)}function Y(e){if(e){let t=e;for(;Tt(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 ye=class{constructor(t){var n,r,i,o;let s=(n=t.parseValue)!==null&&n!==void 0?n:Vn;this.name=ie(t.name),this.description=t.description,this.specifiedByURL=t.specifiedByURL,this.serialize=(r=t.serialize)!==null&&r!==void 0?r:Vn,this.parseValue=s,this.parseLiteral=(i=t.parseLiteral)!==null&&i!==void 0?i:(a,c)=>s(Bt(a,c)),this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(o=t.extensionASTNodes)!==null&&o!==void 0?o:[],t.specifiedByURL==null||typeof t.specifiedByURL=="string"||R(!1,`${this.name} must provide "specifiedByURL" as a string, but got: ${y(t.specifiedByURL)}.`),t.serialize==null||typeof t.serialize=="function"||R(!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"||R(!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()}},j=class{constructor(t){var n;this.name=ie(t.name),this.description=t.description,this.isTypeOf=t.isTypeOf,this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._fields=()=>Li(t),this._interfaces=()=>xi(t),t.isTypeOf==null||typeof t.isTypeOf=="function"||R(!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:wi(this.getFields()),isTypeOf:this.isTypeOf,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}};function xi(e){var t;let n=Ht((t=e.interfaces)!==null&&t!==void 0?t:[]);return Array.isArray(n)||R(!1,`${e.name} interfaces must be an Array or a function which returns an Array.`),n}function Li(e){let t=Jt(e.fields);return Ke(t)||R(!1,`${e.name} fields must be an object with field names as keys or a function which returns such an object.`),ht(t,(n,r)=>{var i;Ke(n)||R(!1,`${e.name}.${r} field config must be an object.`),n.resolve==null||typeof n.resolve=="function"||R(!1,`${e.name}.${r} field resolver must be a function if provided, but got: ${y(n.resolve)}.`);let o=(i=n.args)!==null&&i!==void 0?i:{};return Ke(o)||R(!1,`${e.name}.${r} args must be an object with argument names as keys.`),{name:ie(r),description:n.description,type:n.type,args:qn(o),resolve:n.resolve,subscribe:n.subscribe,deprecationReason:n.deprecationReason,extensions:ne(n.extensions),astNode:n.astNode}})}function qn(e){return Object.entries(e).map(([t,n])=>({name:ie(t),description:n.description,type:n.type,defaultValue:n.defaultValue,deprecationReason:n.deprecationReason,extensions:ne(n.extensions),astNode:n.astNode}))}function Ke(e){return G(e)&&!Array.isArray(e)}function wi(e){return ht(e,t=>({description:t.description,type:t.type,args:Yn(t.args),resolve:t.resolve,subscribe:t.subscribe,deprecationReason:t.deprecationReason,extensions:t.extensions,astNode:t.astNode}))}function Yn(e){return mt(e,t=>t.name,t=>({description:t.description,type:t.type,defaultValue:t.defaultValue,deprecationReason:t.deprecationReason,extensions:t.extensions,astNode:t.astNode}))}function Re(e){return b(e.type)&&e.defaultValue===void 0}var yt=class{constructor(t){var n;this.name=ie(t.name),this.description=t.description,this.resolveType=t.resolveType,this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._fields=Li.bind(void 0,t),this._interfaces=xi.bind(void 0,t),t.resolveType==null||typeof t.resolveType=="function"||R(!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:wi(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 n;this.name=ie(t.name),this.description=t.description,this.resolveType=t.resolveType,this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._types=Xo.bind(void 0,t),t.resolveType==null||typeof t.resolveType=="function"||R(!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 Xo(e){let t=Ht(e.types);return Array.isArray(t)||R(!1,`Must provide Array of types or a function which returns such an array for Union ${e.name}.`),t}var Ne=class{constructor(t){var n;this.name=ie(t.name),this.description=t.description,this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._values=typeof t.values=="function"?t.values:_i(this.name,t.values),this._valueLookup=null,this._nameLookup=null}get[Symbol.toStringTag](){return"GraphQLEnumType"}getValues(){return typeof this._values=="function"&&(this._values=_i(this.name,this._values())),this._values}getValue(t){return this._nameLookup===null&&(this._nameLookup=me(this.getValues(),n=>n.name)),this._nameLookup[t]}serialize(t){this._valueLookup===null&&(this._valueLookup=new Map(this.getValues().map(r=>[r.value,r])));let n=this._valueLookup.get(t);if(n===void 0)throw new f(`Enum "${this.name}" cannot represent value: ${y(t)}`);return n.name}parseValue(t){if(typeof t!="string"){let r=y(t);throw new f(`Enum "${this.name}" cannot represent non-string value: ${r}.`+qt(this,r))}let n=this.getValue(t);if(n==null)throw new f(`Value "${t}" does not exist in "${this.name}" enum.`+qt(this,t));return n.value}parseLiteral(t,n){if(t.kind!==u.ENUM){let i=L(t);throw new f(`Enum "${this.name}" cannot represent non-enum value: ${i}.`+qt(this,i),{nodes:t})}let r=this.getValue(t.value);if(r==null){let i=L(t);throw new f(`Value "${i}" does not exist in "${this.name}" enum.`+qt(this,i),{nodes:t})}return r.value}toConfig(){let t=mt(this.getValues(),n=>n.name,n=>({description:n.description,value:n.value,deprecationReason:n.deprecationReason,extensions:n.extensions,astNode:n.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 n=e.getValues().map(i=>i.name),r=te(t,n);return W("the enum value",r)}function _i(e,t){return Ke(t)||R(!1,`${e} values must be an object with value names as keys.`),Object.entries(t).map(([n,r])=>(Ke(r)||R(!1,`${e}.${n} must refer to an object with a "value" key representing an internal value but got: ${y(r)}.`),{name:Bn(n),description:r.description,value:r.value!==void 0?r.value:n,deprecationReason:r.deprecationReason,extensions:ne(r.extensions),astNode:r.astNode}))}var Ae=class{constructor(t){var n,r;this.name=ie(t.name),this.description=t.description,this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this.isOneOf=(r=t.isOneOf)!==null&&r!==void 0?r:!1,this._fields=Ko.bind(void 0,t)}get[Symbol.toStringTag](){return"GraphQLInputObjectType"}getFields(){return typeof this._fields=="function"&&(this._fields=this._fields()),this._fields}toConfig(){let t=ht(this.getFields(),n=>({description:n.description,type:n.type,defaultValue:n.defaultValue,deprecationReason:n.deprecationReason,extensions:n.extensions,astNode:n.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 Ko(e){let t=Jt(e.fields);return Ke(t)||R(!1,`${e.name} fields must be an object with field names as keys or a function which returns such an object.`),ht(t,(n,r)=>(!("resolve"in n)||R(!1,`${e.name}.${r} field has a resolve property, but Input Types cannot define resolvers.`),{name:ie(r),description:n.description,type:n.type,defaultValue:n.defaultValue,deprecationReason:n.deprecationReason,extensions:ne(n.extensions),astNode:n.astNode}))}function et(e){return b(e.type)&&e.defaultValue===void 0}function zt(e,t){return e===t?!0:b(e)&&b(t)||w(e)&&w(t)?zt(e.ofType,t.ofType):!1}function Se(e,t,n){return t===n?!0:b(n)?b(t)?Se(e,t.ofType,n.ofType):!1:b(t)?Se(e,t.ofType,n):w(n)?w(t)?Se(e,t.ofType,n.ofType):!1:w(t)?!1:re(n)&&(_(t)||O(t))&&e.isSubType(n,t)}function Hn(e,t,n){return t===n?!0:re(t)?re(n)?e.getPossibleTypes(t).some(r=>e.isSubType(n,r)):e.isSubType(t,n):re(n)?e.isSubType(n,t):!1}var Et=2147483647,vt=-2147483648,ce=new ye({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=Nt(e);if(typeof t=="boolean")return t?1:0;let n=t;if(typeof t=="string"&&t!==""&&(n=Number(t)),typeof n!="number"||!Number.isInteger(n))throw new f(`Int cannot represent non-integer value: ${y(t)}`);if(n>Et||n<vt)throw new f("Int cannot represent non 32-bit signed integer value: "+y(t));return n},parseValue(e){if(typeof e!="number"||!Number.isInteger(e))throw new f(`Int cannot represent non-integer value: ${y(e)}`);if(e>Et||e<vt)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: ${L(e)}`,{nodes:e});let t=parseInt(e.value,10);if(t>Et||t<vt)throw new f(`Int cannot represent non 32-bit signed integer value: ${e.value}`,{nodes:e});return t}}),ue=new ye({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=Nt(e);if(typeof t=="boolean")return t?1:0;let n=t;if(typeof t=="string"&&t!==""&&(n=Number(t)),typeof n!="number"||!Number.isFinite(n))throw new f(`Float cannot represent non numeric value: ${y(t)}`);return n},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: ${L(e)}`,e);return parseFloat(e.value)}}),v=new ye({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=Nt(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: ${L(e)}`,{nodes:e});return e.value}}),V=new ye({name:"Boolean",description:"The `Boolean` scalar type represents `true` or `false`.",serialize(e){let t=Nt(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: ${L(e)}`,{nodes:e});return e.value}}),ge=new ye({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=Nt(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: "+L(e),{nodes:e});return e.value}}),Xt=Object.freeze([v,ce,ue,V,ge]);function Nt(e){if(G(e)){if(typeof e.valueOf=="function"){let t=e.valueOf();if(!G(t))return t}if(typeof e.toJSON=="function")return e.toJSON()}return e}function It(e){return ee(e,Oe)}var Oe=class{constructor(t){var n,r;this.name=ie(t.name),this.description=t.description,this.locations=t.locations,this.isRepeatable=(n=t.isRepeatable)!==null&&n!==void 0?n:!1,this.extensions=ne(t.extensions),this.astNode=t.astNode,Array.isArray(t.locations)||R(!1,`@${t.name} locations must be an Array.`);let i=(r=t.args)!==null&&r!==void 0?r:{};G(i)&&!Array.isArray(i)||R(!1,`@${t.name} args must be an object with argument names as keys.`),this.args=qn(i)}get[Symbol.toStringTag](){return"GraphQLDirective"}toConfig(){return{name:this.name,description:this.description,locations:this.locations,args:Yn(this.args),isRepeatable:this.isRepeatable,extensions:this.extensions,astNode:this.astNode}}toString(){return"@"+this.name}toJSON(){return this.toString()}},Kt=new Oe({name:"include",description:"Directs the executor to include this field or fragment only when the `if` argument is true.",locations:[N.FIELD,N.FRAGMENT_SPREAD,N.INLINE_FRAGMENT],args:{if:{type:new I(V),description:"Included when true."}}}),Wt=new Oe({name:"skip",description:"Directs the executor to skip this field or fragment when the `if` argument is true.",locations:[N.FIELD,N.FRAGMENT_SPREAD,N.INLINE_FRAGMENT],args:{if:{type:new I(V),description:"Skipped when true."}}}),Di="No longer supported",Zt=new Oe({name:"deprecated",description:"Marks an element of a GraphQL schema as no longer supported.",locations:[N.FIELD_DEFINITION,N.ARGUMENT_DEFINITION,N.INPUT_FIELD_DEFINITION,N.ENUM_VALUE],args:{reason:{type:v,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:Di}}}),Ai=new Oe({name:"specifiedBy",description:"Exposes a URL that specifies the behavior of this scalar.",locations:[N.SCALAR],args:{url:{type:new I(v),description:"The URL that specifies the behavior of this scalar."}}}),Fi=new Oe({name:"oneOf",description:"Indicates exactly one field must be supplied and this field must not be `null`.",locations:[N.INPUT_OBJECT],args:{}}),Ee=Object.freeze([Kt,Wt,Zt,Ai,Fi]);function tt(e){return typeof e=="object"&&typeof e?.[Symbol.iterator]=="function"}function nt(e,t){if(b(t)){let n=nt(e,t.ofType);return n?.kind===u.NULL?null:n}if(e===null)return{kind:u.NULL};if(e===void 0)return null;if(w(t)){let n=t.ofType;if(tt(e)){let r=[];for(let i of e){let o=nt(i,n);o!=null&&r.push(o)}return{kind:u.LIST,values:r}}return nt(e,n)}if(x(t)){if(!G(e))return null;let n=[];for(let r of Object.values(t.getFields())){let i=nt(e[r.name],r.type);i&&n.push({kind:u.OBJECT_FIELD,name:{kind:u.NAME,value:r.name},value:i})}return{kind:u.OBJECT,fields:n}}if(z(t)){let n=t.serialize(e);if(n==null)return null;if(typeof n=="boolean")return{kind:u.BOOLEAN,value:n};if(typeof n=="number"&&Number.isFinite(n)){let r=String(n);return ki.test(r)?{kind:u.INT,value:r}:{kind:u.FLOAT,value:r}}if(typeof n=="string")return $(t)?{kind:u.ENUM,value:n}:t===ge&&ki.test(n)?{kind:u.INT,value:n}:{kind:u.STRING,value:n};throw new TypeError(`Cannot convert value to AST: ${y(n)}.`)}k(!1,"Unexpected input type: "+y(t))}var ki=/^-?(?:0|[1-9][0-9]*)$/;var bt=new j({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:v,resolve:e=>e.description},types:{description:"A list of all types supported by this server.",type:new I(new A(new I(le))),resolve(e){return Object.values(e.getTypeMap())}},queryType:{description:"The type that query operations will be rooted at.",type:new I(le),resolve:e=>e.getQueryType()},mutationType:{description:"If this server supports mutation, the type that mutation operations will be rooted at.",type:le,resolve:e=>e.getMutationType()},subscriptionType:{description:"If this server support subscription, the type that subscription operations will be rooted at.",type:le,resolve:e=>e.getSubscriptionType()},directives:{description:"A list of all directives supported by this server.",type:new I(new A(new I(Jn))),resolve:e=>e.getDirectives()}})}),Jn=new j({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 I(v),resolve:e=>e.name},description:{type:v,resolve:e=>e.description},isRepeatable:{type:new I(V),resolve:e=>e.isRepeatable},locations:{type:new I(new A(new I(zn))),resolve:e=>e.locations},args:{type:new I(new A(new I(Rt))),args:{includeDeprecated:{type:V,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(n=>n.deprecationReason==null)}}})}),zn=new Ne({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:N.QUERY,description:"Location adjacent to a query operation."},MUTATION:{value:N.MUTATION,description:"Location adjacent to a mutation operation."},SUBSCRIPTION:{value:N.SUBSCRIPTION,description:"Location adjacent to a subscription operation."},FIELD:{value:N.FIELD,description:"Location adjacent to a field."},FRAGMENT_DEFINITION:{value:N.FRAGMENT_DEFINITION,description:"Location adjacent to a fragment definition."},FRAGMENT_SPREAD:{value:N.FRAGMENT_SPREAD,description:"Location adjacent to a fragment spread."},INLINE_FRAGMENT:{value:N.INLINE_FRAGMENT,description:"Location adjacent to an inline fragment."},VARIABLE_DEFINITION:{value:N.VARIABLE_DEFINITION,description:"Location adjacent to a variable definition."},SCHEMA:{value:N.SCHEMA,description:"Location adjacent to a schema definition."},SCALAR:{value:N.SCALAR,description:"Location adjacent to a scalar definition."},OBJECT:{value:N.OBJECT,description:"Location adjacent to an object type definition."},FIELD_DEFINITION:{value:N.FIELD_DEFINITION,description:"Location adjacent to a field definition."},ARGUMENT_DEFINITION:{value:N.ARGUMENT_DEFINITION,description:"Location adjacent to an argument definition."},INTERFACE:{value:N.INTERFACE,description:"Location adjacent to an interface definition."},UNION:{value:N.UNION,description:"Location adjacent to a union definition."},ENUM:{value:N.ENUM,description:"Location adjacent to an enum definition."},ENUM_VALUE:{value:N.ENUM_VALUE,description:"Location adjacent to an enum value definition."},INPUT_OBJECT:{value:N.INPUT_OBJECT,description:"Location adjacent to an input object type definition."},INPUT_FIELD_DEFINITION:{value:N.INPUT_FIELD_DEFINITION,description:"Location adjacent to an input object field definition."}}}),le=new j({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 I(Wn),resolve(e){if(Te(e))return Q.SCALAR;if(O(e))return Q.OBJECT;if(_(e))return Q.INTERFACE;if(H(e))return Q.UNION;if($(e))return Q.ENUM;if(x(e))return Q.INPUT_OBJECT;if(w(e))return Q.LIST;if(b(e))return Q.NON_NULL;k(!1,`Unexpected type: "${y(e)}".`)}},name:{type:v,resolve:e=>"name"in e?e.name:void 0},description:{type:v,resolve:e=>"description"in e?e.description:void 0},specifiedByURL:{type:v,resolve:e=>"specifiedByURL"in e?e.specifiedByURL:void 0},fields:{type:new A(new I(Xn)),args:{includeDeprecated:{type:V,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(O(e)||_(e)){let n=Object.values(e.getFields());return t?n:n.filter(r=>r.deprecationReason==null)}}},interfaces:{type:new A(new I(le)),resolve(e){if(O(e)||_(e))return e.getInterfaces()}},possibleTypes:{type:new A(new I(le)),resolve(e,t,n,{schema:r}){if(re(e))return r.getPossibleTypes(e)}},enumValues:{type:new A(new I(Kn)),args:{includeDeprecated:{type:V,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if($(e)){let n=e.getValues();return t?n:n.filter(r=>r.deprecationReason==null)}}},inputFields:{type:new A(new I(Rt)),args:{includeDeprecated:{type:V,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(x(e)){let n=Object.values(e.getFields());return t?n:n.filter(r=>r.deprecationReason==null)}}},ofType:{type:le,resolve:e=>"ofType"in e?e.ofType:void 0},isOneOf:{type:V,resolve:e=>{if(x(e))return e.isOneOf}}})}),Xn=new j({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 I(v),resolve:e=>e.name},description:{type:v,resolve:e=>e.description},args:{type:new I(new A(new I(Rt))),args:{includeDeprecated:{type:V,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(n=>n.deprecationReason==null)}},type:{type:new I(le),resolve:e=>e.type},isDeprecated:{type:new I(V),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:v,resolve:e=>e.deprecationReason}})}),Rt=new j({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 I(v),resolve:e=>e.name},description:{type:v,resolve:e=>e.description},type:{type:new I(le),resolve:e=>e.type},defaultValue:{type:v,description:"A GraphQL-formatted string representing the default value for this input value.",resolve(e){let{type:t,defaultValue:n}=e,r=nt(n,t);return r?L(r):null}},isDeprecated:{type:new I(V),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:v,resolve:e=>e.deprecationReason}})}),Kn=new j({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 I(v),resolve:e=>e.name},description:{type:v,resolve:e=>e.description},isDeprecated:{type:new I(V),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:v,resolve:e=>e.deprecationReason}})}),Q;(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"})(Q||(Q={}));var Wn=new Ne({name:"__TypeKind",description:"An enum describing what kind of type a given `__Type` is.",values:{SCALAR:{value:Q.SCALAR,description:"Indicates this type is a scalar."},OBJECT:{value:Q.OBJECT,description:"Indicates this type is an object. `fields` and `interfaces` are valid fields."},INTERFACE:{value:Q.INTERFACE,description:"Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields."},UNION:{value:Q.UNION,description:"Indicates this type is a union. `possibleTypes` is a valid field."},ENUM:{value:Q.ENUM,description:"Indicates this type is an enum. `enumValues` is a valid field."},INPUT_OBJECT:{value:Q.INPUT_OBJECT,description:"Indicates this type is an input object. `inputFields` is a valid field."},LIST:{value:Q.LIST,description:"Indicates this type is a list. `ofType` is a valid field."},NON_NULL:{value:Q.NON_NULL,description:"Indicates this type is a non-null. `ofType` is a valid field."}}}),Fe={name:"__schema",type:new I(bt),description:"Access the current type schema of this server.",args:[],resolve:(e,t,n,{schema:r})=>r,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},ke={name:"__type",type:le,description:"Request the type information of a single type.",args:[{name:"name",description:void 0,type:new I(v),defaultValue:void 0,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0}],resolve:(e,{name:t},n,{schema:r})=>r.getType(t),deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},Ce={name:"__typename",type:new I(v),description:"The name of the current Object type at runtime.",args:[],resolve:(e,t,n,{parentType:r})=>r.name,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},en=Object.freeze([bt,Jn,zn,le,Xn,Rt,Kn,Wn]);function Zn(e){return en.some(({name:t})=>e.name===t)}function er(e){return ee(e,Me)}function tn(e){if(!er(e))throw new Error(`Expected ${y(e)} to be a GraphQL schema.`);return e}var Me=class{constructor(t){var n,r;this.__validationErrors=t.assumeValid===!0?[]:void 0,G(t)||R(!1,"Must provide configuration object."),!t.types||Array.isArray(t.types)||R(!1,`"types" must be Array if provided but got: ${y(t.types)}.`),!t.directives||Array.isArray(t.directives)||R(!1,`"directives" must be Array if provided but got: ${y(t.directives)}.`),this.description=t.description,this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._queryType=t.query,this._mutationType=t.mutation,this._subscriptionType=t.subscription,this._directives=(r=t.directives)!==null&&r!==void 0?r:Ee;let i=new Set(t.types);if(t.types!=null)for(let o of t.types)i.delete(o),ve(o,i);this._queryType!=null&&ve(this._queryType,i),this._mutationType!=null&&ve(this._mutationType,i),this._subscriptionType!=null&&ve(this._subscriptionType,i);for(let o of this._directives)if(It(o))for(let s of o.args)ve(s.type,i);ve(bt,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||R(!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,_(o)){for(let a of o.getInterfaces())if(_(a)){let c=this._implementationsMap[a.name];c===void 0&&(c=this._implementationsMap[a.name]={objects:[],interfaces:[]}),c.interfaces.push(o)}}else if(O(o)){for(let a of o.getInterfaces())if(_(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 F.QUERY:return this.getQueryType();case F.MUTATION:return this.getMutationType();case F.SUBSCRIPTION:return this.getSubscriptionType()}}getTypeMap(){return this._typeMap}getType(t){return this.getTypeMap()[t]}getPossibleTypes(t){return H(t)?t.getTypes():this.getImplementations(t).objects}getImplementations(t){let n=this._implementationsMap[t.name];return n??{objects:[],interfaces:[]}}isSubType(t,n){let r=this._subTypeMap[t.name];if(r===void 0){if(r=Object.create(null),H(t))for(let i of t.getTypes())r[i.name]=!0;else{let i=this.getImplementations(t);for(let o of i.objects)r[o.name]=!0;for(let o of i.interfaces)r[o.name]=!0}this._subTypeMap[t.name]=r}return r[n.name]!==void 0}getDirectives(){return this._directives}getDirective(t){return this.getDirectives().find(n=>n.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 ve(e,t){let n=Y(e);if(!t.has(n)){if(t.add(n),H(n))for(let r of n.getTypes())ve(r,t);else if(O(n)||_(n)){for(let r of n.getInterfaces())ve(r,t);for(let r of Object.values(n.getFields())){ve(r.type,t);for(let i of r.args)ve(i.type,t)}}else if(x(n))for(let r of Object.values(n.getFields()))ve(r.type,t)}return t}function Ui(e){if(tn(e),e.__validationErrors)return e.__validationErrors;let t=new nr(e);Ko(t),Wo(t),Zo(t);let n=t.getErrors();return e.__validationErrors=n,n}function St(e){let t=Ui(e);if(t.length!==0)throw new Error(t.map(n=>n.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 I(v),resolve:e=>e.name},description:{type:v,resolve:e=>e.description},isRepeatable:{type:new I(V),resolve:e=>e.isRepeatable},locations:{type:new I(new A(new I(zn))),resolve:e=>e.locations},args:{type:new I(new A(new I(Rt))),args:{includeDeprecated:{type:V,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(n=>n.deprecationReason==null)}}})}),zn=new Ne({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:N.QUERY,description:"Location adjacent to a query operation."},MUTATION:{value:N.MUTATION,description:"Location adjacent to a mutation operation."},SUBSCRIPTION:{value:N.SUBSCRIPTION,description:"Location adjacent to a subscription operation."},FIELD:{value:N.FIELD,description:"Location adjacent to a field."},FRAGMENT_DEFINITION:{value:N.FRAGMENT_DEFINITION,description:"Location adjacent to a fragment definition."},FRAGMENT_SPREAD:{value:N.FRAGMENT_SPREAD,description:"Location adjacent to a fragment spread."},INLINE_FRAGMENT:{value:N.INLINE_FRAGMENT,description:"Location adjacent to an inline fragment."},VARIABLE_DEFINITION:{value:N.VARIABLE_DEFINITION,description:"Location adjacent to a variable definition."},SCHEMA:{value:N.SCHEMA,description:"Location adjacent to a schema definition."},SCALAR:{value:N.SCALAR,description:"Location adjacent to a scalar definition."},OBJECT:{value:N.OBJECT,description:"Location adjacent to an object type definition."},FIELD_DEFINITION:{value:N.FIELD_DEFINITION,description:"Location adjacent to a field definition."},ARGUMENT_DEFINITION:{value:N.ARGUMENT_DEFINITION,description:"Location adjacent to an argument definition."},INTERFACE:{value:N.INTERFACE,description:"Location adjacent to an interface definition."},UNION:{value:N.UNION,description:"Location adjacent to a union definition."},ENUM:{value:N.ENUM,description:"Location adjacent to an enum definition."},ENUM_VALUE:{value:N.ENUM_VALUE,description:"Location adjacent to an enum value definition."},INPUT_OBJECT:{value:N.INPUT_OBJECT,description:"Location adjacent to an input object type definition."},INPUT_FIELD_DEFINITION:{value:N.INPUT_FIELD_DEFINITION,description:"Location adjacent to an input object field definition."}}}),le=new j({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 I(Wn),resolve(e){if(Te(e))return Q.SCALAR;if(O(e))return Q.OBJECT;if(_(e))return Q.INTERFACE;if(H(e))return Q.UNION;if($(e))return Q.ENUM;if(x(e))return Q.INPUT_OBJECT;if(w(e))return Q.LIST;if(b(e))return Q.NON_NULL;k(!1,`Unexpected type: "${y(e)}".`)}},name:{type:v,resolve:e=>"name"in e?e.name:void 0},description:{type:v,resolve:e=>"description"in e?e.description:void 0},specifiedByURL:{type:v,resolve:e=>"specifiedByURL"in e?e.specifiedByURL:void 0},fields:{type:new A(new I(Xn)),args:{includeDeprecated:{type:V,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(O(e)||_(e)){let n=Object.values(e.getFields());return t?n:n.filter(r=>r.deprecationReason==null)}}},interfaces:{type:new A(new I(le)),resolve(e){if(O(e)||_(e))return e.getInterfaces()}},possibleTypes:{type:new A(new I(le)),resolve(e,t,n,{schema:r}){if(re(e))return r.getPossibleTypes(e)}},enumValues:{type:new A(new I(Kn)),args:{includeDeprecated:{type:V,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if($(e)){let n=e.getValues();return t?n:n.filter(r=>r.deprecationReason==null)}}},inputFields:{type:new A(new I(Rt)),args:{includeDeprecated:{type:V,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(x(e)){let n=Object.values(e.getFields());return t?n:n.filter(r=>r.deprecationReason==null)}}},ofType:{type:le,resolve:e=>"ofType"in e?e.ofType:void 0},isOneOf:{type:V,resolve:e=>{if(x(e))return e.isOneOf}}})}),Xn=new j({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 I(v),resolve:e=>e.name},description:{type:v,resolve:e=>e.description},args:{type:new I(new A(new I(Rt))),args:{includeDeprecated:{type:V,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(n=>n.deprecationReason==null)}},type:{type:new I(le),resolve:e=>e.type},isDeprecated:{type:new I(V),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:v,resolve:e=>e.deprecationReason}})}),Rt=new j({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 I(v),resolve:e=>e.name},description:{type:v,resolve:e=>e.description},type:{type:new I(le),resolve:e=>e.type},defaultValue:{type:v,description:"A GraphQL-formatted string representing the default value for this input value.",resolve(e){let{type:t,defaultValue:n}=e,r=nt(n,t);return r?L(r):null}},isDeprecated:{type:new I(V),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:v,resolve:e=>e.deprecationReason}})}),Kn=new j({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 I(v),resolve:e=>e.name},description:{type:v,resolve:e=>e.description},isDeprecated:{type:new I(V),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:v,resolve:e=>e.deprecationReason}})}),Q;(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"})(Q||(Q={}));var Wn=new Ne({name:"__TypeKind",description:"An enum describing what kind of type a given `__Type` is.",values:{SCALAR:{value:Q.SCALAR,description:"Indicates this type is a scalar."},OBJECT:{value:Q.OBJECT,description:"Indicates this type is an object. `fields` and `interfaces` are valid fields."},INTERFACE:{value:Q.INTERFACE,description:"Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields."},UNION:{value:Q.UNION,description:"Indicates this type is a union. `possibleTypes` is a valid field."},ENUM:{value:Q.ENUM,description:"Indicates this type is an enum. `enumValues` is a valid field."},INPUT_OBJECT:{value:Q.INPUT_OBJECT,description:"Indicates this type is an input object. `inputFields` is a valid field."},LIST:{value:Q.LIST,description:"Indicates this type is a list. `ofType` is a valid field."},NON_NULL:{value:Q.NON_NULL,description:"Indicates this type is a non-null. `ofType` is a valid field."}}}),Fe={name:"__schema",type:new I(bt),description:"Access the current type schema of this server.",args:[],resolve:(e,t,n,{schema:r})=>r,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},ke={name:"__type",type:le,description:"Request the type information of a single type.",args:[{name:"name",description:void 0,type:new I(v),defaultValue:void 0,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0}],resolve:(e,{name:t},n,{schema:r})=>r.getType(t),deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},Ce={name:"__typename",type:new I(v),description:"The name of the current Object type at runtime.",args:[],resolve:(e,t,n,{parentType:r})=>r.name,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},en=Object.freeze([bt,Jn,zn,le,Xn,Rt,Kn,Wn]);function Zn(e){return en.some(({name:t})=>e.name===t)}function er(e){return ee(e,Me)}function tn(e){if(!er(e))throw new Error(`Expected ${y(e)} to be a GraphQL schema.`);return e}var Me=class{constructor(t){var n,r;this.__validationErrors=t.assumeValid===!0?[]:void 0,G(t)||R(!1,"Must provide configuration object."),!t.types||Array.isArray(t.types)||R(!1,`"types" must be Array if provided but got: ${y(t.types)}.`),!t.directives||Array.isArray(t.directives)||R(!1,`"directives" must be Array if provided but got: ${y(t.directives)}.`),this.description=t.description,this.extensions=ne(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._queryType=t.query,this._mutationType=t.mutation,this._subscriptionType=t.subscription,this._directives=(r=t.directives)!==null&&r!==void 0?r:Ee;let i=new Set(t.types);if(t.types!=null)for(let o of t.types)i.delete(o),ve(o,i);this._queryType!=null&&ve(this._queryType,i),this._mutationType!=null&&ve(this._mutationType,i),this._subscriptionType!=null&&ve(this._subscriptionType,i);for(let o of this._directives)if(It(o))for(let s of o.args)ve(s.type,i);ve(bt,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||R(!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,_(o)){for(let a of o.getInterfaces())if(_(a)){let c=this._implementationsMap[a.name];c===void 0&&(c=this._implementationsMap[a.name]={objects:[],interfaces:[]}),c.interfaces.push(o)}}else if(O(o)){for(let a of o.getInterfaces())if(_(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 F.QUERY:return this.getQueryType();case F.MUTATION:return this.getMutationType();case F.SUBSCRIPTION:return this.getSubscriptionType()}}getTypeMap(){return this._typeMap}getType(t){return this.getTypeMap()[t]}getPossibleTypes(t){return H(t)?t.getTypes():this.getImplementations(t).objects}getImplementations(t){let n=this._implementationsMap[t.name];return n??{objects:[],interfaces:[]}}isSubType(t,n){let r=this._subTypeMap[t.name];if(r===void 0){if(r=Object.create(null),H(t))for(let i of t.getTypes())r[i.name]=!0;else{let i=this.getImplementations(t);for(let o of i.objects)r[o.name]=!0;for(let o of i.interfaces)r[o.name]=!0}this._subTypeMap[t.name]=r}return r[n.name]!==void 0}getDirectives(){return this._directives}getDirective(t){return this.getDirectives().find(n=>n.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 ve(e,t){let n=Y(e);if(!t.has(n)){if(t.add(n),H(n))for(let r of n.getTypes())ve(r,t);else if(O(n)||_(n)){for(let r of n.getInterfaces())ve(r,t);for(let r of Object.values(n.getFields())){ve(r.type,t);for(let i of r.args)ve(i.type,t)}}else if(x(n))for(let r of Object.values(n.getFields()))ve(r.type,t)}return t}function Ui(e){if(tn(e),e.__validationErrors)return e.__validationErrors;let t=new nr(e);Wo(t),Zo(t),es(t);let n=t.getErrors();return e.__validationErrors=n,n}function St(e){let t=Ui(e);if(t.length!==0)throw new Error(t.map(n=>n.message).join(`
52
52
 
53
- `))}var nr=class{constructor(t){this._errors=[],this.schema=t}reportError(t,n){let r=Array.isArray(n)?n.filter(Boolean):n;this._errors.push(new f(t,{nodes:r}))}getErrors(){return this._errors}};function Ko(e){let t=e.schema,n=t.getQueryType();if(!n)e.reportError("Query root type must be provided.",t.astNode);else if(!O(n)){var r;e.reportError(`Query root type must be Object type, it cannot be ${y(n)}.`,(r=tr(t,F.QUERY))!==null&&r!==void 0?r:n.astNode)}let i=t.getMutationType();if(i&&!O(i)){var o;e.reportError(`Mutation root type must be Object type if provided, it cannot be ${y(i)}.`,(o=tr(t,F.MUTATION))!==null&&o!==void 0?o:i.astNode)}let s=t.getSubscriptionType();if(s&&!O(s)){var a;e.reportError(`Subscription root type must be Object type if provided, it cannot be ${y(s)}.`,(a=tr(t,F.SUBSCRIPTION))!==null&&a!==void 0?a:s.astNode)}}function tr(e,t){var n;return(n=[e.astNode,...e.extensionASTNodes].flatMap(r=>{var i;return(i=r?.operationTypes)!==null&&i!==void 0?i:[]}).find(r=>r.operation===t))===null||n===void 0?void 0:n.type}function Wo(e){for(let n of e.schema.getDirectives()){if(!It(n)){e.reportError(`Expected directive but got: ${y(n)}.`,n?.astNode);continue}Pe(e,n),n.locations.length===0&&e.reportError(`Directive @${n.name} must include 1 or more locations.`,n.astNode);for(let r of n.args)if(Pe(e,r),J(r.type)||e.reportError(`The type of @${n.name}(${r.name}:) must be Input Type but got: ${y(r.type)}.`,r.astNode),Re(r)&&r.deprecationReason!=null){var t;e.reportError(`Required argument @${n.name}(${r.name}:) cannot be deprecated.`,[rr(r.astNode),(t=r.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 Zo(e){let t=ss(e),n=e.schema.getTypeMap();for(let r of Object.values(n)){if(!Yt(r)){e.reportError(`Expected GraphQL named type but got: ${y(r)}.`,r.astNode);continue}Zn(r)||Pe(e,r),O(r)||_(r)?(Ci(e,r),Mi(e,r)):H(r)?ns(e,r):$(r)?rs(e,r):x(r)&&(is(e,r),t(r))}}function Ci(e,t){let n=Object.values(t.getFields());n.length===0&&e.reportError(`Type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let s of n){if(Pe(e,s),!be(s.type)){var r;e.reportError(`The type of ${t.name}.${s.name} must be Output Type but got: ${y(s.type)}.`,(r=s.astNode)===null||r===void 0?void 0:r.type)}for(let a of s.args){let c=a.name;if(Pe(e,a),!J(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(Re(a)&&a.deprecationReason!=null){var o;e.reportError(`Required argument ${t.name}.${s.name}(${c}:) cannot be deprecated.`,[rr(a.astNode),(o=a.astNode)===null||o===void 0?void 0:o.type])}}}}function Mi(e,t){let n=Object.create(null);for(let r of t.getInterfaces()){if(!_(r)){e.reportError(`Type ${y(t)} must only implement Interface types, it cannot implement ${y(r)}.`,Ot(t,r));continue}if(t===r){e.reportError(`Type ${t.name} cannot implement itself because it would create a circular reference.`,Ot(t,r));continue}if(n[r.name]){e.reportError(`Type ${t.name} can only implement ${r.name} once.`,Ot(t,r));continue}n[r.name]=!0,ts(e,t,r),es(e,t,r)}}function es(e,t,n){let r=t.getFields();for(let c of Object.values(n.getFields())){let p=c.name,l=r[p];if(!l){e.reportError(`Interface field ${n.name}.${p} expected but ${t.name} does not provide it.`,[c.astNode,t.astNode,...t.extensionASTNodes]);continue}if(!Se(e.schema,l.type,c.type)){var i,o;e.reportError(`Interface field ${n.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 ${n.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 ${n.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)&&Re(d)&&e.reportError(`Object field ${t.name}.${p} includes required argument ${m} that is missing from the Interface field ${n.name}.${p}.`,[d.astNode,c.astNode])}}}function ts(e,t,n){let r=t.getInterfaces();for(let i of n.getInterfaces())r.includes(i)||e.reportError(i===t?`Type ${t.name} cannot implement ${n.name} because it would create a circular reference.`:`Type ${t.name} must implement ${i.name} because it is implemented by ${n.name}.`,[...Ot(n,i),...Ot(t,n)])}function ns(e,t){let n=t.getTypes();n.length===0&&e.reportError(`Union type ${t.name} must define one or more member types.`,[t.astNode,...t.extensionASTNodes]);let r=Object.create(null);for(let i of n){if(r[i.name]){e.reportError(`Union type ${t.name} can only include type ${i.name} once.`,Pi(t,i.name));continue}r[i.name]=!0,O(i)||e.reportError(`Union type ${t.name} can only include Object types, it cannot include ${y(i)}.`,Pi(t,String(i)))}}function rs(e,t){let n=t.getValues();n.length===0&&e.reportError(`Enum type ${t.name} must define one or more values.`,[t.astNode,...t.extensionASTNodes]);for(let r of n)Pe(e,r)}function is(e,t){let n=Object.values(t.getFields());n.length===0&&e.reportError(`Input Object type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let o of n){if(Pe(e,o),!J(o.type)){var r;e.reportError(`The type of ${t.name}.${o.name} must be Input Type but got: ${y(o.type)}.`,(r=o.astNode)===null||r===void 0?void 0:r.type)}if(et(o)&&o.deprecationReason!=null){var i;e.reportError(`Required input field ${t.name}.${o.name} cannot be deprecated.`,[rr(o.astNode),(i=o.astNode)===null||i===void 0?void 0:i.type])}t.isOneOf&&os(t,o,e)}}function os(e,t,n){if(b(t.type)){var r;n.reportError(`OneOf input field ${e.name}.${t.name} must be nullable.`,(r=t.astNode)===null||r===void 0?void 0:r.type)}t.defaultValue!==void 0&&n.reportError(`OneOf input field ${e.name}.${t.name} cannot have a default value.`,t.astNode)}function ss(e){let t=Object.create(null),n=[],r=Object.create(null);return i;function i(o){if(t[o.name])return;t[o.name]=!0,r[o.name]=n.length;let s=Object.values(o.getFields());for(let a of s)if(b(a.type)&&x(a.type.ofType)){let c=a.type.ofType,p=r[c.name];if(n.push(a),p===void 0)i(c);else{let l=n.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))}n.pop()}r[o.name]=void 0}}function Ot(e,t){let{astNode:n,extensionASTNodes:r}=e;return(n!=null?[n,...r]:r).flatMap(o=>{var s;return(s=o.interfaces)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t.name)}function Pi(e,t){let{astNode:n,extensionASTNodes:r}=e;return(n!=null?[n,...r]:r).flatMap(o=>{var s;return(s=o.types)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t)}function rr(e){var t;return e==null||(t=e.directives)===null||t===void 0?void 0:t.find(n=>n.name.value===Zt.name)}function C(e,t){switch(t.kind){case u.LIST_TYPE:{let n=C(e,t.type);return n&&new A(n)}case u.NON_NULL_TYPE:{let n=C(e,t.type);return n&&new I(n)}case u.NAMED_TYPE:return e.getType(t.name.value)}}var rt=class{constructor(t,n,r){this._schema=t,this._typeStack=[],this._parentTypeStack=[],this._inputTypeStack=[],this._fieldDefStack=[],this._defaultValueStack=[],this._directive=null,this._argument=null,this._enumValue=null,this._getFieldDef=r??as,n&&(J(n)&&this._inputTypeStack.push(n),ae(n)&&this._parentTypeStack.push(n),be(n)&&this._typeStack.push(n))}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 n=this._schema;switch(t.kind){case u.SELECTION_SET:{let i=Y(this.getType());this._parentTypeStack.push(ae(i)?i:void 0);break}case u.FIELD:{let i=this.getParentType(),o,s;i&&(o=this._getFieldDef(n,i,t),o&&(s=o.type)),this._fieldDefStack.push(o),this._typeStack.push(be(s)?s:void 0);break}case u.DIRECTIVE:this._directive=n.getDirective(t.name.value);break;case u.OPERATION_DEFINITION:{let i=n.getRootType(t.operation);this._typeStack.push(O(i)?i:void 0);break}case u.INLINE_FRAGMENT:case u.FRAGMENT_DEFINITION:{let i=t.typeCondition,o=i?C(n,i):Y(this.getType());this._typeStack.push(be(o)?o:void 0);break}case u.VARIABLE_DEFINITION:{let i=C(n,t.type);this._inputTypeStack.push(J(i)?i:void 0);break}case u.ARGUMENT:{var r;let i,o,s=(r=this.getDirective())!==null&&r!==void 0?r: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(J(o)?o:void 0);break}case u.LIST:{let i=Ze(this.getInputType()),o=w(i)?i.ofType:i;this._defaultValueStack.push(void 0),this._inputTypeStack.push(J(o)?o:void 0);break}case u.OBJECT_FIELD:{let i=Y(this.getInputType()),o,s;x(i)&&(s=i.getFields()[t.name.value],s&&(o=s.type)),this._defaultValueStack.push(s?s.defaultValue:void 0),this._inputTypeStack.push(J(o)?o:void 0);break}case u.ENUM:{let i=Y(this.getInputType()),o;$(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 as(e,t,n){let r=n.name.value;if(r===Fe.name&&e.getQueryType()===t)return Fe;if(r===ke.name&&e.getQueryType()===t)return ke;if(r===Ce.name&&ae(t))return Ce;if(O(t)||_(t))return t.getFields()[r]}function nn(e,t){return{enter(...n){let r=n[0];e.enter(r);let i=Xe(t,r.kind).enter;if(i){let o=i.apply(t,n);return o!==void 0&&(e.leave(r),pt(o)&&e.enter(o)),o}},leave(...n){let r=n[0],i=Xe(t,r.kind).leave,o;return i&&(o=i.apply(t,n)),e.leave(r),o}}}function ir(e){return e.kind===u.OPERATION_DEFINITION||e.kind===u.FRAGMENT_DEFINITION}function or(e){return e.kind===u.SCHEMA_DEFINITION||_e(e)||e.kind===u.DIRECTIVE_DEFINITION}function _e(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 sr(e){return e.kind===u.SCHEMA_EXTENSION||rn(e)}function rn(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 ar(e){return{Document(t){for(let n of t.definitions)if(!ir(n)){let r=n.kind===u.SCHEMA_DEFINITION||n.kind===u.SCHEMA_EXTENSION?"schema":'"'+n.name.value+'"';e.reportError(new f(`The ${r} definition is not executable.`,{nodes:n}))}return!1}}}function cr(e){return{Field(t){let n=e.getParentType();if(n&&!e.getFieldDef()){let i=e.getSchema(),o=t.name.value,s=W("to use an inline fragment on",cs(i,n,o));s===""&&(s=W(us(n,o))),e.reportError(new f(`Cannot query field "${o}" on type "${n.name}".`+s,{nodes:t}))}}}}function cs(e,t,n){if(!re(t))return[];let r=new Set,i=Object.create(null);for(let s of e.getPossibleTypes(t))if(s.getFields()[n]){r.add(s),i[s.name]=1;for(let a of s.getInterfaces()){var o;a.getFields()[n]&&(r.add(a),i[a.name]=((o=i[a.name])!==null&&o!==void 0?o:0)+1)}}return[...r].sort((s,a)=>{let c=i[a.name]-i[s.name];return c!==0?c:_(s)&&e.isSubType(s,a)?-1:_(a)&&e.isSubType(a,s)?1:Je(s.name,a.name)}).map(s=>s.name)}function us(e,t){if(O(e)||_(e)){let n=Object.keys(e.getFields());return te(t,n)}return[]}function ur(e){return{InlineFragment(t){let n=t.typeCondition;if(n){let r=C(e.getSchema(),n);if(r&&!ae(r)){let i=L(n);e.reportError(new f(`Fragment cannot condition on non composite type "${i}".`,{nodes:n}))}}},FragmentDefinition(t){let n=C(e.getSchema(),t.typeCondition);if(n&&!ae(n)){let r=L(t.typeCondition);e.reportError(new f(`Fragment "${t.name.value}" cannot condition on non composite type "${r}".`,{nodes:t.typeCondition}))}}}}function pr(e){return{...lr(e),Argument(t){let n=e.getArgument(),r=e.getFieldDef(),i=e.getParentType();if(!n&&r&&i){let o=t.name.value,s=r.args.map(c=>c.name),a=te(o,s);e.reportError(new f(`Unknown argument "${o}" on field "${i.name}.${r.name}".`+W(a),{nodes:t}))}}}}function lr(e){let t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():Ee;for(let s of r)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=te(l,c);e.reportError(new f(`Unknown argument "${l}" on directive "@${a}".`+W(d),{nodes:p}))}}return!1}}}function on(e){let t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():Ee;for(let o of r)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=ps(p);m&&!d.includes(m)&&e.reportError(new f(`Directive "@${l}" may not be used on ${m}.`,{nodes:o}))}}}function ps(e){let t=e[e.length-1];switch("kind"in t||k(!1),t.kind){case u.OPERATION_DEFINITION:return ls(t.operation);case u.FIELD:return N.FIELD;case u.FRAGMENT_SPREAD:return N.FRAGMENT_SPREAD;case u.INLINE_FRAGMENT:return N.INLINE_FRAGMENT;case u.FRAGMENT_DEFINITION:return N.FRAGMENT_DEFINITION;case u.VARIABLE_DEFINITION:return N.VARIABLE_DEFINITION;case u.SCHEMA_DEFINITION:case u.SCHEMA_EXTENSION:return N.SCHEMA;case u.SCALAR_TYPE_DEFINITION:case u.SCALAR_TYPE_EXTENSION:return N.SCALAR;case u.OBJECT_TYPE_DEFINITION:case u.OBJECT_TYPE_EXTENSION:return N.OBJECT;case u.FIELD_DEFINITION:return N.FIELD_DEFINITION;case u.INTERFACE_TYPE_DEFINITION:case u.INTERFACE_TYPE_EXTENSION:return N.INTERFACE;case u.UNION_TYPE_DEFINITION:case u.UNION_TYPE_EXTENSION:return N.UNION;case u.ENUM_TYPE_DEFINITION:case u.ENUM_TYPE_EXTENSION:return N.ENUM;case u.ENUM_VALUE_DEFINITION:return N.ENUM_VALUE;case u.INPUT_OBJECT_TYPE_DEFINITION:case u.INPUT_OBJECT_TYPE_EXTENSION:return N.INPUT_OBJECT;case u.INPUT_VALUE_DEFINITION:{let n=e[e.length-3];return"kind"in n||k(!1),n.kind===u.INPUT_OBJECT_TYPE_DEFINITION?N.INPUT_FIELD_DEFINITION:N.ARGUMENT_DEFINITION}default:k(!1,"Unexpected kind: "+y(t.kind))}}function ls(e){switch(e){case F.QUERY:return N.QUERY;case F.MUTATION:return N.MUTATION;case F.SUBSCRIPTION:return N.SUBSCRIPTION}}function fr(e){return{FragmentSpread(t){let n=t.name.value;e.getFragment(n)||e.reportError(new f(`Unknown fragment "${n}".`,{nodes:t.name}))}}}function sn(e){let t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);for(let o of e.getDocument().definitions)_e(o)&&(r[o.name.value]=!0);let i=[...Object.keys(n),...Object.keys(r)];return{NamedType(o,s,a,c,p){let l=o.name.value;if(!n[l]&&!r[l]){var d;let m=(d=p[2])!==null&&d!==void 0?d:a,T=m!=null&&fs(m);if(T&&$i.includes(l))return;let g=te(l,T?$i.concat(i):i);e.reportError(new f(`Unknown type "${l}".`+W(g),{nodes:o}))}}}}var $i=[...Xt,...en].map(e=>e.name);function fs(e){return"kind"in e&&(or(e)||sr(e))}function dr(e){let t=0;return{Document(n){t=n.definitions.filter(r=>r.kind===u.OPERATION_DEFINITION).length},OperationDefinition(n){!n.name&&t>1&&e.reportError(new f("This anonymous operation must be the only defined operation.",{nodes:n}))}}}function mr(e){var t,n,r;let i=e.getSchema(),o=(t=(n=(r=i?.astNode)!==null&&r!==void 0?r:i?.getQueryType())!==null&&n!==void 0?n: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 ds=3;function hr(e){function t(n,r=Object.create(null),i=0){if(n.kind===u.FRAGMENT_SPREAD){let o=n.name.value;if(r[o]===!0)return!1;let s=e.getFragment(o);if(!s)return!1;try{return r[o]=!0,t(s,r,i)}finally{r[o]=void 0}}if(n.kind===u.FIELD&&(n.name.value==="fields"||n.name.value==="interfaces"||n.name.value==="possibleTypes"||n.name.value==="inputFields")&&(i++,i>=ds))return!0;if("selectionSet"in n&&n.selectionSet){for(let o of n.selectionSet.selections)if(t(o,r,i))return!0}return!1}return{Field(n){if((n.name.value==="__schema"||n.name.value==="__type")&&t(n))return e.reportError(new f("Maximum introspection depth exceeded",{nodes:[n]})),!1}}}function yr(e){let t=Object.create(null),n=[],r=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){r[s]=n.length;for(let c of a){let p=c.name.value,l=r[p];if(n.push(c),l===void 0){let d=e.getFragment(p);d&&i(d)}else{let d=n.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}))}n.pop()}r[s]=void 0}}}function Tr(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(n){let r=e.getRecursiveVariableUsages(n);for(let{node:i}of r){let o=i.name.value;t[o]!==!0&&e.reportError(new f(n.name?`Variable "$${o}" is not defined by operation "${n.name.value}".`:`Variable "$${o}" is not defined.`,{nodes:[i,n]}))}}},VariableDefinition(n){t[n.variable.name.value]=!0}}}function gr(e){let t=[],n=[];return{OperationDefinition(r){return t.push(r),!1},FragmentDefinition(r){return n.push(r),!1},Document:{leave(){let r=Object.create(null);for(let i of t)for(let o of e.getRecursivelyReferencedFragments(i))r[o.name.value]=!0;for(let i of n){let o=i.name.value;r[o]!==!0&&e.reportError(new f(`Fragment "${o}" is never used.`,{nodes:i}))}}}}}function Er(e){let t=[];return{OperationDefinition:{enter(){t=[]},leave(n){let r=Object.create(null),i=e.getRecursiveVariableUsages(n);for(let{node:o}of i)r[o.name.value]=!0;for(let o of t){let s=o.variable.name.value;r[s]!==!0&&e.reportError(new f(n.name?`Variable "$${s}" is never used in operation "${n.name.value}".`:`Variable "$${s}" is never used.`,{nodes:o}))}}},VariableDefinition(n){t.push(n)}}}function an(e){switch(e.kind){case u.OBJECT:return{...e,fields:ms(e.fields)};case u.LIST:return{...e,values:e.values.map(an)};case u.INT:case u.FLOAT:case u.STRING:case u.BOOLEAN:case u.NULL:case u.ENUM:case u.VARIABLE:return e}}function ms(e){return e.map(t=>({...t,value:an(t.value)})).sort((t,n)=>Je(t.name.value,n.name.value))}function Gi(e){return Array.isArray(e)?e.map(([t,n])=>`subfields "${t}" conflict because `+Gi(n)).join(" and "):e}function br(e){let t=new ln,n=new Ir,r=new Map;return{SelectionSet(i){let o=hs(e,r,t,n,e.getParentType(),i);for(let[[s,a],c,p]of o){let l=Gi(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 hs(e,t,n,r,i,o){let s=[],[a,c]=pn(e,t,i,o);if(Ts(e,s,t,n,r,a),c.length!==0)for(let p=0;p<c.length;p++){cn(e,s,t,n,r,!1,a,c[p]);for(let l=p+1;l<c.length;l++)un(e,s,t,n,r,!1,c[p],c[l])}return s}function cn(e,t,n,r,i,o,s,a){if(r.has(s,a,o))return;r.add(s,a,o);let c=e.getFragment(a);if(!c)return;let[p,l]=Nr(e,n,c);if(s!==p){Rr(e,t,n,r,i,o,s,p);for(let d of l)cn(e,t,n,r,i,o,s,d)}}function un(e,t,n,r,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]=Nr(e,n,c),[m,T]=Nr(e,n,p);Rr(e,t,n,r,i,o,l,m);for(let g of T)un(e,t,n,r,i,o,s,g);for(let g of d)un(e,t,n,r,i,o,g,a)}function ys(e,t,n,r,i,o,s,a,c){let p=[],[l,d]=pn(e,t,o,s),[m,T]=pn(e,t,a,c);Rr(e,p,t,n,r,i,l,m);for(let g of T)cn(e,p,t,n,r,i,l,g);for(let g of d)cn(e,p,t,n,r,i,m,g);for(let g of d)for(let D of T)un(e,p,t,n,r,i,g,D);return p}function Ts(e,t,n,r,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=ji(e,n,r,i,!1,s,a[c],a[p]);l&&t.push(l)}}function Rr(e,t,n,r,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=ji(e,n,r,i,o,c,d,m);T&&t.push(T)}}}function ji(e,t,n,r,i,o,s,a){let[c,p,l]=s,[d,m,T]=a,g=i||c!==d&&O(c)&&O(d);if(!g){let oe=p.name.value,de=m.name.value;if(oe!==de)return[[o,`"${oe}" and "${de}" are different fields`],[p],[m]];if(!gs(p,m))return[[o,"they have differing arguments"],[p],[m]]}let D=l?.type,X=T?.type;if(D&&X&&vr(D,X))return[[o,`they return conflicting types "${y(D)}" and "${y(X)}"`],[p],[m]];let q=p.selectionSet,pe=m.selectionSet;if(q&&pe){let oe=ys(e,t,n,r,g,Y(D),q,Y(X),pe);return Es(oe,o,p,m)}}function gs(e,t){let n=e.arguments,r=t.arguments;if(n===void 0||n.length===0)return r===void 0||r.length===0;if(r===void 0||r.length===0||n.length!==r.length)return!1;let i=new Map(r.map(({name:o,value:s})=>[o.value,s]));return n.every(o=>{let s=o.value,a=i.get(o.name.value);return a===void 0?!1:Vi(s)===Vi(a)})}function Vi(e){return L(an(e))}function vr(e,t){return w(e)?w(t)?vr(e.ofType,t.ofType):!0:w(t)?!0:b(e)?b(t)?vr(e.ofType,t.ofType):!0:b(t)?!0:z(e)||z(t)?e!==t:!1}function pn(e,t,n,r){let i=t.get(r);if(i)return i;let o=Object.create(null),s=Object.create(null);Qi(e,n,r,o,s);let a=[o,Object.keys(s)];return t.set(r,a),a}function Nr(e,t,n){let r=t.get(n.selectionSet);if(r)return r;let i=C(e.getSchema(),n.typeCondition);return pn(e,t,i,n.selectionSet)}function Qi(e,t,n,r,i){for(let o of n.selections)switch(o.kind){case u.FIELD:{let s=o.name.value,a;(O(t)||_(t))&&(a=t.getFields()[s]);let c=o.alias?o.alias.value:s;r[c]||(r[c]=[]),r[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?C(e.getSchema(),s):t;Qi(e,a,o.selectionSet,r,i);break}}}function Es(e,t,n,r){if(e.length>0)return[[t,e.map(([i])=>i)],[n,...e.map(([,i])=>i).flat()],[r,...e.map(([,,i])=>i).flat()]]}var ln=class{constructor(){this._data=new Map}has(t,n,r){var i;let o=(i=this._data.get(t))===null||i===void 0?void 0:i.get(n);return o===void 0?!1:r?!0:r===o}add(t,n,r){let i=this._data.get(t);i===void 0?this._data.set(t,new Map([[n,r]])):i.set(n,r)}},Ir=class{constructor(){this._orderedPairSet=new ln}has(t,n,r){return t<n?this._orderedPairSet.has(t,n,r):this._orderedPairSet.has(n,t,r)}add(t,n,r){t<n?this._orderedPairSet.add(t,n,r):this._orderedPairSet.add(n,t,r)}};function Or(e){return{InlineFragment(t){let n=e.getType(),r=e.getParentType();if(ae(n)&&ae(r)&&!Hn(e.getSchema(),n,r)){let i=y(r),o=y(n);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 n=t.name.value,r=vs(e,n),i=e.getParentType();if(r&&i&&!Hn(e.getSchema(),r,i)){let o=y(i),s=y(r);e.reportError(new f(`Fragment "${n}" cannot be spread here as objects of type "${o}" can never be of type "${s}".`,{nodes:t}))}}}}function vs(e,t){let n=e.getFragment(t);if(n){let r=C(e.getSchema(),n.typeCondition);if(ae(r))return r}}function Sr(e){let t=e.getSchema(),n=Object.create(null);for(let i of e.getDocument().definitions)_e(i)&&(n[i.name.value]=i);return{ScalarTypeExtension:r,ObjectTypeExtension:r,InterfaceTypeExtension:r,UnionTypeExtension:r,EnumTypeExtension:r,InputObjectTypeExtension:r};function r(i){let o=i.name.value,s=n[o],a=t?.getType(o),c;if(s?c=Ns[s.kind]:a&&(c=Is(a)),c){if(c!==i.kind){let p=bs(i.kind);e.reportError(new f(`Cannot extend non-${p} type "${o}".`,{nodes:s?[s,i]:i}))}}else{let p=Object.keys({...n,...t?.getTypeMap()}),l=te(o,p);e.reportError(new f(`Cannot extend type "${o}" because it is not defined.`+W(l),{nodes:i.name}))}}}var Ns={[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 Is(e){if(Te(e))return u.SCALAR_TYPE_EXTENSION;if(O(e))return u.OBJECT_TYPE_EXTENSION;if(_(e))return u.INTERFACE_TYPE_EXTENSION;if(H(e))return u.UNION_TYPE_EXTENSION;if($(e))return u.ENUM_TYPE_EXTENSION;if(x(e))return u.INPUT_OBJECT_TYPE_EXTENSION;k(!1,"Unexpected type: "+y(e))}function bs(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:k(!1,"Unexpected kind: "+y(e))}}function _r(e){return{...xr(e),Field:{leave(t){var n;let r=e.getFieldDef();if(!r)return!1;let i=new Set((n=t.arguments)===null||n===void 0?void 0:n.map(o=>o.name.value));for(let o of r.args)if(!i.has(o.name)&&Re(o)){let s=y(o.type);e.reportError(new f(`Field "${r.name}" argument "${o.name}" of type "${s}" is required, but it was not provided.`,{nodes:t}))}}}}}function xr(e){var t;let n=Object.create(null),r=e.getSchema(),i=(t=r?.getDirectives())!==null&&t!==void 0?t:Ee;for(let a of i)n[a.name]=me(a.args.filter(Re),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:[];n[a.name.value]=me(c.filter(Rs),p=>p.name.value)}return{Directive:{leave(a){let c=a.name.value,p=n[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 D=We(g.type)?y(g.type):L(g.type);e.reportError(new f(`Directive "@${c}" argument "${T}" of type "${D}" is required, but it was not provided.`,{nodes:a}))}}}}}}function Rs(e){return e.type.kind===u.NON_NULL_TYPE&&e.defaultValue==null}function Lr(e){return{Field(t){let n=e.getType(),r=t.selectionSet;if(n)if(z(Y(n))){if(r){let i=t.name.value,o=y(n);e.reportError(new f(`Field "${i}" must not have a selection since type "${o}" has no subfields.`,{nodes:r}))}}else if(r){if(r.selections.length===0){let i=t.name.value,o=y(n);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(n);e.reportError(new f(`Field "${i}" of type "${o}" must have a selection of subfields. Did you mean "${i} { ... }"?`,{nodes:t}))}}}}function fn(e){return e.map(t=>typeof t=="number"?"["+t.toString()+"]":"."+t).join("")}function Ue(e,t,n){return{prev:e,key:t,typename:n}}function Z(e){let t=[],n=e;for(;n;)t.push(n.key),n=n.prev;return t.reverse()}function Bi(e,t,n=Os){return _t(e,t,n,void 0)}function Os(e,t,n){let r="Invalid value "+y(t);throw e.length>0&&(r+=` at "value${fn(e)}"`),n.message=r+": "+n.message,n}function _t(e,t,n,r){if(b(t)){if(e!=null)return _t(e,t.ofType,n,r);n(Z(r),e,new f(`Expected non-nullable type "${y(t)}" not to be null.`));return}if(e==null)return null;if(w(t)){let i=t.ofType;return tt(e)?Array.from(e,(o,s)=>{let a=Ue(r,s,void 0);return _t(o,i,n,a)}):[_t(e,i,n,r)]}if(x(t)){if(!G(e)||Array.isArray(e)){n(Z(r),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(b(s.type)){let c=y(s.type);n(Z(r),e,new f(`Field "${s.name}" of required type "${c}" was not provided.`))}continue}i[s.name]=_t(a,s.type,n,Ue(r,s.name,t.name))}for(let s of Object.keys(e))if(!o[s]){let a=te(s,Object.keys(t.getFields()));n(Z(r),e,new f(`Field "${s}" is not defined by type "${t.name}".`+W(a)))}if(t.isOneOf){let s=Object.keys(i);s.length!==1&&n(Z(r),e,new f(`Exactly one key must be specified for OneOf type "${t.name}".`));let a=s[0],c=i[a];c===null&&n(Z(r).concat(a),c,new f(`Field "${a}" must be non-null.`))}return i}if(z(t)){let i;try{i=t.parseValue(e)}catch(o){o instanceof f?n(Z(r),e,o):n(Z(r),e,new f(`Expected type "${t.name}". `+o.message,{originalError:o}));return}return i===void 0&&n(Z(r),e,new f(`Expected type "${t.name}".`)),i}k(!1,"Unexpected input type: "+y(t))}function $e(e,t,n){if(e){if(e.kind===u.VARIABLE){let r=e.name.value;if(n==null||n[r]===void 0)return;let i=n[r];return i===null&&b(t)?void 0:i}if(b(t))return e.kind===u.NULL?void 0:$e(e,t.ofType,n);if(e.kind===u.NULL)return null;if(w(t)){let r=t.ofType;if(e.kind===u.LIST){let o=[];for(let s of e.values)if(qi(s,n)){if(b(r))return;o.push(null)}else{let a=$e(s,r,n);if(a===void 0)return;o.push(a)}return o}let i=$e(e,r,n);return i===void 0?void 0:[i]}if(x(t)){if(e.kind!==u.OBJECT)return;let r=Object.create(null),i=me(e.fields,o=>o.name.value);for(let o of Object.values(t.getFields())){let s=i[o.name];if(!s||qi(s.value,n)){if(o.defaultValue!==void 0)r[o.name]=o.defaultValue;else if(b(o.type))return;continue}let a=$e(s.value,o.type,n);if(a===void 0)return;r[o.name]=a}if(t.isOneOf){let o=Object.keys(r);if(o.length!==1||r[o[0]]===null)return}return r}if(z(t)){let r;try{r=t.parseLiteral(e,n)}catch{return}return r===void 0?void 0:r}k(!1,"Unexpected input type: "+y(t))}}function qi(e,t){return e.kind===u.VARIABLE&&(t==null||t[e.name.value]===void 0)}function wr(e,t,n,r){let i=[],o=r?.maxErrors;try{let s=Ss(e,t,n,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 Ss(e,t,n,r){let i={};for(let o of t){let s=o.variable.name.value,a=C(e,o.type);if(!J(a)){let p=L(o.type);r(new f(`Variable "$${s}" expected value of type "${p}" which cannot be used as an input type.`,{nodes:o.type}));continue}if(!Yi(n,s)){if(o.defaultValue)i[s]=$e(o.defaultValue,a);else if(b(a)){let p=y(a);r(new f(`Variable "$${s}" of required type "${p}" was not provided.`,{nodes:o}))}continue}let c=n[s];if(c===null&&b(a)){let p=y(a);r(new f(`Variable "$${s}" of non-null type "${p}" must not be null.`,{nodes:o}));continue}i[s]=Bi(c,a,(p,l,d)=>{let m=`Variable "$${s}" got invalid value `+y(l);p.length>0&&(m+=` at "${s}${fn(p)}"`),r(new f(m+"; "+d.message,{nodes:o,originalError:d}))})}return i}function dn(e,t,n){var r;let i={},o=(r=t.arguments)!==null&&r!==void 0?r:[],s=me(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(b(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(n==null||!Yi(n,g)){if(a.defaultValue!==void 0)i[c]=a.defaultValue;else if(b(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=n[g]==null}if(m&&b(p))throw new f(`Argument "${c}" of non-null type "${y(p)}" must not be null.`,{nodes:d});let T=$e(d,p,n);if(T===void 0)throw new f(`Argument "${c}" has invalid value ${L(d)}.`,{nodes:d});i[c]=T}return i}function mn(e,t,n){var r;let i=(r=t.directives)===null||r===void 0?void 0:r.find(o=>o.name.value===e.name);if(i)return dn(e,i,n)}function Yi(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function yn(e,t,n,r,i){let o=new Map;return hn(e,t,n,r,i,o,new Set),o}function Ji(e,t,n,r,i){let o=new Map,s=new Set;for(let a of i)a.selectionSet&&hn(e,t,n,r,a.selectionSet,o,s);return o}function hn(e,t,n,r,i,o,s){for(let a of i.selections)switch(a.kind){case u.FIELD:{if(!Dr(n,a))continue;let c=_s(a),p=o.get(c);p!==void 0?p.push(a):o.set(c,[a]);break}case u.INLINE_FRAGMENT:{if(!Dr(n,a)||!Hi(e,a,r))continue;hn(e,t,n,r,a.selectionSet,o,s);break}case u.FRAGMENT_SPREAD:{let c=a.name.value;if(s.has(c)||!Dr(n,a))continue;s.add(c);let p=t[c];if(!p||!Hi(e,p,r))continue;hn(e,t,n,r,p.selectionSet,o,s);break}}}function Dr(e,t){let n=mn(Wt,t,e);if(n?.if===!0)return!1;let r=mn(Kt,t,e);return r?.if!==!1}function Hi(e,t,n){let r=t.typeCondition;if(!r)return!0;let i=C(e,r);return i===n?!0:re(i)?e.isSubType(i,n):!1}function _s(e){return e.alias?e.alias.value:e.name.value}function Ar(e){return{OperationDefinition(t){if(t.operation==="subscription"){let n=e.getSchema(),r=n.getSubscriptionType();if(r){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=yn(n,a,o,r,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 n=new Map;for(let r of e){let i=t(r),o=n.get(i);o===void 0?n.set(i,[r]):o.push(r)}return n}function Fr(e){return{DirectiveDefinition(r){var i;let o=(i=r.arguments)!==null&&i!==void 0?i:[];return n(`@${r.name.value}`,o)},InterfaceTypeDefinition:t,InterfaceTypeExtension:t,ObjectTypeDefinition:t,ObjectTypeExtension:t};function t(r){var i;let o=r.name.value,s=(i=r.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:[];n(`${o}.${p}`,l)}return!1}function n(r,i){let o=it(i,s=>s.name.value);for(let[s,a]of o)a.length>1&&e.reportError(new f(`Argument "${r}(${s}:)" can only be defined once.`,{nodes:a.map(c=>c.name)}));return!1}}function Tn(e){return{Field:t,Directive:t};function t(n){var r;let i=(r=n.arguments)!==null&&r!==void 0?r:[],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 kr(e){let t=Object.create(null),n=e.getSchema();return{DirectiveDefinition(r){let i=r.name.value;if(n!=null&&n.getDirective(i)){e.reportError(new f(`Directive "@${i}" already exists in the schema. It cannot be redefined.`,{nodes:r.name}));return}return t[i]?e.reportError(new f(`There can be only one directive named "@${i}".`,{nodes:[t[i],r.name]})):t[i]=r.name,!1}}}function gn(e){let t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():Ee;for(let a of r)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(_e(a)||rn(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 Cr(e){let t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);return{EnumTypeDefinition:i,EnumTypeExtension:i};function i(o){var s;let a=o.name.value;r[a]||(r[a]=Object.create(null));let c=(s=o.values)!==null&&s!==void 0?s:[],p=r[a];for(let l of c){let d=l.name.value,m=n[a];$(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 Mr(e){let t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=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;r[a]||(r[a]=Object.create(null));let c=(s=o.fields)!==null&&s!==void 0?s:[],p=r[a];for(let l of c){let d=l.name.value;xs(n[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 xs(e,t){return O(e)||_(e)||x(e)?e.getFields()[t]!=null:!1}function Pr(e){let t=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(n){let r=n.name.value;return t[r]?e.reportError(new f(`There can be only one fragment named "${r}".`,{nodes:[t[r],n.name]})):t[r]=n.name,!1}}}function En(e){let t=[],n=Object.create(null);return{ObjectValue:{enter(){t.push(n),n=Object.create(null)},leave(){let r=t.pop();r||k(!1),n=r}},ObjectField(r){let i=r.name.value;n[i]?e.reportError(new f(`There can be only one input field named "${i}".`,{nodes:[n[i],r.name]})):n[i]=r.name}}}function Ur(e){let t=Object.create(null);return{OperationDefinition(n){let r=n.name;return r&&(t[r.value]?e.reportError(new f(`There can be only one operation named "${r.value}".`,{nodes:[t[r.value],r]})):t[r.value]=r),!1},FragmentDefinition:()=>!1}}function $r(e){let t=e.getSchema(),n=Object.create(null),r=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=n[p];r[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]})):n[p]=c}return!1}}function Vr(e){let t=Object.create(null),n=e.getSchema();return{ScalarTypeDefinition:r,ObjectTypeDefinition:r,InterfaceTypeDefinition:r,UnionTypeDefinition:r,EnumTypeDefinition:r,InputObjectTypeDefinition:r};function r(i){let o=i.name.value;if(n!=null&&n.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 Gr(e){return{OperationDefinition(t){var n;let r=(n=t.variableDefinitions)!==null&&n!==void 0?n:[],i=it(r,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 jr(e){let t={};return{OperationDefinition:{enter(){t={}}},VariableDefinition(n){t[n.variable.name.value]=n},ListValue(n){let r=Ze(e.getParentInputType());if(!w(r))return Ve(e,n),!1},ObjectValue(n){let r=Y(e.getInputType());if(!x(r))return Ve(e,n),!1;let i=me(n.fields,o=>o.name.value);for(let o of Object.values(r.getFields()))if(!i[o.name]&&et(o)){let a=y(o.type);e.reportError(new f(`Field "${r.name}.${o.name}" of required type "${a}" was not provided.`,{nodes:n}))}r.isOneOf&&Ls(e,n,r,i,t)},ObjectField(n){let r=Y(e.getParentInputType());if(!e.getInputType()&&x(r)){let o=te(n.name.value,Object.keys(r.getFields()));e.reportError(new f(`Field "${n.name.value}" is not defined by type "${r.name}".`+W(o),{nodes:n}))}},NullValue(n){let r=e.getInputType();b(r)&&e.reportError(new f(`Expected value of type "${y(r)}", found ${L(n)}.`,{nodes:n}))},EnumValue:n=>Ve(e,n),IntValue:n=>Ve(e,n),FloatValue:n=>Ve(e,n),StringValue:n=>Ve(e,n),BooleanValue:n=>Ve(e,n)}}function Ve(e,t){let n=e.getInputType();if(!n)return;let r=Y(n);if(!z(r)){let i=y(n);e.reportError(new f(`Expected value of type "${i}", found ${L(t)}.`,{nodes:t}));return}try{if(r.parseLiteral(t,void 0)===void 0){let o=y(n);e.reportError(new f(`Expected value of type "${o}", found ${L(t)}.`,{nodes:t}))}}catch(i){let o=y(n);i instanceof f?e.reportError(i):e.reportError(new f(`Expected value of type "${o}", found ${L(t)}; `+i.message,{nodes:t,originalError:i}))}}function Ls(e,t,n,r,i){var o;let s=Object.keys(r);if(s.length!==1){e.reportError(new f(`OneOf Input Object "${n.name}" must specify exactly one key.`,{nodes:[t]}));return}let c=(o=r[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 "${n.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 "${n.name}".`,{nodes:[t]}))}}function Qr(e){return{VariableDefinition(t){let n=C(e.getSchema(),t.type);if(n!==void 0&&!J(n)){let r=t.variable.name.value,i=L(t.type);e.reportError(new f(`Variable "$${r}" cannot be non-input type "${i}".`,{nodes:t.type}))}}}}function Br(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(n){let r=e.getRecursiveVariableUsages(n);for(let{node:i,type:o,defaultValue:s,parentType:a}of r){let c=i.name.value,p=t[c];if(p&&o){let l=e.getSchema(),d=C(l,p.type);if(d&&!ws(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]}))}x(a)&&a.isOneOf&&gt(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(n){t[n.variable.name.value]=n}}}function ws(e,t,n,r,i){if(b(r)&&!b(t)){if(!(n!=null&&n.kind!==u.NULL)&&!(i!==void 0))return!1;let a=r.ofType;return Se(e,t,a)}return Se(e,t,r)}var qr=Object.freeze([hr]),ot=Object.freeze([ar,Ur,dr,Ar,sn,ur,Qr,Lr,cr,Pr,fr,gr,Or,yr,Gr,Tr,Er,on,gn,pr,Tn,jr,_r,Br,br,En,...qr]),Ds=Object.freeze([mr,$r,Vr,Cr,Mr,Fr,kr,sn,on,gn,Sr,lr,Tn,En,xr]);var Yr=class{constructor(t,n){this._ast=t,this._fragments=void 0,this._fragmentSpreads=new Map,this._recursivelyReferencedFragments=new Map,this._onError=n}get[Symbol.toStringTag](){return"ASTValidationContext"}reportError(t){this._onError(t)}getDocument(){return this._ast}getFragment(t){let n;if(this._fragments)n=this._fragments;else{n=Object.create(null);for(let r of this.getDocument().definitions)r.kind===u.FRAGMENT_DEFINITION&&(n[r.name.value]=r);this._fragments=n}return n[t]}getFragmentSpreads(t){let n=this._fragmentSpreads.get(t);if(!n){n=[];let r=[t],i;for(;i=r.pop();)for(let o of i.selections)o.kind===u.FRAGMENT_SPREAD?n.push(o):o.selectionSet&&r.push(o.selectionSet);this._fragmentSpreads.set(t,n)}return n}getRecursivelyReferencedFragments(t){let n=this._recursivelyReferencedFragments.get(t);if(!n){n=[];let r=Object.create(null),i=[t.selectionSet],o;for(;o=i.pop();)for(let s of this.getFragmentSpreads(o)){let a=s.name.value;if(r[a]!==!0){r[a]=!0;let c=this.getFragment(a);c&&(n.push(c),i.push(c.selectionSet))}}this._recursivelyReferencedFragments.set(t,n)}return n}};var xt=class extends Yr{constructor(t,n,r,i){super(n,i),this._schema=t,this._typeInfo=r,this._variableUsages=new Map,this._recursiveVariableUsages=new Map}get[Symbol.toStringTag](){return"ValidationContext"}getSchema(){return this._schema}getVariableUsages(t){let n=this._variableUsages.get(t);if(!n){let r=[],i=new rt(this._schema);we(t,nn(i,{VariableDefinition:()=>!1,Variable(o){r.push({node:o,type:i.getInputType(),defaultValue:i.getDefaultValue(),parentType:i.getParentInputType()})}})),n=r,this._variableUsages.set(t,n)}return n}getRecursiveVariableUsages(t){let n=this._recursiveVariableUsages.get(t);if(!n){n=this.getVariableUsages(t);for(let r of this.getRecursivelyReferencedFragments(t))n=n.concat(this.getVariableUsages(r));this._recursiveVariableUsages.set(t,n)}return n}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 vn(e,t,n=ot,r,i=new rt(e)){var o;let s=(o=r?.maxErrors)!==null&&o!==void 0?o:100;t||R(!1,"Must provide document."),St(e);let a=Object.freeze({}),c=[],p=new xt(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=Qn(n.map(d=>d(p)));try{we(t,nn(i,l))}catch(d){if(d!==a)throw d}return c}function zi(e){let t;return function(r,i,o){t===void 0&&(t=new WeakMap);let s=t.get(r);s===void 0&&(s=new WeakMap,t.set(r,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(r,i,o),a.set(o,c)),c}}function Hr(e){return Promise.all(Object.values(e)).then(t=>{let n=Object.create(null);for(let[r,i]of Object.keys(e).entries())n[i]=t[r];return n})}function Xi(e,t,n){let r=n;for(let i of e)r=se(r)?r.then(o=>t(o,i)):t(r,i);return r}function Ki(e){return e instanceof Error?e:new Jr(e)}var Jr=class extends Error{constructor(t){super("Unexpected error value: "+y(t)),this.name="NonErrorThrown",this.thrownValue=t}};function Lt(e,t,n){var r;let i=Ki(e);return As(i)?i:new f(i.message,{nodes:(r=i.nodes)!==null&&r!==void 0?r:t,source:i.source,positions:i.positions,path:n,originalError:i})}function As(e){return Array.isArray(e.path)}var Fs=zi((e,t,n)=>Ji(e.schema,e.fragments,e.variableValues,t,n));function On(e){arguments.length<2||R(!1,"graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.");let{schema:t,document:n,variableValues:r,rootValue:i}=e;ks(t,n,r);let o=Cs(e);if(!("schema"in o))return{errors:o};try{let{operation:s}=o,a=Ms(o,s,i);return se(a)?a.then(c=>Nn(c,o.errors),c=>(o.errors.push(c),Nn(null,o.errors))):Nn(a,o.errors)}catch(s){return o.errors.push(s),Nn(null,o.errors)}}function Nn(e,t){return t.length===0?{data:e}:{errors:t,data:e}}function ks(e,t,n){t||R(!1,"Must provide document."),St(e),n==null||G(n)||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 Cs(e){var t,n,r;let{schema:i,document:o,rootValue:s,contextValue:a,variableValues:c,operationName:p,fieldResolver:l,typeResolver:d,subscribeFieldResolver:m,options:T}=e,g,D=Object.create(null);for(let pe of o.definitions)switch(pe.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=pe}else((t=pe.name)===null||t===void 0?void 0:t.value)===p&&(g=pe);break;case u.FRAGMENT_DEFINITION:D[pe.name.value]=pe;break;default:}if(!g)return p!=null?[new f(`Unknown operation named "${p}".`)]:[new f("Must provide an operation.")];let X=(n=g.variableDefinitions)!==null&&n!==void 0?n:[],q=wr(i,X,c??{},{maxErrors:(r=T?.maxCoercionErrors)!==null&&r!==void 0?r:50});return q.errors?q.errors:{schema:i,fragments:D,rootValue:s,contextValue:a,operation:g,variableValues:q.coerced,fieldResolver:l??Rn,typeResolver:d??Xr,subscribeFieldResolver:m??Rn,errors:[]}}function Ms(e,t,n){let r=e.schema.getRootType(t.operation);if(r==null)throw new f(`Schema is not configured to execute ${t.operation} operation.`,{nodes:t});let i=yn(e.schema,e.fragments,e.variableValues,r,t.selectionSet),o=void 0;switch(t.operation){case F.QUERY:return In(e,r,n,o,i);case F.MUTATION:return Ps(e,r,n,o,i);case F.SUBSCRIPTION:return In(e,r,n,o,i)}}function Ps(e,t,n,r,i){return Xi(i.entries(),(o,[s,a])=>{let c=Ue(r,s,t.name),p=eo(e,t,n,a,c);return p===void 0?o:se(p)?p.then(l=>(o[s]=l,o)):(o[s]=p,o)},Object.create(null))}function In(e,t,n,r,i){let o=Object.create(null),s=!1;try{for(let[a,c]of i.entries()){let p=Ue(r,a,t.name),l=eo(e,t,n,c,p);l!==void 0&&(o[a]=l,se(l)&&(s=!0))}}catch(a){if(s)return Hr(o).finally(()=>{throw a});throw a}return s?Hr(o):o}function eo(e,t,n,r,i){var o;let s=js(e.schema,t,r[0]);if(!s)return;let a=s.type,c=(o=s.resolve)!==null&&o!==void 0?o:e.fieldResolver,p=Us(e,s,r,t,i);try{let l=dn(s,r[0],e.variableValues),d=e.contextValue,m=c(n,l,d,p),T;return se(m)?T=m.then(g=>wt(e,a,r,p,i,g)):T=wt(e,a,r,p,i,m),se(T)?T.then(void 0,g=>{let D=Lt(g,r,Z(i));return bn(D,a,e)}):T}catch(l){let d=Lt(l,r,Z(i));return bn(d,a,e)}}function Us(e,t,n,r,i){return{fieldName:t.name,fieldNodes:n,returnType:t.type,parentType:r,path:i,schema:e.schema,fragments:e.fragments,rootValue:e.rootValue,operation:e.operation,variableValues:e.variableValues}}function bn(e,t,n){if(b(t))throw e;return n.errors.push(e),null}function wt(e,t,n,r,i,o){if(o instanceof Error)throw o;if(b(t)){let s=wt(e,t.ofType,n,r,i,o);if(s===null)throw new Error(`Cannot return null for non-nullable field ${r.parentType.name}.${r.fieldName}.`);return s}if(o==null)return null;if(w(t))return $s(e,t,n,r,i,o);if(z(t))return Vs(t,o);if(re(t))return Gs(e,t,n,r,i,o);if(O(t))return zr(e,t,n,r,i,o);k(!1,"Cannot complete value of unexpected output type: "+y(t))}function $s(e,t,n,r,i,o){if(!tt(o))throw new f(`Expected Iterable, but did not find one for field "${r.parentType.name}.${r.fieldName}".`);let s=t.ofType,a=!1,c=Array.from(o,(p,l)=>{let d=Ue(i,l,void 0);try{let m;return se(p)?m=p.then(T=>wt(e,s,n,r,d,T)):m=wt(e,s,n,r,d,p),se(m)?(a=!0,m.then(void 0,T=>{let g=Lt(T,n,Z(d));return bn(g,s,e)})):m}catch(m){let T=Lt(m,n,Z(d));return bn(T,s,e)}});return a?Promise.all(c):c}function Vs(e,t){let n=e.serialize(t);if(n==null)throw new Error(`Expected \`${y(e)}.serialize(${y(t)})\` to return non-nullable value, returned: ${y(n)}`);return n}function Gs(e,t,n,r,i,o){var s;let a=(s=t.resolveType)!==null&&s!==void 0?s:e.typeResolver,c=e.contextValue,p=a(o,c,r,t);return se(p)?p.then(l=>zr(e,Wi(l,e,t,n,r,o),n,r,i,o)):zr(e,Wi(p,e,t,n,r,o),n,r,i,o)}function Wi(e,t,n,r,i,o){if(e==null)throw new f(`Abstract type "${n.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}". Either the "${n.name}" type should provide a "resolveType" function or each possible type should provide an "isTypeOf" function.`,r);if(O(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 "${n.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 "${n.name}" was resolved to a type "${e}" that does not exist inside the schema.`,{nodes:r});if(!O(s))throw new f(`Abstract type "${n.name}" was resolved to a non-object type "${e}".`,{nodes:r});if(!t.schema.isSubType(n,s))throw new f(`Runtime Object type "${s.name}" is not a possible type for "${n.name}".`,{nodes:r});return s}function zr(e,t,n,r,i,o){let s=Fs(e,t,n);if(t.isTypeOf){let a=t.isTypeOf(o,e.contextValue,r);if(se(a))return a.then(c=>{if(!c)throw Zi(t,o,n);return In(e,t,o,i,s)});if(!a)throw Zi(t,o,n)}return In(e,t,o,i,s)}function Zi(e,t,n){return new f(`Expected value of type "${e.name}" but got: ${y(t)}.`,{nodes:n})}var Xr=function(e,t,n,r){if(G(e)&&typeof e.__typename=="string")return e.__typename;let i=n.schema.getPossibleTypes(r),o=[];for(let s=0;s<i.length;s++){let a=i[s];if(a.isTypeOf){let c=a.isTypeOf(e,t,n);if(se(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})},Rn=function(e,t,n,r){if(G(e)||typeof e=="function"){let i=e[r.fieldName];return typeof i=="function"?e[r.fieldName](t,n,r):i}};function js(e,t,n){let r=n.name.value;return r===Fe.name&&e.getQueryType()===t?Fe:r===ke.name&&e.getQueryType()===t?ke:r===Ce.name?Ce:t.getFields()[r]}import{OperationOutcomeError as B,Operator as la,allOk as to,badRequest as xe,created as no,deepClone as st,evalFhirPath as ro,generateId as io,globalSchema as fa,matchesSearchRequest as da,multipleMatches as Sn,normalizeOperationOutcome as ma,notFound as Dt,preconditionFailed as ha,stringify as ya}from"@medplum/core";import{applyPatch as Ta}from"rfc6902";var _n={READER:"reader",WRITER:"writer"},Kr=class{async searchOne(t){return(await this.search({...t,count:1})).entry?.[0]?.resource}async searchResources(t){return(await this.search(t)).entry?.map(r=>r.resource)??[]}async conditionalCreate(t,n,r){if(n.resourceType!==t.resourceType)throw new B(xe("Search type must match resource type for conditional update"));return n.count=2,n.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(n);if(i.length===1){let s=i[0];if(!r?.assignedId&&t.id&&t.id!==s.id)throw new B(xe("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:i[0],outcome:to}}else if(i.length>1)throw new B(Sn);return{resource:await this.createResource(t,r),outcome:no}},{serializable:!0})}async conditionalUpdate(t,n,r){if(n.resourceType!==t.resourceType)throw new B(xe("Search type must match resource type for conditional update"));return n.count=2,n.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(n);if(i.length===0){if(t.id&&!r?.assignedId)throw new B(xe("Cannot perform create as update with client-assigned ID",t.resourceType+".id"));return{resource:await this.createResource(t,r),outcome:no}}else if(i.length>1)throw new B(Sn);let o=i[0];if(t.id&&t.id!==o.id)throw new B(xe("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:await this.updateResource({...t,id:o.id},r),outcome:to}},{serializable:!0})}async conditionalDelete(t){t.count=2,t.sortRules=void 0,await this.withTransaction(async()=>{let n=await this.searchResources(t);if(n.length>1)throw new B(Sn);if(!n.length)return;let r=n[0];await this.deleteResource(r.resourceType,r.id)},{serializable:!0})}async conditionalPatch(t,n){return t.count=2,t.sortRules=void 0,this.withTransaction(async()=>{let r=await this.searchResources(t);if(r.length>1)throw new B(Sn);if(!r.length)throw new B(Dt);let i=r[0];return this.patchResource(i.resourceType,i.id,n)},{serializable:!0})}},oo=class extends Kr{constructor(){super(),this.resources=new Map,this.history=new Map}clear(){this.resources.clear(),this.history.clear()}setMode(t){}async createResource(t){let n=JSON.parse(ya(t));n.id||(n.id=this.generateId()),n.meta||(n.meta={}),n.meta.versionId||(n.meta.versionId=io()),n.meta.lastUpdated||(n.meta.lastUpdated=new Date().toISOString());let{resourceType:r,id:i}=n,o=this.resources.get(r);o||(o=new Map,this.resources.set(r,o)),o.set(i,n);let s=this.history.get(r);s||(s=new Map,this.history.set(r,s));let a=s.get(i);return a||(a=[],s.set(i,a)),a.push(n),st(n)}generateId(){return io()}updateResource(t,n){if(!t.id)throw new B(xe("Missing id"));if(n?.ifMatch){let i=n.ifMatch,o=this.resources.get(t.resourceType)?.get(t.id);if(!o)throw new B(Dt);if(o.meta?.versionId!==i)throw new B(ha)}let r=st(t);return r.meta&&(r.meta.versionId&&delete r.meta.versionId,r.meta.lastUpdated&&delete r.meta.lastUpdated),this.createResource(r)}async patchResource(t,n,r){let i=await this.readResource(t,n);try{let o=Ta(i,r).filter(Boolean);if(o.length>0)throw new B(xe(o.map(s=>s.message).join(`
54
- `)))}catch(o){throw new B(ma(o))}return this.updateResource(i)}async readResource(t,n){let r=this.resources.get(t)?.get(n);if(!r)throw new B(Dt);return st(r)}async readReference(t){let n=t.reference?.split("/");if(!n||n.length!==2)throw new B(xe("Invalid reference"));return this.readResource(n[0],n[1])}async readReferences(t){return Promise.all(t.map(n=>this.readReference(n)))}async readHistory(t,n){await this.readResource(t,n);let r=(this.history.get(t)?.get(n)??[]).reverse().map(i=>({resource:st(i)}));return{resourceType:"Bundle",type:"history",...r.length?{entry:r}:void 0}}async readVersion(t,n,r){await this.readResource(t,n);let i=this.history.get(t)?.get(n)?.find(o=>o.meta?.versionId===r);if(!i)throw new B(Dt);return st(i)}async search(t){let{resourceType:n}=t,r=this.resources.get(n)??new Map,i=[];for(let s of r.values())da(s,t)&&i.push(s);let o=i.map(s=>({resource:st(s)}));if(t.sortRules)for(let s of t.sortRules)o=o.sort((a,c)=>ga(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,n,r){t.filters??=[];let i={};for(let o of r){t.filters.push({code:n,operator:la.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,n){if(!this.resources.get(t)?.get(n))throw new B(Dt);this.resources.get(t)?.delete(n)}withTransaction(t){return console.debug("WARN: MockRepository does not support transactions"),t(void 0)}},ga=(e,t,n)=>{let i=fa.types[e.resourceType]?.searchParams?.[n.code]?.expression;if(!i)return 0;let o=JSON.stringify(ro(i,e)),s=JSON.stringify(ro(i,t));return o.localeCompare(s)*(n.descending?-1:1)};import{capitalize as La,getDataType as lo,isResourceType as wa}from"@medplum/core";import{DEFAULT_MAX_SEARCH_COUNT as Ea,DEFAULT_SEARCH_COUNT as va,getReferenceString as Na,getSearchParameters as Ia,Operator as ba,parseSearchRequest as Ra}from"@medplum/core";import Oa from"dataloader";var xn={base64Binary:v,boolean:V,canonical:v,code:v,date:v,dateTime:v,decimal:ue,id:ge,instant:v,integer:ue,markdown:v,number:ue,oid:v,positiveInt:ue,string:v,time:v,unsignedInt:ue,uri:v,url:v,uuid:v,xhtml:v,"http://hl7.org/fhirpath/System.Boolean":V,"http://hl7.org/fhirpath/System.Date":v,"http://hl7.org/fhirpath/System.DateTime":v,"http://hl7.org/fhirpath/System.Decimal":ue,"http://hl7.org/fhirpath/System.Integer":ue,"http://hl7.org/fhirpath/System.String":v,"http://hl7.org/fhirpath/System.Time":v};function so(e,t,n){let r;if(t){let o=n._reference;delete n._reference,r={code:o,operator:ba.EQUALS,value:Na(t)}}return n=Object.fromEntries(Object.entries(n).map(([o,s])=>[Sa(o),s])),{searchRequest:Ra(e,n),referenceFilter:r}}function ao(e,t){let n=e.filters||[];e.filters=[t,...n]}function co(e,t,n){let{searchRequest:r,referenceFilter:i}=so(e,t,n);return i&&ao(r,i),r}function Wr(e,t){e.count=Math.min(e.count??va,t??Ea)}function Sa(e){return e.startsWith("_")?e:e.replaceAll("_","-")}function Zr(e){return e.replaceAll("-","_")}function _a(e){return JSON.stringify(e,(n,r)=>r&&typeof r=="object"&&!Array.isArray(r)?Object.keys(r).sort((i,o)=>i.localeCompare(o)).reduce((i,o)=>(i[o]=r[o],i),{}):r)}async function Ln(e,t,n,r){if(n.searchCount++,n.config?.graphqlMaxSearches&&n.searchCount>n.config.graphqlMaxSearches)throw new Error("Maximum number of searches exceeded");let i=r.fieldName,o=i.substring(0,i.length-4),{searchRequest:s,referenceFilter:a}=so(o,e,t);Wr(s,n.config?.graphqlMaxSearches);let c=n.config?.graphqlBatchedSearchSize??0;if(c===0||!a)return a&&ao(s,a),(await n.repo.search(s)).entry?.map(m=>m.resource);let p=_a(s);return(n.searchDataLoaders[p]??=xa(n.repo,s,c)).load(a)}function xa(e,t,n){return new Oa(async r=>{let i=await e.searchByReference(t,r[0].code,r.map(o=>o.value));return r.map(o=>i[o.value])},{maxBatchSize:n})}function At(e){let t={_count:{type:ce,description:"Specify how many elements to return from a repeating list."},_offset:{type:ce,description:"Specify the offset to start at for a repeating element."},_sort:{type:v,description:"Specify the sort order by comma-separated list of sort rules in priority order."},_id:{type:v,description:"Select resources based on the logical id of the resource."},_lastUpdated:{type:v,description:"Select resources based on the last time they were changed."},_filter:{type:v,description:" The _filter parameter provides a syntax for expressing a set of query expressions on the underlying resources."}},n=Ia(e);if(n)for(let[r,i]of Object.entries(n))t[Zr(r)]={type:v,description:i.description};return t}function ei(e,t){return e.fieldNodes.some(n=>n.selectionSet?.selections.some(r=>r.kind===u.FIELD&&r.name.value===t))}function uo(e){return{resourceType:"OperationOutcome",issue:e.map(t=>({severity:"error",code:"invalid",details:{text:t.message}}))}}var po={...xn};function Ft(e,t){let n=po[e];return n||(n=Da(e,t),po[e]=n),n}function Da(e,t){let n=lo(e);return new Ae({name:e+t,description:n.description,fields:()=>Aa(e,t)})}function Aa(e,t){let n={};if(wa(e)){let r={description:"The type of resource",type:v};n.resourceType=r}return Fa(e,n,t),n}function Fa(e,t,n){let r=lo(e);for(let[i,o]of Object.entries(r.elements))for(let s of o.type)ka(t,i,o,s,n)}function ka(e,t,n,r,i){let o=r.code;if(o==="Resource")return;(o==="Element"||o==="BackboneElement")&&(o=n.type[0].code);let s={description:n.description,type:Ft(o,i)};n.max>1&&(s.type=new A(new I(Ft(o,i)))),n.min>0&&!t.endsWith("[x]")&&(s.type=new I(s.type));let a=t.split(".").pop().replace("[x]",La(r.code));e[a]=s}import{capitalize as fo,evalFhirPathTyped as Ca,getDataType as mo,getResourceTypes as ho,getSearchParameters as Ma,isLowerCase as Pa,isReference as Ua,isResourceTypeSchema as $a,normalizeOperationOutcome as Va,OperationOutcomeError as Ga,toJsBoolean as ja,toTypedValue as Qa,tryGetDataType as Ba}from"@medplum/core";var wn={...xn};function Ge(e){let t=wn[e];return t||(t=ti(e),wn[e]=t),t}function ti(e){if(e==="ResourceList")return new De({name:"ResourceList",types:()=>ho().map(Ge).filter(n=>!!n),resolveType:ec});let t=mo(e);return new j({name:e,description:t.description,fields:()=>qa(e)})}function qa(e){let t={};return Ya(e,t),Xa(e,t),t}function Ya(e,t){let n=mo(e);$a(n)&&(t.resourceType={type:new I(v),description:"Resource Type"}),e==="Reference"&&(t.resource={description:"Reference",type:Ge("ResourceList"),resolve:Za});for(let[r,i]of Object.entries(n.elements))for(let o of i.type)Ha(t,r,i,o)}function Ha(e,t,n,r){let i=r.code;(i==="Element"||i==="BackboneElement")&&(i=n.type[0].code),i==="Resource"&&(i="ResourceList");let o={description:n.description,type:Ka(n,i,t),resolve:Wa};n.max>1&&(o.args=Ja(i));let s=t.split(".").pop().replace("[x]",fo(r.code));e[s]=o}function Ja(e){let t={_count:{type:ce,description:"Specify how many elements to return from a repeating list."},_offset:{type:ce,description:"Specify the offset to start at for a repeating element."}};if(!Pa(e.charAt(0))){t.fhirpath={type:v,description:"A FHIRPath statement selecting which of the subnodes is to be included"};let n=Ba(e);if(n?.elements)for(let[r,i]of Object.entries(n.elements))for(let o of i.type)za(t,r,i,o)}return t}function za(e,t,n,r){let i=r.code,o=t.replace("[x]",fo(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:v,description:n.description};break}}function Xa(e,t){for(let n of ho()){let r=Ge(n),i=Ma(n),o={},s=0;if(i)for(let[a,c]of Object.entries(i))c.target?.includes(e)&&(o[Zr(a)]={value:a},s++);if(s>0){let a=new Ne({name:e+"_"+n+"_reference",values:o}),c=At(n);c._reference={type:new I(a),description:`Specify which property to use for reverse lookup for ${n}`},t[n+"List"]={type:new A(r),args:c,resolve:Ln}}}}function Ka(e,t,n){let r=Ge(t);return e.max>1&&(r=new A(new I(r))),e.min!==0&&!n.endsWith("[x]")&&(r=new I(r)),r}async function Wa(e,t,n,r){let i=e?.[r.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=>ja(Ca(a,[Qa(l)])))),o&&(p=p.slice(o)),s&&(p=p.slice(0,s)),p}async function Za(e,t,n){if(Ua(e))try{return await n.dataLoader.load(e)}catch(r){throw new Ga(Va(r),r)}}function ec(e){let t=e?.resourceType;if(t)return Ge(t).name}var cc=new oc,ni;async function go(e,t,n,r){let{query:i,operationName:o,variables:s}=e.body;if(!i)return[kt("Must provide query.")];let a;try{a=Gt(i)}catch{return[kt("GraphQL syntax error.")]}let c=lc(),p=[...ot,Ic(n,e.config?.graphqlMaxDepth),Rc(n)],l=vn(c,a,p);if(l.length>0)return[uo(l)];let d=uc(i);if(d&&!n.options?.introspectionEnabled)return[ic];!r?.batch&&!pc(i)&&t.setMode(_n.READER);let m=new ac(g=>t.readReferences(g)),T=d&&cc.get(i);if(!T){let g={repo:t,config:e.config,dataLoader:m,searchCount:0,searchDataLoaders:Object.create(null)};T=await On({schema:c,document:a,contextValue:g,operationName:o,variableValues:s})}return[tc,T,{contentType:nc.JSON}]}function uc(e){return e.includes("query IntrospectionQuery")||e.includes("__schema")}function pc(e){return e.includes("mutation")}function lc(){return ni||(ni=fc()),ni}function fc(){for(let n of yo())wn[n]=ti(n);let e={},t={};for(let n of yo()){let r=Ge(n);e[n]={type:r,args:{id:{type:new I(ge),description:n+" ID"}},resolve:Tc},e[n+"List"]={type:new A(r),args:At(n),resolve:Ln},e[n+"Connection"]={type:hc(n,r),args:At(n),resolve:yc},t[n+"Create"]={type:r,args:dc(n),resolve:gc},t[n+"Update"]={type:r,args:mc(n),resolve:Ec},t[n+"Delete"]={type:r,args:{id:{type:new I(ge),description:n+" ID"}},resolve:vc}}return new Me({query:new j({name:"QueryType",fields:e}),mutation:new j({name:"MutationType",fields:t})})}function dc(e){return{res:{type:new I(Ft(e,"Create")),description:e+" Create"}}}function mc(e){return{id:{type:new I(ge),description:e+" ID"},res:{type:new I(Ft(e,"Update")),description:e+" Update"}}}function hc(e,t){return new j({name:e+"Connection",fields:{count:{type:ce},offset:{type:ce},pageSize:{type:ce},first:{type:v},previous:{type:v},next:{type:v},last:{type:v},edges:{type:new A(new j({name:e+"ConnectionEdge",fields:{mode:{type:v},score:{type:ue},resource:{type:t}}}))}}})}async function yc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-10),s=co(o,e,t);ei(r,"count")&&(s.total="accurate"),ei(r,"edges")||(s.count=0),Wr(s,n.config?.graphqlMaxSearches);let a=await n.repo.search(s);return{count:a.total,offset:s.offset??0,pageSize:s.count??rc,edges:a.entry?.map(c=>({mode:c.search?.mode,score:c.search?.score,resource:c.resource}))}}async function Tc(e,t,n,r){try{return await n.dataLoader.load({reference:`${r.fieldName}/${t.id}`})}catch(i){throw new Dn(sc(i),i)}}async function gc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-6),s=t.res;if(s.resourceType!==o)throw new Dn(kt("Invalid resourceType"));return n.repo.createResource(To(s))}async function Ec(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-6),s=t.res,a=t.id;if(s.resourceType!==o)throw new Dn(kt("Invalid resourceType"));if(a!==s.id)throw new Dn(kt("Invalid ID"));return n.repo.updateResource(To(s))}async function vc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-6);await n.repo.deleteResource(o,t.id)}var Nc=12,Ic=(e,t=Nc)=>n=>new ri(n,e,t),ri=class{constructor(t,n,r){this.context=t,this.router=n,this.fragmentDepths=Object.create(null),this.maxDepth=r}OperationDefinition(t){let n=this.getDepth(...t.selectionSet.selections);n.depth>this.maxDepth&&this.router.log("warn","Query max depth too high",{depth:n.depth,limit:this.maxDepth,query:t.loc?.source?.body})}getDepth(...t){let n={depth:-1};for(let r of t){let i={depth:0};if(r.kind===u.FIELD)r.selectionSet?.selections?(i=this.getDepth(...r.selectionSet.selections),i.depth+=1):i={depth:0,node:r};else if(r.kind===u.FRAGMENT_SPREAD){let o=r.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 r.kind===u.INLINE_FRAGMENT&&(i=this.getDepth(...r.selectionSet.selections));if(i.depth>this.maxDepth)return i;i.depth>n.depth&&(n=i)}return n}},bc=1e4,Rc=(e,t)=>n=>new ii(n,e,t),ii=class{constructor(t,n,r){this.context=t,this.maxCost=r?.maxCost??bc,this.debug=r?.debug??!1,this.router=n,this.fragmentCosts=Object.create(null)}OperationDefinition(t){let n=0;for(let r of t.selectionSet.selections){let i=performance.now(),o=this.calculateCost(r);n+=o,this.log(r.kind,"node has final cost",o,"(",performance.now()-i,"ms)"),n>this.maxCost&&this.router.log("warn","GraphQL query too complex",{cost:n,limit:this.maxCost,query:t.loc?.source?.body})}}calculateCost(...t){let n=0;for(let r of t){if(r.kind===u.FIELD&&r.selectionSet){let i=0,o=1;Oc(r)?(this.log("Found search field",r.name.value),i=8,o=this.getCount(r.arguments)??20):Sc(r)&&(this.log("Found linked resource"),i=1,o=2);let s=i+o*this.calculateCost(...r.selectionSet.selections);s&&this.log("Field",r.name.value,"costs",s),n+=s}else if(r.kind===u.FRAGMENT_SPREAD){let i=r.name.value,o=this.context.getFragment(i),s=this.fragmentCosts[i];if(s!==void 0)this.log("Fragment",i,"costs",s,"(cached)"),n+=s;else if(o){let a=this.calculateCost(...o.selectionSet.selections);this.fragmentCosts[i]=a,this.log("Fragment",i,"costs",a),n+=a}}else if(r.kind===u.INLINE_FRAGMENT){let i=this.calculateCost(...r.selectionSet.selections);this.log("Inline fragment on",r.typeCondition?.name.value,"costs",i),n+=i}if(n>this.maxCost)return n}return n}getCount(t){let n=t?.find(r=>r.name.value==="_count");if(n?.value.kind===u.INT)return parseInt(n.value.value,10)}log(...t){this.debug&&console.log(...t)}};function Oc(e){return e.name.value.endsWith("List")}function Sc(e){return e.name.value==="resource"}var An=class{constructor(){this.routes=[]}add(t,n,r,i){let o=n.split("/").filter(s=>!!s).map(s=>s.startsWith(":")?{value:s.substring(1),param:!0}:{value:s});this.routes.push({method:t,path:o,handler:r,data:i})}find(t,n){let r=n.indexOf("?"),i=r>-1,o=n.substring(0,i?r:n.length).split("/").filter(Boolean),s,a=-1;for(let c of this.routes){let p=_c(c,t,o);p>a&&(s=c,a=p)}if(s)return{handler:s.handler,path:o.join("/"),params:xc(s,o),query:i?Lc(n):void 0,data:s.data}}};function _c(e,t,n){if(t!==e.method||n.length!==e.path.length)return-1;let r=0;for(let i=0;i<n.length;i++)if(!e.path[i].param){if(n[i]!==e.path[i].value)return-1;r++}return r}function xc(e,t){let n=Object.create(null);for(let r=0;r<t.length;r++)e.path[r].param&&(n[e.path[r].value]=t[r]);return n}function Lc(e){let t=new URL(e,"https://example.com/"),n=Object.create(null),r=t.searchParams;for(let i of r.keys()){let o=r.getAll(i);n[i]=o.length===1?o[0]:o}return n}async function Mc(e,t,n){let r=e.body;if(r.resourceType!=="Bundle")return[Ie("Not a bundle")];let i=await Cn(e,t,n,r);return[fe,i]}async function Pc(e,t,n,r){oi(e,t,r);let{resourceType:i}=e.params,o=await t.search(je(i,e.query));return[fe,o]}async function Uc(e,t,n,r){oi(e,t,r);let i=je("MultipleTypes",e.query);if(!i.types||i.types.length===0)return[Ie("No types specified")];let o=await t.search(i);return[fe,o]}async function $c(e,t,n,r){oi(e,t,r);let{resourceType:i}=e.params,o=e.body,s=await t.search(je(i,o));return[fe,s]}function oi(e,t,n){!n?.batch&&e.config?.searchOnReader&&t.setMode(_n.READER)}async function Vc(e,t,n,r){let{resourceType:i}=e.params,o=e.body,s=!!r?.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=Cc(e.headers["if-none-exist"]),c=await t.conditionalCreate(o,je(`${i}?${a}`),{assignedId:s});return[c.outcome,c.resource]}return Gc(i,o,t,{assignedId:s})}async function Gc(e,t,n,r){if(t.resourceType!==e)return[Ie(`Incorrect resource type: expected ${e}, but found ${t.resourceType||"<EMPTY>"}`)];let i=await n.createResource(t,r);return[Ac,i]}async function jc(e,t){let{resourceType:n,id:r}=e.params,i=await t.readResource(n,r);return[fe,i]}async function Qc(e,t){let{resourceType:n,id:r}=e.params,i=await t.readHistory(n,r);return[fe,i]}async function Bc(e,t){let{resourceType:n,id:r,vid:i}=e.params,o=await t.readVersion(n,r,i);return[fe,o]}async function qc(e,t){let{resourceType:n,id:r}=e.params,i=e.body;return Yc(n,r,i,t,{ifMatch:Wc(e.headers?.["if-match"])})}async function Yc(e,t,n,r,i){if(n.resourceType!==e)return[Ie("Incorrect resource type")];if(n.id!==t)return[Ie("Incorrect resource ID")];let o=await r.updateResource(n,i);return[fe,o]}async function Hc(e,t,n,r){let{resourceType:i}=e.params,o=e.body,s=je(i,e.query),a=await t.conditionalUpdate(o,s,{assignedId:r?.batch});return[a.outcome,a.resource]}async function Jc(e,t){let{resourceType:n,id:r}=e.params;return await t.deleteResource(n,r),[fe]}async function zc(e,t){let{resourceType:n}=e.params,r=je(n,e.query);return await t.conditionalDelete(r),[fe]}async function Xc(e,t){let{resourceType:n,id:r}=e.params,i=e.body;if(!i)return[Ie("Empty patch body")];if(!Array.isArray(i))return[Ie("Patch body must be an array")];let o=await t.patchResource(n,r,i);return[fe,o]}async function Kc(e,t){let{resourceType:n}=e.params,r=e.body;if(!r)return[Ie("Empty patch body")];if(!Array.isArray(r))return[Ie("Patch body must be an array")];let i=je(n,e.query),o=await t.conditionalPatch(i,r);return[fe,o]}var Eo=class extends wc{constructor(n={}){super();this.router=new An;this.options=n,this.router.add("GET","",Uc,{interaction:"search-system"}),this.router.add("POST","",Mc,{interaction:"batch"}),this.router.add("GET",":resourceType",Pc,{interaction:"search-type"}),this.router.add("POST",":resourceType/_search",$c,{interaction:"search-type"}),this.router.add("POST",":resourceType",Vc,{interaction:"create"}),this.router.add("GET",":resourceType/:id",jc,{interaction:"read"}),this.router.add("GET",":resourceType/:id/_history",Qc,{interaction:"history-instance"}),this.router.add("GET",":resourceType/:id/_history/:vid",Bc,{interaction:"vread"}),this.router.add("PUT",":resourceType/:id",qc,{interaction:"update"}),this.router.add("PUT",":resourceType",Hc,{interaction:"update"}),this.router.add("DELETE",":resourceType/:id",Jc,{interaction:"delete"}),this.router.add("DELETE",":resourceType",zc,{interaction:"delete"}),this.router.add("PATCH",":resourceType/:id",Xc,{interaction:"patch"}),this.router.add("PATCH",":resourceType",Kc,{interaction:"patch"}),this.router.add("POST","$graphql",go,{interaction:"operation"})}add(n,r,i,o){this.router.add(n,r,i,{interaction:o??"operation"})}find(n,r){return this.router.find(n,r)}async handleRequest(n,r){let i=n.url;if(n.pathname)throw new Dc(Ie("FhirRequest must specify url instead of pathname"));let o=this.find(n.method,i);if(!o)return[kc];let{handler:s,path:a,params:c,query:p}=o;n.params=c,n.pathname=a,p&&(n.query=p);try{return await s(n,r,this)}catch(l){return[Fc(l)]}}log(n,r,i){let o={type:n,message:r,data:i};this.dispatchEvent(o)}};function Wc(e){if(!e)return;let t=/"([^"]+)"/.exec(e);return t?t[1]:void 0}function Cg(e,t,n){return{method:e,url:t,pathname:"",query:{},params:{},body:n}}export{Kr as FhirRepository,Eo as FhirRouter,oo as MemoryRepository,_n as RepositoryMode,An as Router,Gc as createResourceImpl,Cg as makeSimpleRequest,Cn as processBatch,Yc as updateResourceImpl};
53
+ `))}var nr=class{constructor(t){this._errors=[],this.schema=t}reportError(t,n){let r=Array.isArray(n)?n.filter(Boolean):n;this._errors.push(new f(t,{nodes:r}))}getErrors(){return this._errors}};function Wo(e){let t=e.schema,n=t.getQueryType();if(!n)e.reportError("Query root type must be provided.",t.astNode);else if(!O(n)){var r;e.reportError(`Query root type must be Object type, it cannot be ${y(n)}.`,(r=tr(t,F.QUERY))!==null&&r!==void 0?r:n.astNode)}let i=t.getMutationType();if(i&&!O(i)){var o;e.reportError(`Mutation root type must be Object type if provided, it cannot be ${y(i)}.`,(o=tr(t,F.MUTATION))!==null&&o!==void 0?o:i.astNode)}let s=t.getSubscriptionType();if(s&&!O(s)){var a;e.reportError(`Subscription root type must be Object type if provided, it cannot be ${y(s)}.`,(a=tr(t,F.SUBSCRIPTION))!==null&&a!==void 0?a:s.astNode)}}function tr(e,t){var n;return(n=[e.astNode,...e.extensionASTNodes].flatMap(r=>{var i;return(i=r?.operationTypes)!==null&&i!==void 0?i:[]}).find(r=>r.operation===t))===null||n===void 0?void 0:n.type}function Zo(e){for(let n of e.schema.getDirectives()){if(!It(n)){e.reportError(`Expected directive but got: ${y(n)}.`,n?.astNode);continue}Pe(e,n),n.locations.length===0&&e.reportError(`Directive @${n.name} must include 1 or more locations.`,n.astNode);for(let r of n.args)if(Pe(e,r),J(r.type)||e.reportError(`The type of @${n.name}(${r.name}:) must be Input Type but got: ${y(r.type)}.`,r.astNode),Re(r)&&r.deprecationReason!=null){var t;e.reportError(`Required argument @${n.name}(${r.name}:) cannot be deprecated.`,[rr(r.astNode),(t=r.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 es(e){let t=as(e),n=e.schema.getTypeMap();for(let r of Object.values(n)){if(!Yt(r)){e.reportError(`Expected GraphQL named type but got: ${y(r)}.`,r.astNode);continue}Zn(r)||Pe(e,r),O(r)||_(r)?(Ci(e,r),Mi(e,r)):H(r)?rs(e,r):$(r)?is(e,r):x(r)&&(os(e,r),t(r))}}function Ci(e,t){let n=Object.values(t.getFields());n.length===0&&e.reportError(`Type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let s of n){if(Pe(e,s),!be(s.type)){var r;e.reportError(`The type of ${t.name}.${s.name} must be Output Type but got: ${y(s.type)}.`,(r=s.astNode)===null||r===void 0?void 0:r.type)}for(let a of s.args){let c=a.name;if(Pe(e,a),!J(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(Re(a)&&a.deprecationReason!=null){var o;e.reportError(`Required argument ${t.name}.${s.name}(${c}:) cannot be deprecated.`,[rr(a.astNode),(o=a.astNode)===null||o===void 0?void 0:o.type])}}}}function Mi(e,t){let n=Object.create(null);for(let r of t.getInterfaces()){if(!_(r)){e.reportError(`Type ${y(t)} must only implement Interface types, it cannot implement ${y(r)}.`,Ot(t,r));continue}if(t===r){e.reportError(`Type ${t.name} cannot implement itself because it would create a circular reference.`,Ot(t,r));continue}if(n[r.name]){e.reportError(`Type ${t.name} can only implement ${r.name} once.`,Ot(t,r));continue}n[r.name]=!0,ns(e,t,r),ts(e,t,r)}}function ts(e,t,n){let r=t.getFields();for(let c of Object.values(n.getFields())){let p=c.name,l=r[p];if(!l){e.reportError(`Interface field ${n.name}.${p} expected but ${t.name} does not provide it.`,[c.astNode,t.astNode,...t.extensionASTNodes]);continue}if(!Se(e.schema,l.type,c.type)){var i,o;e.reportError(`Interface field ${n.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 ${n.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 ${n.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)&&Re(d)&&e.reportError(`Object field ${t.name}.${p} includes required argument ${m} that is missing from the Interface field ${n.name}.${p}.`,[d.astNode,c.astNode])}}}function ns(e,t,n){let r=t.getInterfaces();for(let i of n.getInterfaces())r.includes(i)||e.reportError(i===t?`Type ${t.name} cannot implement ${n.name} because it would create a circular reference.`:`Type ${t.name} must implement ${i.name} because it is implemented by ${n.name}.`,[...Ot(n,i),...Ot(t,n)])}function rs(e,t){let n=t.getTypes();n.length===0&&e.reportError(`Union type ${t.name} must define one or more member types.`,[t.astNode,...t.extensionASTNodes]);let r=Object.create(null);for(let i of n){if(r[i.name]){e.reportError(`Union type ${t.name} can only include type ${i.name} once.`,Pi(t,i.name));continue}r[i.name]=!0,O(i)||e.reportError(`Union type ${t.name} can only include Object types, it cannot include ${y(i)}.`,Pi(t,String(i)))}}function is(e,t){let n=t.getValues();n.length===0&&e.reportError(`Enum type ${t.name} must define one or more values.`,[t.astNode,...t.extensionASTNodes]);for(let r of n)Pe(e,r)}function os(e,t){let n=Object.values(t.getFields());n.length===0&&e.reportError(`Input Object type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let o of n){if(Pe(e,o),!J(o.type)){var r;e.reportError(`The type of ${t.name}.${o.name} must be Input Type but got: ${y(o.type)}.`,(r=o.astNode)===null||r===void 0?void 0:r.type)}if(et(o)&&o.deprecationReason!=null){var i;e.reportError(`Required input field ${t.name}.${o.name} cannot be deprecated.`,[rr(o.astNode),(i=o.astNode)===null||i===void 0?void 0:i.type])}t.isOneOf&&ss(t,o,e)}}function ss(e,t,n){if(b(t.type)){var r;n.reportError(`OneOf input field ${e.name}.${t.name} must be nullable.`,(r=t.astNode)===null||r===void 0?void 0:r.type)}t.defaultValue!==void 0&&n.reportError(`OneOf input field ${e.name}.${t.name} cannot have a default value.`,t.astNode)}function as(e){let t=Object.create(null),n=[],r=Object.create(null);return i;function i(o){if(t[o.name])return;t[o.name]=!0,r[o.name]=n.length;let s=Object.values(o.getFields());for(let a of s)if(b(a.type)&&x(a.type.ofType)){let c=a.type.ofType,p=r[c.name];if(n.push(a),p===void 0)i(c);else{let l=n.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))}n.pop()}r[o.name]=void 0}}function Ot(e,t){let{astNode:n,extensionASTNodes:r}=e;return(n!=null?[n,...r]:r).flatMap(o=>{var s;return(s=o.interfaces)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t.name)}function Pi(e,t){let{astNode:n,extensionASTNodes:r}=e;return(n!=null?[n,...r]:r).flatMap(o=>{var s;return(s=o.types)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t)}function rr(e){var t;return e==null||(t=e.directives)===null||t===void 0?void 0:t.find(n=>n.name.value===Zt.name)}function C(e,t){switch(t.kind){case u.LIST_TYPE:{let n=C(e,t.type);return n&&new A(n)}case u.NON_NULL_TYPE:{let n=C(e,t.type);return n&&new I(n)}case u.NAMED_TYPE:return e.getType(t.name.value)}}var rt=class{constructor(t,n,r){this._schema=t,this._typeStack=[],this._parentTypeStack=[],this._inputTypeStack=[],this._fieldDefStack=[],this._defaultValueStack=[],this._directive=null,this._argument=null,this._enumValue=null,this._getFieldDef=r??cs,n&&(J(n)&&this._inputTypeStack.push(n),ae(n)&&this._parentTypeStack.push(n),be(n)&&this._typeStack.push(n))}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 n=this._schema;switch(t.kind){case u.SELECTION_SET:{let i=Y(this.getType());this._parentTypeStack.push(ae(i)?i:void 0);break}case u.FIELD:{let i=this.getParentType(),o,s;i&&(o=this._getFieldDef(n,i,t),o&&(s=o.type)),this._fieldDefStack.push(o),this._typeStack.push(be(s)?s:void 0);break}case u.DIRECTIVE:this._directive=n.getDirective(t.name.value);break;case u.OPERATION_DEFINITION:{let i=n.getRootType(t.operation);this._typeStack.push(O(i)?i:void 0);break}case u.INLINE_FRAGMENT:case u.FRAGMENT_DEFINITION:{let i=t.typeCondition,o=i?C(n,i):Y(this.getType());this._typeStack.push(be(o)?o:void 0);break}case u.VARIABLE_DEFINITION:{let i=C(n,t.type);this._inputTypeStack.push(J(i)?i:void 0);break}case u.ARGUMENT:{var r;let i,o,s=(r=this.getDirective())!==null&&r!==void 0?r: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(J(o)?o:void 0);break}case u.LIST:{let i=Ze(this.getInputType()),o=w(i)?i.ofType:i;this._defaultValueStack.push(void 0),this._inputTypeStack.push(J(o)?o:void 0);break}case u.OBJECT_FIELD:{let i=Y(this.getInputType()),o,s;x(i)&&(s=i.getFields()[t.name.value],s&&(o=s.type)),this._defaultValueStack.push(s?s.defaultValue:void 0),this._inputTypeStack.push(J(o)?o:void 0);break}case u.ENUM:{let i=Y(this.getInputType()),o;$(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 cs(e,t,n){let r=n.name.value;if(r===Fe.name&&e.getQueryType()===t)return Fe;if(r===ke.name&&e.getQueryType()===t)return ke;if(r===Ce.name&&ae(t))return Ce;if(O(t)||_(t))return t.getFields()[r]}function nn(e,t){return{enter(...n){let r=n[0];e.enter(r);let i=Xe(t,r.kind).enter;if(i){let o=i.apply(t,n);return o!==void 0&&(e.leave(r),pt(o)&&e.enter(o)),o}},leave(...n){let r=n[0],i=Xe(t,r.kind).leave,o;return i&&(o=i.apply(t,n)),e.leave(r),o}}}function ir(e){return e.kind===u.OPERATION_DEFINITION||e.kind===u.FRAGMENT_DEFINITION}function or(e){return e.kind===u.SCHEMA_DEFINITION||_e(e)||e.kind===u.DIRECTIVE_DEFINITION}function _e(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 sr(e){return e.kind===u.SCHEMA_EXTENSION||rn(e)}function rn(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 ar(e){return{Document(t){for(let n of t.definitions)if(!ir(n)){let r=n.kind===u.SCHEMA_DEFINITION||n.kind===u.SCHEMA_EXTENSION?"schema":'"'+n.name.value+'"';e.reportError(new f(`The ${r} definition is not executable.`,{nodes:n}))}return!1}}}function cr(e){return{Field(t){let n=e.getParentType();if(n&&!e.getFieldDef()){let i=e.getSchema(),o=t.name.value,s=W("to use an inline fragment on",us(i,n,o));s===""&&(s=W(ps(n,o))),e.reportError(new f(`Cannot query field "${o}" on type "${n.name}".`+s,{nodes:t}))}}}}function us(e,t,n){if(!re(t))return[];let r=new Set,i=Object.create(null);for(let s of e.getPossibleTypes(t))if(s.getFields()[n]){r.add(s),i[s.name]=1;for(let a of s.getInterfaces()){var o;a.getFields()[n]&&(r.add(a),i[a.name]=((o=i[a.name])!==null&&o!==void 0?o:0)+1)}}return[...r].sort((s,a)=>{let c=i[a.name]-i[s.name];return c!==0?c:_(s)&&e.isSubType(s,a)?-1:_(a)&&e.isSubType(a,s)?1:Je(s.name,a.name)}).map(s=>s.name)}function ps(e,t){if(O(e)||_(e)){let n=Object.keys(e.getFields());return te(t,n)}return[]}function ur(e){return{InlineFragment(t){let n=t.typeCondition;if(n){let r=C(e.getSchema(),n);if(r&&!ae(r)){let i=L(n);e.reportError(new f(`Fragment cannot condition on non composite type "${i}".`,{nodes:n}))}}},FragmentDefinition(t){let n=C(e.getSchema(),t.typeCondition);if(n&&!ae(n)){let r=L(t.typeCondition);e.reportError(new f(`Fragment "${t.name.value}" cannot condition on non composite type "${r}".`,{nodes:t.typeCondition}))}}}}function pr(e){return{...lr(e),Argument(t){let n=e.getArgument(),r=e.getFieldDef(),i=e.getParentType();if(!n&&r&&i){let o=t.name.value,s=r.args.map(c=>c.name),a=te(o,s);e.reportError(new f(`Unknown argument "${o}" on field "${i.name}.${r.name}".`+W(a),{nodes:t}))}}}}function lr(e){let t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():Ee;for(let s of r)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=te(l,c);e.reportError(new f(`Unknown argument "${l}" on directive "@${a}".`+W(d),{nodes:p}))}}return!1}}}function on(e){let t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():Ee;for(let o of r)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=ls(p);m&&!d.includes(m)&&e.reportError(new f(`Directive "@${l}" may not be used on ${m}.`,{nodes:o}))}}}function ls(e){let t=e[e.length-1];switch("kind"in t||k(!1),t.kind){case u.OPERATION_DEFINITION:return fs(t.operation);case u.FIELD:return N.FIELD;case u.FRAGMENT_SPREAD:return N.FRAGMENT_SPREAD;case u.INLINE_FRAGMENT:return N.INLINE_FRAGMENT;case u.FRAGMENT_DEFINITION:return N.FRAGMENT_DEFINITION;case u.VARIABLE_DEFINITION:return N.VARIABLE_DEFINITION;case u.SCHEMA_DEFINITION:case u.SCHEMA_EXTENSION:return N.SCHEMA;case u.SCALAR_TYPE_DEFINITION:case u.SCALAR_TYPE_EXTENSION:return N.SCALAR;case u.OBJECT_TYPE_DEFINITION:case u.OBJECT_TYPE_EXTENSION:return N.OBJECT;case u.FIELD_DEFINITION:return N.FIELD_DEFINITION;case u.INTERFACE_TYPE_DEFINITION:case u.INTERFACE_TYPE_EXTENSION:return N.INTERFACE;case u.UNION_TYPE_DEFINITION:case u.UNION_TYPE_EXTENSION:return N.UNION;case u.ENUM_TYPE_DEFINITION:case u.ENUM_TYPE_EXTENSION:return N.ENUM;case u.ENUM_VALUE_DEFINITION:return N.ENUM_VALUE;case u.INPUT_OBJECT_TYPE_DEFINITION:case u.INPUT_OBJECT_TYPE_EXTENSION:return N.INPUT_OBJECT;case u.INPUT_VALUE_DEFINITION:{let n=e[e.length-3];return"kind"in n||k(!1),n.kind===u.INPUT_OBJECT_TYPE_DEFINITION?N.INPUT_FIELD_DEFINITION:N.ARGUMENT_DEFINITION}default:k(!1,"Unexpected kind: "+y(t.kind))}}function fs(e){switch(e){case F.QUERY:return N.QUERY;case F.MUTATION:return N.MUTATION;case F.SUBSCRIPTION:return N.SUBSCRIPTION}}function fr(e){return{FragmentSpread(t){let n=t.name.value;e.getFragment(n)||e.reportError(new f(`Unknown fragment "${n}".`,{nodes:t.name}))}}}function sn(e){let t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);for(let o of e.getDocument().definitions)_e(o)&&(r[o.name.value]=!0);let i=[...Object.keys(n),...Object.keys(r)];return{NamedType(o,s,a,c,p){let l=o.name.value;if(!n[l]&&!r[l]){var d;let m=(d=p[2])!==null&&d!==void 0?d:a,T=m!=null&&ds(m);if(T&&$i.includes(l))return;let g=te(l,T?$i.concat(i):i);e.reportError(new f(`Unknown type "${l}".`+W(g),{nodes:o}))}}}}var $i=[...Xt,...en].map(e=>e.name);function ds(e){return"kind"in e&&(or(e)||sr(e))}function dr(e){let t=0;return{Document(n){t=n.definitions.filter(r=>r.kind===u.OPERATION_DEFINITION).length},OperationDefinition(n){!n.name&&t>1&&e.reportError(new f("This anonymous operation must be the only defined operation.",{nodes:n}))}}}function mr(e){var t,n,r;let i=e.getSchema(),o=(t=(n=(r=i?.astNode)!==null&&r!==void 0?r:i?.getQueryType())!==null&&n!==void 0?n: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 ms=3;function hr(e){function t(n,r=Object.create(null),i=0){if(n.kind===u.FRAGMENT_SPREAD){let o=n.name.value;if(r[o]===!0)return!1;let s=e.getFragment(o);if(!s)return!1;try{return r[o]=!0,t(s,r,i)}finally{r[o]=void 0}}if(n.kind===u.FIELD&&(n.name.value==="fields"||n.name.value==="interfaces"||n.name.value==="possibleTypes"||n.name.value==="inputFields")&&(i++,i>=ms))return!0;if("selectionSet"in n&&n.selectionSet){for(let o of n.selectionSet.selections)if(t(o,r,i))return!0}return!1}return{Field(n){if((n.name.value==="__schema"||n.name.value==="__type")&&t(n))return e.reportError(new f("Maximum introspection depth exceeded",{nodes:[n]})),!1}}}function yr(e){let t=Object.create(null),n=[],r=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){r[s]=n.length;for(let c of a){let p=c.name.value,l=r[p];if(n.push(c),l===void 0){let d=e.getFragment(p);d&&i(d)}else{let d=n.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}))}n.pop()}r[s]=void 0}}}function Tr(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(n){let r=e.getRecursiveVariableUsages(n);for(let{node:i}of r){let o=i.name.value;t[o]!==!0&&e.reportError(new f(n.name?`Variable "$${o}" is not defined by operation "${n.name.value}".`:`Variable "$${o}" is not defined.`,{nodes:[i,n]}))}}},VariableDefinition(n){t[n.variable.name.value]=!0}}}function gr(e){let t=[],n=[];return{OperationDefinition(r){return t.push(r),!1},FragmentDefinition(r){return n.push(r),!1},Document:{leave(){let r=Object.create(null);for(let i of t)for(let o of e.getRecursivelyReferencedFragments(i))r[o.name.value]=!0;for(let i of n){let o=i.name.value;r[o]!==!0&&e.reportError(new f(`Fragment "${o}" is never used.`,{nodes:i}))}}}}}function Er(e){let t=[];return{OperationDefinition:{enter(){t=[]},leave(n){let r=Object.create(null),i=e.getRecursiveVariableUsages(n);for(let{node:o}of i)r[o.name.value]=!0;for(let o of t){let s=o.variable.name.value;r[s]!==!0&&e.reportError(new f(n.name?`Variable "$${s}" is never used in operation "${n.name.value}".`:`Variable "$${s}" is never used.`,{nodes:o}))}}},VariableDefinition(n){t.push(n)}}}function an(e){switch(e.kind){case u.OBJECT:return{...e,fields:hs(e.fields)};case u.LIST:return{...e,values:e.values.map(an)};case u.INT:case u.FLOAT:case u.STRING:case u.BOOLEAN:case u.NULL:case u.ENUM:case u.VARIABLE:return e}}function hs(e){return e.map(t=>({...t,value:an(t.value)})).sort((t,n)=>Je(t.name.value,n.name.value))}function Gi(e){return Array.isArray(e)?e.map(([t,n])=>`subfields "${t}" conflict because `+Gi(n)).join(" and "):e}function br(e){let t=new ln,n=new Ir,r=new Map;return{SelectionSet(i){let o=ys(e,r,t,n,e.getParentType(),i);for(let[[s,a],c,p]of o){let l=Gi(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 ys(e,t,n,r,i,o){let s=[],[a,c]=pn(e,t,i,o);if(gs(e,s,t,n,r,a),c.length!==0)for(let p=0;p<c.length;p++){cn(e,s,t,n,r,!1,a,c[p]);for(let l=p+1;l<c.length;l++)un(e,s,t,n,r,!1,c[p],c[l])}return s}function cn(e,t,n,r,i,o,s,a){if(r.has(s,a,o))return;r.add(s,a,o);let c=e.getFragment(a);if(!c)return;let[p,l]=Nr(e,n,c);if(s!==p){Rr(e,t,n,r,i,o,s,p);for(let d of l)cn(e,t,n,r,i,o,s,d)}}function un(e,t,n,r,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]=Nr(e,n,c),[m,T]=Nr(e,n,p);Rr(e,t,n,r,i,o,l,m);for(let g of T)un(e,t,n,r,i,o,s,g);for(let g of d)un(e,t,n,r,i,o,g,a)}function Ts(e,t,n,r,i,o,s,a,c){let p=[],[l,d]=pn(e,t,o,s),[m,T]=pn(e,t,a,c);Rr(e,p,t,n,r,i,l,m);for(let g of T)cn(e,p,t,n,r,i,l,g);for(let g of d)cn(e,p,t,n,r,i,m,g);for(let g of d)for(let D of T)un(e,p,t,n,r,i,g,D);return p}function gs(e,t,n,r,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=ji(e,n,r,i,!1,s,a[c],a[p]);l&&t.push(l)}}function Rr(e,t,n,r,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=ji(e,n,r,i,o,c,d,m);T&&t.push(T)}}}function ji(e,t,n,r,i,o,s,a){let[c,p,l]=s,[d,m,T]=a,g=i||c!==d&&O(c)&&O(d);if(!g){let oe=p.name.value,de=m.name.value;if(oe!==de)return[[o,`"${oe}" and "${de}" are different fields`],[p],[m]];if(!Es(p,m))return[[o,"they have differing arguments"],[p],[m]]}let D=l?.type,X=T?.type;if(D&&X&&vr(D,X))return[[o,`they return conflicting types "${y(D)}" and "${y(X)}"`],[p],[m]];let q=p.selectionSet,pe=m.selectionSet;if(q&&pe){let oe=Ts(e,t,n,r,g,Y(D),q,Y(X),pe);return vs(oe,o,p,m)}}function Es(e,t){let n=e.arguments,r=t.arguments;if(n===void 0||n.length===0)return r===void 0||r.length===0;if(r===void 0||r.length===0||n.length!==r.length)return!1;let i=new Map(r.map(({name:o,value:s})=>[o.value,s]));return n.every(o=>{let s=o.value,a=i.get(o.name.value);return a===void 0?!1:Vi(s)===Vi(a)})}function Vi(e){return L(an(e))}function vr(e,t){return w(e)?w(t)?vr(e.ofType,t.ofType):!0:w(t)?!0:b(e)?b(t)?vr(e.ofType,t.ofType):!0:b(t)?!0:z(e)||z(t)?e!==t:!1}function pn(e,t,n,r){let i=t.get(r);if(i)return i;let o=Object.create(null),s=Object.create(null);Qi(e,n,r,o,s);let a=[o,Object.keys(s)];return t.set(r,a),a}function Nr(e,t,n){let r=t.get(n.selectionSet);if(r)return r;let i=C(e.getSchema(),n.typeCondition);return pn(e,t,i,n.selectionSet)}function Qi(e,t,n,r,i){for(let o of n.selections)switch(o.kind){case u.FIELD:{let s=o.name.value,a;(O(t)||_(t))&&(a=t.getFields()[s]);let c=o.alias?o.alias.value:s;r[c]||(r[c]=[]),r[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?C(e.getSchema(),s):t;Qi(e,a,o.selectionSet,r,i);break}}}function vs(e,t,n,r){if(e.length>0)return[[t,e.map(([i])=>i)],[n,...e.map(([,i])=>i).flat()],[r,...e.map(([,,i])=>i).flat()]]}var ln=class{constructor(){this._data=new Map}has(t,n,r){var i;let o=(i=this._data.get(t))===null||i===void 0?void 0:i.get(n);return o===void 0?!1:r?!0:r===o}add(t,n,r){let i=this._data.get(t);i===void 0?this._data.set(t,new Map([[n,r]])):i.set(n,r)}},Ir=class{constructor(){this._orderedPairSet=new ln}has(t,n,r){return t<n?this._orderedPairSet.has(t,n,r):this._orderedPairSet.has(n,t,r)}add(t,n,r){t<n?this._orderedPairSet.add(t,n,r):this._orderedPairSet.add(n,t,r)}};function Or(e){return{InlineFragment(t){let n=e.getType(),r=e.getParentType();if(ae(n)&&ae(r)&&!Hn(e.getSchema(),n,r)){let i=y(r),o=y(n);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 n=t.name.value,r=Ns(e,n),i=e.getParentType();if(r&&i&&!Hn(e.getSchema(),r,i)){let o=y(i),s=y(r);e.reportError(new f(`Fragment "${n}" cannot be spread here as objects of type "${o}" can never be of type "${s}".`,{nodes:t}))}}}}function Ns(e,t){let n=e.getFragment(t);if(n){let r=C(e.getSchema(),n.typeCondition);if(ae(r))return r}}function Sr(e){let t=e.getSchema(),n=Object.create(null);for(let i of e.getDocument().definitions)_e(i)&&(n[i.name.value]=i);return{ScalarTypeExtension:r,ObjectTypeExtension:r,InterfaceTypeExtension:r,UnionTypeExtension:r,EnumTypeExtension:r,InputObjectTypeExtension:r};function r(i){let o=i.name.value,s=n[o],a=t?.getType(o),c;if(s?c=Is[s.kind]:a&&(c=bs(a)),c){if(c!==i.kind){let p=Rs(i.kind);e.reportError(new f(`Cannot extend non-${p} type "${o}".`,{nodes:s?[s,i]:i}))}}else{let p=Object.keys({...n,...t?.getTypeMap()}),l=te(o,p);e.reportError(new f(`Cannot extend type "${o}" because it is not defined.`+W(l),{nodes:i.name}))}}}var Is={[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 bs(e){if(Te(e))return u.SCALAR_TYPE_EXTENSION;if(O(e))return u.OBJECT_TYPE_EXTENSION;if(_(e))return u.INTERFACE_TYPE_EXTENSION;if(H(e))return u.UNION_TYPE_EXTENSION;if($(e))return u.ENUM_TYPE_EXTENSION;if(x(e))return u.INPUT_OBJECT_TYPE_EXTENSION;k(!1,"Unexpected type: "+y(e))}function Rs(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:k(!1,"Unexpected kind: "+y(e))}}function _r(e){return{...xr(e),Field:{leave(t){var n;let r=e.getFieldDef();if(!r)return!1;let i=new Set((n=t.arguments)===null||n===void 0?void 0:n.map(o=>o.name.value));for(let o of r.args)if(!i.has(o.name)&&Re(o)){let s=y(o.type);e.reportError(new f(`Field "${r.name}" argument "${o.name}" of type "${s}" is required, but it was not provided.`,{nodes:t}))}}}}}function xr(e){var t;let n=Object.create(null),r=e.getSchema(),i=(t=r?.getDirectives())!==null&&t!==void 0?t:Ee;for(let a of i)n[a.name]=me(a.args.filter(Re),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:[];n[a.name.value]=me(c.filter(Os),p=>p.name.value)}return{Directive:{leave(a){let c=a.name.value,p=n[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 D=We(g.type)?y(g.type):L(g.type);e.reportError(new f(`Directive "@${c}" argument "${T}" of type "${D}" is required, but it was not provided.`,{nodes:a}))}}}}}}function Os(e){return e.type.kind===u.NON_NULL_TYPE&&e.defaultValue==null}function Lr(e){return{Field(t){let n=e.getType(),r=t.selectionSet;if(n)if(z(Y(n))){if(r){let i=t.name.value,o=y(n);e.reportError(new f(`Field "${i}" must not have a selection since type "${o}" has no subfields.`,{nodes:r}))}}else if(r){if(r.selections.length===0){let i=t.name.value,o=y(n);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(n);e.reportError(new f(`Field "${i}" of type "${o}" must have a selection of subfields. Did you mean "${i} { ... }"?`,{nodes:t}))}}}}function fn(e){return e.map(t=>typeof t=="number"?"["+t.toString()+"]":"."+t).join("")}function Ue(e,t,n){return{prev:e,key:t,typename:n}}function Z(e){let t=[],n=e;for(;n;)t.push(n.key),n=n.prev;return t.reverse()}function Bi(e,t,n=Ss){return _t(e,t,n,void 0)}function Ss(e,t,n){let r="Invalid value "+y(t);throw e.length>0&&(r+=` at "value${fn(e)}"`),n.message=r+": "+n.message,n}function _t(e,t,n,r){if(b(t)){if(e!=null)return _t(e,t.ofType,n,r);n(Z(r),e,new f(`Expected non-nullable type "${y(t)}" not to be null.`));return}if(e==null)return null;if(w(t)){let i=t.ofType;return tt(e)?Array.from(e,(o,s)=>{let a=Ue(r,s,void 0);return _t(o,i,n,a)}):[_t(e,i,n,r)]}if(x(t)){if(!G(e)||Array.isArray(e)){n(Z(r),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(b(s.type)){let c=y(s.type);n(Z(r),e,new f(`Field "${s.name}" of required type "${c}" was not provided.`))}continue}i[s.name]=_t(a,s.type,n,Ue(r,s.name,t.name))}for(let s of Object.keys(e))if(!o[s]){let a=te(s,Object.keys(t.getFields()));n(Z(r),e,new f(`Field "${s}" is not defined by type "${t.name}".`+W(a)))}if(t.isOneOf){let s=Object.keys(i);s.length!==1&&n(Z(r),e,new f(`Exactly one key must be specified for OneOf type "${t.name}".`));let a=s[0],c=i[a];c===null&&n(Z(r).concat(a),c,new f(`Field "${a}" must be non-null.`))}return i}if(z(t)){let i;try{i=t.parseValue(e)}catch(o){o instanceof f?n(Z(r),e,o):n(Z(r),e,new f(`Expected type "${t.name}". `+o.message,{originalError:o}));return}return i===void 0&&n(Z(r),e,new f(`Expected type "${t.name}".`)),i}k(!1,"Unexpected input type: "+y(t))}function $e(e,t,n){if(e){if(e.kind===u.VARIABLE){let r=e.name.value;if(n==null||n[r]===void 0)return;let i=n[r];return i===null&&b(t)?void 0:i}if(b(t))return e.kind===u.NULL?void 0:$e(e,t.ofType,n);if(e.kind===u.NULL)return null;if(w(t)){let r=t.ofType;if(e.kind===u.LIST){let o=[];for(let s of e.values)if(qi(s,n)){if(b(r))return;o.push(null)}else{let a=$e(s,r,n);if(a===void 0)return;o.push(a)}return o}let i=$e(e,r,n);return i===void 0?void 0:[i]}if(x(t)){if(e.kind!==u.OBJECT)return;let r=Object.create(null),i=me(e.fields,o=>o.name.value);for(let o of Object.values(t.getFields())){let s=i[o.name];if(!s||qi(s.value,n)){if(o.defaultValue!==void 0)r[o.name]=o.defaultValue;else if(b(o.type))return;continue}let a=$e(s.value,o.type,n);if(a===void 0)return;r[o.name]=a}if(t.isOneOf){let o=Object.keys(r);if(o.length!==1||r[o[0]]===null)return}return r}if(z(t)){let r;try{r=t.parseLiteral(e,n)}catch{return}return r===void 0?void 0:r}k(!1,"Unexpected input type: "+y(t))}}function qi(e,t){return e.kind===u.VARIABLE&&(t==null||t[e.name.value]===void 0)}function wr(e,t,n,r){let i=[],o=r?.maxErrors;try{let s=_s(e,t,n,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 _s(e,t,n,r){let i={};for(let o of t){let s=o.variable.name.value,a=C(e,o.type);if(!J(a)){let p=L(o.type);r(new f(`Variable "$${s}" expected value of type "${p}" which cannot be used as an input type.`,{nodes:o.type}));continue}if(!Yi(n,s)){if(o.defaultValue)i[s]=$e(o.defaultValue,a);else if(b(a)){let p=y(a);r(new f(`Variable "$${s}" of required type "${p}" was not provided.`,{nodes:o}))}continue}let c=n[s];if(c===null&&b(a)){let p=y(a);r(new f(`Variable "$${s}" of non-null type "${p}" must not be null.`,{nodes:o}));continue}i[s]=Bi(c,a,(p,l,d)=>{let m=`Variable "$${s}" got invalid value `+y(l);p.length>0&&(m+=` at "${s}${fn(p)}"`),r(new f(m+"; "+d.message,{nodes:o,originalError:d}))})}return i}function dn(e,t,n){var r;let i={},o=(r=t.arguments)!==null&&r!==void 0?r:[],s=me(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(b(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(n==null||!Yi(n,g)){if(a.defaultValue!==void 0)i[c]=a.defaultValue;else if(b(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=n[g]==null}if(m&&b(p))throw new f(`Argument "${c}" of non-null type "${y(p)}" must not be null.`,{nodes:d});let T=$e(d,p,n);if(T===void 0)throw new f(`Argument "${c}" has invalid value ${L(d)}.`,{nodes:d});i[c]=T}return i}function mn(e,t,n){var r;let i=(r=t.directives)===null||r===void 0?void 0:r.find(o=>o.name.value===e.name);if(i)return dn(e,i,n)}function Yi(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function yn(e,t,n,r,i){let o=new Map;return hn(e,t,n,r,i,o,new Set),o}function Ji(e,t,n,r,i){let o=new Map,s=new Set;for(let a of i)a.selectionSet&&hn(e,t,n,r,a.selectionSet,o,s);return o}function hn(e,t,n,r,i,o,s){for(let a of i.selections)switch(a.kind){case u.FIELD:{if(!Dr(n,a))continue;let c=xs(a),p=o.get(c);p!==void 0?p.push(a):o.set(c,[a]);break}case u.INLINE_FRAGMENT:{if(!Dr(n,a)||!Hi(e,a,r))continue;hn(e,t,n,r,a.selectionSet,o,s);break}case u.FRAGMENT_SPREAD:{let c=a.name.value;if(s.has(c)||!Dr(n,a))continue;s.add(c);let p=t[c];if(!p||!Hi(e,p,r))continue;hn(e,t,n,r,p.selectionSet,o,s);break}}}function Dr(e,t){let n=mn(Wt,t,e);if(n?.if===!0)return!1;let r=mn(Kt,t,e);return r?.if!==!1}function Hi(e,t,n){let r=t.typeCondition;if(!r)return!0;let i=C(e,r);return i===n?!0:re(i)?e.isSubType(i,n):!1}function xs(e){return e.alias?e.alias.value:e.name.value}function Ar(e){return{OperationDefinition(t){if(t.operation==="subscription"){let n=e.getSchema(),r=n.getSubscriptionType();if(r){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=yn(n,a,o,r,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 n=new Map;for(let r of e){let i=t(r),o=n.get(i);o===void 0?n.set(i,[r]):o.push(r)}return n}function Fr(e){return{DirectiveDefinition(r){var i;let o=(i=r.arguments)!==null&&i!==void 0?i:[];return n(`@${r.name.value}`,o)},InterfaceTypeDefinition:t,InterfaceTypeExtension:t,ObjectTypeDefinition:t,ObjectTypeExtension:t};function t(r){var i;let o=r.name.value,s=(i=r.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:[];n(`${o}.${p}`,l)}return!1}function n(r,i){let o=it(i,s=>s.name.value);for(let[s,a]of o)a.length>1&&e.reportError(new f(`Argument "${r}(${s}:)" can only be defined once.`,{nodes:a.map(c=>c.name)}));return!1}}function Tn(e){return{Field:t,Directive:t};function t(n){var r;let i=(r=n.arguments)!==null&&r!==void 0?r:[],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 kr(e){let t=Object.create(null),n=e.getSchema();return{DirectiveDefinition(r){let i=r.name.value;if(n!=null&&n.getDirective(i)){e.reportError(new f(`Directive "@${i}" already exists in the schema. It cannot be redefined.`,{nodes:r.name}));return}return t[i]?e.reportError(new f(`There can be only one directive named "@${i}".`,{nodes:[t[i],r.name]})):t[i]=r.name,!1}}}function gn(e){let t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():Ee;for(let a of r)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(_e(a)||rn(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 Cr(e){let t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);return{EnumTypeDefinition:i,EnumTypeExtension:i};function i(o){var s;let a=o.name.value;r[a]||(r[a]=Object.create(null));let c=(s=o.values)!==null&&s!==void 0?s:[],p=r[a];for(let l of c){let d=l.name.value,m=n[a];$(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 Mr(e){let t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=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;r[a]||(r[a]=Object.create(null));let c=(s=o.fields)!==null&&s!==void 0?s:[],p=r[a];for(let l of c){let d=l.name.value;Ls(n[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 Ls(e,t){return O(e)||_(e)||x(e)?e.getFields()[t]!=null:!1}function Pr(e){let t=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(n){let r=n.name.value;return t[r]?e.reportError(new f(`There can be only one fragment named "${r}".`,{nodes:[t[r],n.name]})):t[r]=n.name,!1}}}function En(e){let t=[],n=Object.create(null);return{ObjectValue:{enter(){t.push(n),n=Object.create(null)},leave(){let r=t.pop();r||k(!1),n=r}},ObjectField(r){let i=r.name.value;n[i]?e.reportError(new f(`There can be only one input field named "${i}".`,{nodes:[n[i],r.name]})):n[i]=r.name}}}function Ur(e){let t=Object.create(null);return{OperationDefinition(n){let r=n.name;return r&&(t[r.value]?e.reportError(new f(`There can be only one operation named "${r.value}".`,{nodes:[t[r.value],r]})):t[r.value]=r),!1},FragmentDefinition:()=>!1}}function $r(e){let t=e.getSchema(),n=Object.create(null),r=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=n[p];r[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]})):n[p]=c}return!1}}function Vr(e){let t=Object.create(null),n=e.getSchema();return{ScalarTypeDefinition:r,ObjectTypeDefinition:r,InterfaceTypeDefinition:r,UnionTypeDefinition:r,EnumTypeDefinition:r,InputObjectTypeDefinition:r};function r(i){let o=i.name.value;if(n!=null&&n.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 Gr(e){return{OperationDefinition(t){var n;let r=(n=t.variableDefinitions)!==null&&n!==void 0?n:[],i=it(r,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 jr(e){let t={};return{OperationDefinition:{enter(){t={}}},VariableDefinition(n){t[n.variable.name.value]=n},ListValue(n){let r=Ze(e.getParentInputType());if(!w(r))return Ve(e,n),!1},ObjectValue(n){let r=Y(e.getInputType());if(!x(r))return Ve(e,n),!1;let i=me(n.fields,o=>o.name.value);for(let o of Object.values(r.getFields()))if(!i[o.name]&&et(o)){let a=y(o.type);e.reportError(new f(`Field "${r.name}.${o.name}" of required type "${a}" was not provided.`,{nodes:n}))}r.isOneOf&&ws(e,n,r,i,t)},ObjectField(n){let r=Y(e.getParentInputType());if(!e.getInputType()&&x(r)){let o=te(n.name.value,Object.keys(r.getFields()));e.reportError(new f(`Field "${n.name.value}" is not defined by type "${r.name}".`+W(o),{nodes:n}))}},NullValue(n){let r=e.getInputType();b(r)&&e.reportError(new f(`Expected value of type "${y(r)}", found ${L(n)}.`,{nodes:n}))},EnumValue:n=>Ve(e,n),IntValue:n=>Ve(e,n),FloatValue:n=>Ve(e,n),StringValue:n=>Ve(e,n),BooleanValue:n=>Ve(e,n)}}function Ve(e,t){let n=e.getInputType();if(!n)return;let r=Y(n);if(!z(r)){let i=y(n);e.reportError(new f(`Expected value of type "${i}", found ${L(t)}.`,{nodes:t}));return}try{if(r.parseLiteral(t,void 0)===void 0){let o=y(n);e.reportError(new f(`Expected value of type "${o}", found ${L(t)}.`,{nodes:t}))}}catch(i){let o=y(n);i instanceof f?e.reportError(i):e.reportError(new f(`Expected value of type "${o}", found ${L(t)}; `+i.message,{nodes:t,originalError:i}))}}function ws(e,t,n,r,i){var o;let s=Object.keys(r);if(s.length!==1){e.reportError(new f(`OneOf Input Object "${n.name}" must specify exactly one key.`,{nodes:[t]}));return}let c=(o=r[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 "${n.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 "${n.name}".`,{nodes:[t]}))}}function Qr(e){return{VariableDefinition(t){let n=C(e.getSchema(),t.type);if(n!==void 0&&!J(n)){let r=t.variable.name.value,i=L(t.type);e.reportError(new f(`Variable "$${r}" cannot be non-input type "${i}".`,{nodes:t.type}))}}}}function Br(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(n){let r=e.getRecursiveVariableUsages(n);for(let{node:i,type:o,defaultValue:s,parentType:a}of r){let c=i.name.value,p=t[c];if(p&&o){let l=e.getSchema(),d=C(l,p.type);if(d&&!Ds(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]}))}x(a)&&a.isOneOf&&gt(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(n){t[n.variable.name.value]=n}}}function Ds(e,t,n,r,i){if(b(r)&&!b(t)){if(!(n!=null&&n.kind!==u.NULL)&&!(i!==void 0))return!1;let a=r.ofType;return Se(e,t,a)}return Se(e,t,r)}var qr=Object.freeze([hr]),ot=Object.freeze([ar,Ur,dr,Ar,sn,ur,Qr,Lr,cr,Pr,fr,gr,Or,yr,Gr,Tr,Er,on,gn,pr,Tn,jr,_r,Br,br,En,...qr]),As=Object.freeze([mr,$r,Vr,Cr,Mr,Fr,kr,sn,on,gn,Sr,lr,Tn,En,xr]);var Yr=class{constructor(t,n){this._ast=t,this._fragments=void 0,this._fragmentSpreads=new Map,this._recursivelyReferencedFragments=new Map,this._onError=n}get[Symbol.toStringTag](){return"ASTValidationContext"}reportError(t){this._onError(t)}getDocument(){return this._ast}getFragment(t){let n;if(this._fragments)n=this._fragments;else{n=Object.create(null);for(let r of this.getDocument().definitions)r.kind===u.FRAGMENT_DEFINITION&&(n[r.name.value]=r);this._fragments=n}return n[t]}getFragmentSpreads(t){let n=this._fragmentSpreads.get(t);if(!n){n=[];let r=[t],i;for(;i=r.pop();)for(let o of i.selections)o.kind===u.FRAGMENT_SPREAD?n.push(o):o.selectionSet&&r.push(o.selectionSet);this._fragmentSpreads.set(t,n)}return n}getRecursivelyReferencedFragments(t){let n=this._recursivelyReferencedFragments.get(t);if(!n){n=[];let r=Object.create(null),i=[t.selectionSet],o;for(;o=i.pop();)for(let s of this.getFragmentSpreads(o)){let a=s.name.value;if(r[a]!==!0){r[a]=!0;let c=this.getFragment(a);c&&(n.push(c),i.push(c.selectionSet))}}this._recursivelyReferencedFragments.set(t,n)}return n}};var xt=class extends Yr{constructor(t,n,r,i){super(n,i),this._schema=t,this._typeInfo=r,this._variableUsages=new Map,this._recursiveVariableUsages=new Map}get[Symbol.toStringTag](){return"ValidationContext"}getSchema(){return this._schema}getVariableUsages(t){let n=this._variableUsages.get(t);if(!n){let r=[],i=new rt(this._schema);we(t,nn(i,{VariableDefinition:()=>!1,Variable(o){r.push({node:o,type:i.getInputType(),defaultValue:i.getDefaultValue(),parentType:i.getParentInputType()})}})),n=r,this._variableUsages.set(t,n)}return n}getRecursiveVariableUsages(t){let n=this._recursiveVariableUsages.get(t);if(!n){n=this.getVariableUsages(t);for(let r of this.getRecursivelyReferencedFragments(t))n=n.concat(this.getVariableUsages(r));this._recursiveVariableUsages.set(t,n)}return n}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 vn(e,t,n=ot,r,i=new rt(e)){var o;let s=(o=r?.maxErrors)!==null&&o!==void 0?o:100;t||R(!1,"Must provide document."),St(e);let a=Object.freeze({}),c=[],p=new xt(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=Qn(n.map(d=>d(p)));try{we(t,nn(i,l))}catch(d){if(d!==a)throw d}return c}function zi(e){let t;return function(r,i,o){t===void 0&&(t=new WeakMap);let s=t.get(r);s===void 0&&(s=new WeakMap,t.set(r,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(r,i,o),a.set(o,c)),c}}function Hr(e){return Promise.all(Object.values(e)).then(t=>{let n=Object.create(null);for(let[r,i]of Object.keys(e).entries())n[i]=t[r];return n})}function Xi(e,t,n){let r=n;for(let i of e)r=se(r)?r.then(o=>t(o,i)):t(r,i);return r}function Ki(e){return e instanceof Error?e:new Jr(e)}var Jr=class extends Error{constructor(t){super("Unexpected error value: "+y(t)),this.name="NonErrorThrown",this.thrownValue=t}};function Lt(e,t,n){var r;let i=Ki(e);return Fs(i)?i:new f(i.message,{nodes:(r=i.nodes)!==null&&r!==void 0?r:t,source:i.source,positions:i.positions,path:n,originalError:i})}function Fs(e){return Array.isArray(e.path)}var ks=zi((e,t,n)=>Ji(e.schema,e.fragments,e.variableValues,t,n));function On(e){arguments.length<2||R(!1,"graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.");let{schema:t,document:n,variableValues:r,rootValue:i}=e;Cs(t,n,r);let o=Ms(e);if(!("schema"in o))return{errors:o};try{let{operation:s}=o,a=Ps(o,s,i);return se(a)?a.then(c=>Nn(c,o.errors),c=>(o.errors.push(c),Nn(null,o.errors))):Nn(a,o.errors)}catch(s){return o.errors.push(s),Nn(null,o.errors)}}function Nn(e,t){return t.length===0?{data:e}:{errors:t,data:e}}function Cs(e,t,n){t||R(!1,"Must provide document."),St(e),n==null||G(n)||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 Ms(e){var t,n,r;let{schema:i,document:o,rootValue:s,contextValue:a,variableValues:c,operationName:p,fieldResolver:l,typeResolver:d,subscribeFieldResolver:m,options:T}=e,g,D=Object.create(null);for(let pe of o.definitions)switch(pe.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=pe}else((t=pe.name)===null||t===void 0?void 0:t.value)===p&&(g=pe);break;case u.FRAGMENT_DEFINITION:D[pe.name.value]=pe;break;default:}if(!g)return p!=null?[new f(`Unknown operation named "${p}".`)]:[new f("Must provide an operation.")];let X=(n=g.variableDefinitions)!==null&&n!==void 0?n:[],q=wr(i,X,c??{},{maxErrors:(r=T?.maxCoercionErrors)!==null&&r!==void 0?r:50});return q.errors?q.errors:{schema:i,fragments:D,rootValue:s,contextValue:a,operation:g,variableValues:q.coerced,fieldResolver:l??Rn,typeResolver:d??Xr,subscribeFieldResolver:m??Rn,errors:[]}}function Ps(e,t,n){let r=e.schema.getRootType(t.operation);if(r==null)throw new f(`Schema is not configured to execute ${t.operation} operation.`,{nodes:t});let i=yn(e.schema,e.fragments,e.variableValues,r,t.selectionSet),o=void 0;switch(t.operation){case F.QUERY:return In(e,r,n,o,i);case F.MUTATION:return Us(e,r,n,o,i);case F.SUBSCRIPTION:return In(e,r,n,o,i)}}function Us(e,t,n,r,i){return Xi(i.entries(),(o,[s,a])=>{let c=Ue(r,s,t.name),p=eo(e,t,n,a,c);return p===void 0?o:se(p)?p.then(l=>(o[s]=l,o)):(o[s]=p,o)},Object.create(null))}function In(e,t,n,r,i){let o=Object.create(null),s=!1;try{for(let[a,c]of i.entries()){let p=Ue(r,a,t.name),l=eo(e,t,n,c,p);l!==void 0&&(o[a]=l,se(l)&&(s=!0))}}catch(a){if(s)return Hr(o).finally(()=>{throw a});throw a}return s?Hr(o):o}function eo(e,t,n,r,i){var o;let s=Qs(e.schema,t,r[0]);if(!s)return;let a=s.type,c=(o=s.resolve)!==null&&o!==void 0?o:e.fieldResolver,p=$s(e,s,r,t,i);try{let l=dn(s,r[0],e.variableValues),d=e.contextValue,m=c(n,l,d,p),T;return se(m)?T=m.then(g=>wt(e,a,r,p,i,g)):T=wt(e,a,r,p,i,m),se(T)?T.then(void 0,g=>{let D=Lt(g,r,Z(i));return bn(D,a,e)}):T}catch(l){let d=Lt(l,r,Z(i));return bn(d,a,e)}}function $s(e,t,n,r,i){return{fieldName:t.name,fieldNodes:n,returnType:t.type,parentType:r,path:i,schema:e.schema,fragments:e.fragments,rootValue:e.rootValue,operation:e.operation,variableValues:e.variableValues}}function bn(e,t,n){if(b(t))throw e;return n.errors.push(e),null}function wt(e,t,n,r,i,o){if(o instanceof Error)throw o;if(b(t)){let s=wt(e,t.ofType,n,r,i,o);if(s===null)throw new Error(`Cannot return null for non-nullable field ${r.parentType.name}.${r.fieldName}.`);return s}if(o==null)return null;if(w(t))return Vs(e,t,n,r,i,o);if(z(t))return Gs(t,o);if(re(t))return js(e,t,n,r,i,o);if(O(t))return zr(e,t,n,r,i,o);k(!1,"Cannot complete value of unexpected output type: "+y(t))}function Vs(e,t,n,r,i,o){if(!tt(o))throw new f(`Expected Iterable, but did not find one for field "${r.parentType.name}.${r.fieldName}".`);let s=t.ofType,a=!1,c=Array.from(o,(p,l)=>{let d=Ue(i,l,void 0);try{let m;return se(p)?m=p.then(T=>wt(e,s,n,r,d,T)):m=wt(e,s,n,r,d,p),se(m)?(a=!0,m.then(void 0,T=>{let g=Lt(T,n,Z(d));return bn(g,s,e)})):m}catch(m){let T=Lt(m,n,Z(d));return bn(T,s,e)}});return a?Promise.all(c):c}function Gs(e,t){let n=e.serialize(t);if(n==null)throw new Error(`Expected \`${y(e)}.serialize(${y(t)})\` to return non-nullable value, returned: ${y(n)}`);return n}function js(e,t,n,r,i,o){var s;let a=(s=t.resolveType)!==null&&s!==void 0?s:e.typeResolver,c=e.contextValue,p=a(o,c,r,t);return se(p)?p.then(l=>zr(e,Wi(l,e,t,n,r,o),n,r,i,o)):zr(e,Wi(p,e,t,n,r,o),n,r,i,o)}function Wi(e,t,n,r,i,o){if(e==null)throw new f(`Abstract type "${n.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}". Either the "${n.name}" type should provide a "resolveType" function or each possible type should provide an "isTypeOf" function.`,r);if(O(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 "${n.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 "${n.name}" was resolved to a type "${e}" that does not exist inside the schema.`,{nodes:r});if(!O(s))throw new f(`Abstract type "${n.name}" was resolved to a non-object type "${e}".`,{nodes:r});if(!t.schema.isSubType(n,s))throw new f(`Runtime Object type "${s.name}" is not a possible type for "${n.name}".`,{nodes:r});return s}function zr(e,t,n,r,i,o){let s=ks(e,t,n);if(t.isTypeOf){let a=t.isTypeOf(o,e.contextValue,r);if(se(a))return a.then(c=>{if(!c)throw Zi(t,o,n);return In(e,t,o,i,s)});if(!a)throw Zi(t,o,n)}return In(e,t,o,i,s)}function Zi(e,t,n){return new f(`Expected value of type "${e.name}" but got: ${y(t)}.`,{nodes:n})}var Xr=function(e,t,n,r){if(G(e)&&typeof e.__typename=="string")return e.__typename;let i=n.schema.getPossibleTypes(r),o=[];for(let s=0;s<i.length;s++){let a=i[s];if(a.isTypeOf){let c=a.isTypeOf(e,t,n);if(se(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})},Rn=function(e,t,n,r){if(G(e)||typeof e=="function"){let i=e[r.fieldName];return typeof i=="function"?e[r.fieldName](t,n,r):i}};function Qs(e,t,n){let r=n.name.value;return r===Fe.name&&e.getQueryType()===t?Fe:r===ke.name&&e.getQueryType()===t?ke:r===Ce.name?Ce:t.getFields()[r]}import{OperationOutcomeError as B,Operator as fa,allOk as to,badRequest as xe,created as no,deepClone as st,evalFhirPath as ro,generateId as io,globalSchema as da,matchesSearchRequest as ma,multipleMatches as Sn,normalizeOperationOutcome as ha,notFound as Dt,preconditionFailed as ya,stringify as Ta}from"@medplum/core";import{applyPatch as ga}from"rfc6902";var _n={READER:"reader",WRITER:"writer"},Kr=class{async searchOne(t){return(await this.search({...t,count:1})).entry?.[0]?.resource}async searchResources(t){return(await this.search(t)).entry?.map(r=>r.resource)??[]}async conditionalCreate(t,n,r){if(n.resourceType!==t.resourceType)throw new B(xe("Search type must match resource type for conditional update"));return n.count=2,n.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(n);if(i.length===1){let s=i[0];if(!r?.assignedId&&t.id&&t.id!==s.id)throw new B(xe("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:i[0],outcome:to}}else if(i.length>1)throw new B(Sn);return{resource:await this.createResource(t,r),outcome:no}},{serializable:!0})}async conditionalUpdate(t,n,r){if(n.resourceType!==t.resourceType)throw new B(xe("Search type must match resource type for conditional update"));return n.count=2,n.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(n);if(i.length===0){if(t.id&&!r?.assignedId)throw new B(xe("Cannot perform create as update with client-assigned ID",t.resourceType+".id"));return{resource:await this.createResource(t,r),outcome:no}}else if(i.length>1)throw new B(Sn);let o=i[0];if(t.id&&t.id!==o.id)throw new B(xe("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:await this.updateResource({...t,id:o.id},r),outcome:to}},{serializable:!0})}async conditionalDelete(t){t.count=2,t.sortRules=void 0,await this.withTransaction(async()=>{let n=await this.searchResources(t);if(n.length>1)throw new B(Sn);if(!n.length)return;let r=n[0];await this.deleteResource(r.resourceType,r.id)},{serializable:!0})}async conditionalPatch(t,n){return t.count=2,t.sortRules=void 0,this.withTransaction(async()=>{let r=await this.searchResources(t);if(r.length>1)throw new B(Sn);if(!r.length)throw new B(Dt);let i=r[0];return this.patchResource(i.resourceType,i.id,n)},{serializable:!0})}},oo=class extends Kr{constructor(){super(),this.resources=new Map,this.history=new Map}clear(){this.resources.clear(),this.history.clear()}setMode(t){}async createResource(t){let n=JSON.parse(Ta(t));n.id||(n.id=this.generateId()),n.meta||(n.meta={}),n.meta.versionId||(n.meta.versionId=io()),n.meta.lastUpdated||(n.meta.lastUpdated=new Date().toISOString());let{resourceType:r,id:i}=n,o=this.resources.get(r);o||(o=new Map,this.resources.set(r,o)),o.set(i,n);let s=this.history.get(r);s||(s=new Map,this.history.set(r,s));let a=s.get(i);return a||(a=[],s.set(i,a)),a.push(n),st(n)}generateId(){return io()}updateResource(t,n){if(!t.id)throw new B(xe("Missing id"));if(n?.ifMatch){let i=n.ifMatch,o=this.resources.get(t.resourceType)?.get(t.id);if(!o)throw new B(Dt);if(o.meta?.versionId!==i)throw new B(ya)}let r=st(t);return r.meta&&(r.meta.versionId&&delete r.meta.versionId,r.meta.lastUpdated&&delete r.meta.lastUpdated),this.createResource(r)}async patchResource(t,n,r){let i=await this.readResource(t,n);try{let o=ga(i,r).filter(Boolean);if(o.length>0)throw new B(xe(o.map(s=>s.message).join(`
54
+ `)))}catch(o){throw new B(ha(o))}return this.updateResource(i)}async readResource(t,n){let r=this.resources.get(t)?.get(n);if(!r)throw new B(Dt);return st(r)}async readReference(t){let n=t.reference?.split("/");if(!n||n.length!==2)throw new B(xe("Invalid reference"));return this.readResource(n[0],n[1])}async readReferences(t){return Promise.all(t.map(n=>this.readReference(n)))}async readHistory(t,n){await this.readResource(t,n);let r=(this.history.get(t)?.get(n)??[]).reverse().map(i=>({resource:st(i)}));return{resourceType:"Bundle",type:"history",...r.length?{entry:r}:void 0}}async readVersion(t,n,r){await this.readResource(t,n);let i=this.history.get(t)?.get(n)?.find(o=>o.meta?.versionId===r);if(!i)throw new B(Dt);return st(i)}async search(t){let{resourceType:n}=t,r=this.resources.get(n)??new Map,i=[];for(let s of r.values())ma(s,t)&&i.push(s);let o=i.map(s=>({resource:st(s)}));if(t.sortRules)for(let s of t.sortRules)o=o.sort((a,c)=>Ea(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,n,r){t.filters??=[];let i={};for(let o of r){t.filters.push({code:n,operator:fa.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,n){if(!this.resources.get(t)?.get(n))throw new B(Dt);this.resources.get(t)?.delete(n)}withTransaction(t){return console.debug("WARN: MockRepository does not support transactions"),t(void 0)}},Ea=(e,t,n)=>{let i=da.types[e.resourceType]?.searchParams?.[n.code]?.expression;if(!i)return 0;let o=JSON.stringify(ro(i,e)),s=JSON.stringify(ro(i,t));return o.localeCompare(s)*(n.descending?-1:1)};import{capitalize as wa,getDataType as lo,isResourceType as Da}from"@medplum/core";import{DEFAULT_MAX_SEARCH_COUNT as va,DEFAULT_SEARCH_COUNT as Na,getReferenceString as Ia,getSearchParameters as ba,Operator as Ra,parseSearchRequest as Oa}from"@medplum/core";import Sa from"dataloader";var xn={base64Binary:v,boolean:V,canonical:v,code:v,date:v,dateTime:v,decimal:ue,id:ge,instant:v,integer:ue,markdown:v,number:ue,oid:v,positiveInt:ue,string:v,time:v,unsignedInt:ue,uri:v,url:v,uuid:v,xhtml:v,"http://hl7.org/fhirpath/System.Boolean":V,"http://hl7.org/fhirpath/System.Date":v,"http://hl7.org/fhirpath/System.DateTime":v,"http://hl7.org/fhirpath/System.Decimal":ue,"http://hl7.org/fhirpath/System.Integer":ue,"http://hl7.org/fhirpath/System.String":v,"http://hl7.org/fhirpath/System.Time":v};function so(e,t,n){let r;if(t){let o=n._reference;delete n._reference,r={code:o,operator:Ra.EQUALS,value:Ia(t)}}return n=Object.fromEntries(Object.entries(n).map(([o,s])=>[_a(o),s])),{searchRequest:Oa(e,n),referenceFilter:r}}function ao(e,t){let n=e.filters||[];e.filters=[t,...n]}function co(e,t,n){let{searchRequest:r,referenceFilter:i}=so(e,t,n);return i&&ao(r,i),r}function Wr(e,t){e.count=Math.min(e.count??Na,t??va)}function _a(e){return e.startsWith("_")?e:e.replaceAll("_","-")}function Zr(e){return e.replaceAll("-","_")}function xa(e){return JSON.stringify(e,(n,r)=>r&&typeof r=="object"&&!Array.isArray(r)?Object.keys(r).sort((i,o)=>i.localeCompare(o)).reduce((i,o)=>(i[o]=r[o],i),{}):r)}async function Ln(e,t,n,r){if(n.searchCount++,n.config?.graphqlMaxSearches&&n.searchCount>n.config.graphqlMaxSearches)throw new Error("Maximum number of searches exceeded");let i=r.fieldName,o=i.substring(0,i.length-4),{searchRequest:s,referenceFilter:a}=so(o,e,t);Wr(s,n.config?.graphqlMaxSearches);let c=n.config?.graphqlBatchedSearchSize??0;if(c===0||!a)return a&&ao(s,a),(await n.repo.search(s)).entry?.map(m=>m.resource);let p=xa(s);return(n.searchDataLoaders[p]??=La(n.repo,s,c)).load(a)}function La(e,t,n){return new Sa(async r=>{let i=await e.searchByReference(t,r[0].code,r.map(o=>o.value));return r.map(o=>i[o.value])},{maxBatchSize:n})}function At(e){let t={_count:{type:ce,description:"Specify how many elements to return from a repeating list."},_offset:{type:ce,description:"Specify the offset to start at for a repeating element."},_sort:{type:v,description:"Specify the sort order by comma-separated list of sort rules in priority order."},_id:{type:v,description:"Select resources based on the logical id of the resource."},_lastUpdated:{type:v,description:"Select resources based on the last time they were changed."},_filter:{type:v,description:" The _filter parameter provides a syntax for expressing a set of query expressions on the underlying resources."}},n=ba(e);if(n)for(let[r,i]of Object.entries(n))t[Zr(r)]={type:v,description:i.description};return t}function ei(e,t){return e.fieldNodes.some(n=>n.selectionSet?.selections.some(r=>r.kind===u.FIELD&&r.name.value===t))}function uo(e){return{resourceType:"OperationOutcome",issue:e.map(t=>({severity:"error",code:"invalid",details:{text:t.message}}))}}var po={...xn};function Ft(e,t){let n=po[e];return n||(n=Aa(e,t),po[e]=n),n}function Aa(e,t){let n=lo(e);return new Ae({name:e+t,description:n.description,fields:()=>Fa(e,t)})}function Fa(e,t){let n={};if(Da(e)){let r={description:"The type of resource",type:v};n.resourceType=r}return ka(e,n,t),n}function ka(e,t,n){let r=lo(e);for(let[i,o]of Object.entries(r.elements))for(let s of o.type)Ca(t,i,o,s,n)}function Ca(e,t,n,r,i){let o=r.code;if(o==="Resource")return;(o==="Element"||o==="BackboneElement")&&(o=n.type[0].code);let s={description:n.description,type:Ft(o,i)};n.max>1&&(s.type=new A(new I(Ft(o,i)))),n.min>0&&!t.endsWith("[x]")&&(s.type=new I(s.type));let a=t.split(".").pop().replace("[x]",wa(r.code));e[a]=s}import{capitalize as fo,evalFhirPathTyped as Ma,getDataType as mo,getResourceTypes as ho,getSearchParameters as Pa,isLowerCase as Ua,isReference as $a,isResourceTypeSchema as Va,normalizeOperationOutcome as Ga,OperationOutcomeError as ja,toJsBoolean as Qa,toTypedValue as Ba,tryGetDataType as qa}from"@medplum/core";var wn={...xn};function Ge(e){let t=wn[e];return t||(t=ti(e),wn[e]=t),t}function ti(e){if(e==="ResourceList")return new De({name:"ResourceList",types:()=>ho().map(Ge).filter(n=>!!n),resolveType:tc});let t=mo(e);return new j({name:e,description:t.description,fields:()=>Ya(e)})}function Ya(e){let t={};return Ha(e,t),Ka(e,t),t}function Ha(e,t){let n=mo(e);Va(n)&&(t.resourceType={type:new I(v),description:"Resource Type"}),e==="Reference"&&(t.resource={description:"Reference",type:Ge("ResourceList"),resolve:ec});for(let[r,i]of Object.entries(n.elements))for(let o of i.type)Ja(t,r,i,o)}function Ja(e,t,n,r){let i=r.code;(i==="Element"||i==="BackboneElement")&&(i=n.type[0].code),i==="Resource"&&(i="ResourceList");let o={description:n.description,type:Wa(n,i,t),resolve:Za};n.max>1&&(o.args=za(i));let s=t.split(".").pop().replace("[x]",fo(r.code));e[s]=o}function za(e){let t={_count:{type:ce,description:"Specify how many elements to return from a repeating list."},_offset:{type:ce,description:"Specify the offset to start at for a repeating element."}};if(!Ua(e.charAt(0))){t.fhirpath={type:v,description:"A FHIRPath statement selecting which of the subnodes is to be included"};let n=qa(e);if(n?.elements)for(let[r,i]of Object.entries(n.elements))for(let o of i.type)Xa(t,r,i,o)}return t}function Xa(e,t,n,r){let i=r.code,o=t.replace("[x]",fo(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:v,description:n.description};break}}function Ka(e,t){for(let n of ho()){let r=Ge(n),i=Pa(n),o={},s=0;if(i)for(let[a,c]of Object.entries(i))c.target?.includes(e)&&(o[Zr(a)]={value:a},s++);if(s>0){let a=new Ne({name:e+"_"+n+"_reference",values:o}),c=At(n);c._reference={type:new I(a),description:`Specify which property to use for reverse lookup for ${n}`},t[n+"List"]={type:new A(r),args:c,resolve:Ln}}}}function Wa(e,t,n){let r=Ge(t);return e.max>1&&(r=new A(new I(r))),e.min!==0&&!n.endsWith("[x]")&&(r=new I(r)),r}async function Za(e,t,n,r){let i=e?.[r.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=>Qa(Ma(a,[Ba(l)])))),o&&(p=p.slice(o)),s&&(p=p.slice(0,s)),p}async function ec(e,t,n){if($a(e))try{return await n.dataLoader.load(e)}catch(r){throw new ja(Ga(r),r)}}function tc(e){let t=e?.resourceType;if(t)return Ge(t).name}var uc=new sc,ni;async function go(e,t,n,r){let{query:i,operationName:o,variables:s}=e.body;if(!i)return[kt("Must provide query.")];let a;try{a=Gt(i)}catch{return[kt("GraphQL syntax error.")]}let c=fc(),p=[...ot,bc(n,e.config?.graphqlMaxDepth),Oc(n)],l=vn(c,a,p);if(l.length>0)return[uo(l)];let d=pc(i);if(d&&!n.options?.introspectionEnabled)return[oc];!r?.batch&&!lc(i)&&t.setMode(_n.READER);let m=new cc(g=>t.readReferences(g)),T=d&&uc.get(i);if(!T){let g={repo:t,config:e.config,dataLoader:m,searchCount:0,searchDataLoaders:Object.create(null)};T=await On({schema:c,document:a,contextValue:g,operationName:o,variableValues:s})}return[nc,T,{contentType:rc.JSON}]}function pc(e){return e.includes("query IntrospectionQuery")||e.includes("__schema")}function lc(e){return e.includes("mutation")}function fc(){return ni||(ni=dc()),ni}function dc(){for(let n of yo())wn[n]=ti(n);let e={},t={};for(let n of yo()){let r=Ge(n);e[n]={type:r,args:{id:{type:new I(ge),description:n+" ID"}},resolve:gc},e[n+"List"]={type:new A(r),args:At(n),resolve:Ln},e[n+"Connection"]={type:yc(n,r),args:At(n),resolve:Tc},t[n+"Create"]={type:r,args:mc(n),resolve:Ec},t[n+"Update"]={type:r,args:hc(n),resolve:vc},t[n+"Delete"]={type:r,args:{id:{type:new I(ge),description:n+" ID"}},resolve:Nc}}return new Me({query:new j({name:"QueryType",fields:e}),mutation:new j({name:"MutationType",fields:t})})}function mc(e){return{res:{type:new I(Ft(e,"Create")),description:e+" Create"}}}function hc(e){return{id:{type:new I(ge),description:e+" ID"},res:{type:new I(Ft(e,"Update")),description:e+" Update"}}}function yc(e,t){return new j({name:e+"Connection",fields:{count:{type:ce},offset:{type:ce},pageSize:{type:ce},first:{type:v},previous:{type:v},next:{type:v},last:{type:v},edges:{type:new A(new j({name:e+"ConnectionEdge",fields:{mode:{type:v},score:{type:ue},resource:{type:t}}}))}}})}async function Tc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-10),s=co(o,e,t);ei(r,"count")&&(s.total="accurate"),ei(r,"edges")||(s.count=0),Wr(s,n.config?.graphqlMaxSearches);let a=await n.repo.search(s);return{count:a.total,offset:s.offset??0,pageSize:s.count??ic,edges:a.entry?.map(c=>({mode:c.search?.mode,score:c.search?.score,resource:c.resource}))}}async function gc(e,t,n,r){try{return await n.dataLoader.load({reference:`${r.fieldName}/${t.id}`})}catch(i){throw new Dn(ac(i),i)}}async function Ec(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-6),s=t.res;if(s.resourceType!==o)throw new Dn(kt("Invalid resourceType"));return n.repo.createResource(To(s))}async function vc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-6),s=t.res,a=t.id;if(s.resourceType!==o)throw new Dn(kt("Invalid resourceType"));if(a!==s.id)throw new Dn(kt("Invalid ID"));return n.repo.updateResource(To(s))}async function Nc(e,t,n,r){let i=r.fieldName,o=i.substring(0,i.length-6);await n.repo.deleteResource(o,t.id)}var Ic=12,bc=(e,t=Ic)=>n=>new ri(n,e,t),ri=class{constructor(t,n,r){this.context=t,this.router=n,this.fragmentDepths=Object.create(null),this.maxDepth=r}OperationDefinition(t){let n=this.getDepth(...t.selectionSet.selections);n.depth>this.maxDepth&&this.router.log("warn","Query max depth too high",{depth:n.depth,limit:this.maxDepth,query:t.loc?.source?.body})}getDepth(...t){let n={depth:-1};for(let r of t){let i={depth:0};if(r.kind===u.FIELD)r.selectionSet?.selections?(i=this.getDepth(...r.selectionSet.selections),i.depth+=1):i={depth:0,node:r};else if(r.kind===u.FRAGMENT_SPREAD){let o=r.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 r.kind===u.INLINE_FRAGMENT&&(i=this.getDepth(...r.selectionSet.selections));if(i.depth>this.maxDepth)return i;i.depth>n.depth&&(n=i)}return n}},Rc=1e4,Oc=(e,t)=>n=>new ii(n,e,t),ii=class{constructor(t,n,r){this.context=t,this.maxCost=r?.maxCost??Rc,this.debug=r?.debug??!1,this.router=n,this.fragmentCosts=Object.create(null)}OperationDefinition(t){let n=0;for(let r of t.selectionSet.selections){let i=performance.now(),o=this.calculateCost(r);n+=o,this.log(r.kind,"node has final cost",o,"(",performance.now()-i,"ms)"),n>this.maxCost&&this.router.log("warn","GraphQL query too complex",{cost:n,limit:this.maxCost,query:t.loc?.source?.body})}}calculateCost(...t){let n=0;for(let r of t){if(r.kind===u.FIELD&&r.selectionSet){let i=0,o=1;Sc(r)?(this.log("Found search field",r.name.value),i=8,o=this.getCount(r.arguments)??20):_c(r)&&(this.log("Found linked resource"),i=1,o=2);let s=i+o*this.calculateCost(...r.selectionSet.selections);s&&this.log("Field",r.name.value,"costs",s),n+=s}else if(r.kind===u.FRAGMENT_SPREAD){let i=r.name.value,o=this.context.getFragment(i),s=this.fragmentCosts[i];if(s!==void 0)this.log("Fragment",i,"costs",s,"(cached)"),n+=s;else if(o){let a=this.calculateCost(...o.selectionSet.selections);this.fragmentCosts[i]=a,this.log("Fragment",i,"costs",a),n+=a}}else if(r.kind===u.INLINE_FRAGMENT){let i=this.calculateCost(...r.selectionSet.selections);this.log("Inline fragment on",r.typeCondition?.name.value,"costs",i),n+=i}if(n>this.maxCost)return n}return n}getCount(t){let n=t?.find(r=>r.name.value==="_count");if(n?.value.kind===u.INT)return parseInt(n.value.value,10)}log(...t){this.debug&&console.log(...t)}};function Sc(e){return e.name.value.endsWith("List")}function _c(e){return e.name.value==="resource"}var An=class{constructor(){this.routes=[]}add(t,n,r,i){let o=n.split("/").filter(s=>!!s).map(s=>s.startsWith(":")?{value:s.substring(1),param:!0}:{value:s});this.routes.push({method:t,path:o,handler:r,data:i})}find(t,n){let r=n.indexOf("?"),i=r>-1,o=n.substring(0,i?r:n.length).split("/").filter(Boolean),s,a=-1;for(let c of this.routes){let p=xc(c,t,o);p>a&&(s=c,a=p)}if(s)return{handler:s.handler,path:o.join("/"),params:Lc(s,o),query:i?wc(n):void 0,data:s.data}}};function xc(e,t,n){if(t!==e.method||n.length!==e.path.length)return-1;let r=0;for(let i=0;i<n.length;i++)if(!e.path[i].param){if(n[i]!==e.path[i].value)return-1;r++}return r}function Lc(e,t){let n=Object.create(null);for(let r=0;r<t.length;r++)e.path[r].param&&(n[e.path[r].value]=t[r]);return n}function wc(e){let t=new URL(e,"https://example.com/"),n=Object.create(null),r=t.searchParams;for(let i of r.keys()){let o=r.getAll(i);n[i]=o.length===1?o[0]:o}return n}async function Pc(e,t,n){let r=e.body;if(r.resourceType!=="Bundle")return[Ie("Not a bundle")];let i=await Cn(e,t,n,r);return[fe,i]}async function Uc(e,t,n,r){oi(e,t,r);let{resourceType:i}=e.params,o=await t.search(je(i,e.query));return[fe,o]}async function $c(e,t,n,r){oi(e,t,r);let i=je("MultipleTypes",e.query);if(!i.types||i.types.length===0)return[Ie("No types specified")];let o=await t.search(i);return[fe,o]}async function Vc(e,t,n,r){oi(e,t,r);let{resourceType:i}=e.params,o=e.body,s=await t.search(je(i,o));return[fe,s]}function oi(e,t,n){!n?.batch&&e.config?.searchOnReader&&t.setMode(_n.READER)}async function Gc(e,t,n,r){let{resourceType:i}=e.params,o=e.body,s=!!r?.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=Mc(e.headers["if-none-exist"]),c=await t.conditionalCreate(o,je(`${i}?${a}`),{assignedId:s});return[c.outcome,c.resource]}return jc(i,o,t,{assignedId:s})}async function jc(e,t,n,r){if(t.resourceType!==e)return[Ie(`Incorrect resource type: expected ${e}, but found ${t.resourceType||"<EMPTY>"}`)];let i=await n.createResource(t,r);return[Fc,i]}async function Qc(e,t){let{resourceType:n,id:r}=e.params,i=await t.readResource(n,r);return[fe,i]}async function Bc(e,t){let{resourceType:n,id:r}=e.params,i=await t.readHistory(n,r);return[fe,i]}async function qc(e,t){let{resourceType:n,id:r,vid:i}=e.params,o=await t.readVersion(n,r,i);return[fe,o]}async function Yc(e,t){let{resourceType:n,id:r}=e.params,i=e.body;return Hc(n,r,i,t,{ifMatch:Zc(e.headers?.["if-match"])})}async function Hc(e,t,n,r,i){if(n.resourceType!==e)return[Ie("Incorrect resource type")];if(n.id!==t)return[Ie("Incorrect resource ID")];let o=await r.updateResource(n,i);return[fe,o]}async function Jc(e,t,n,r){let{resourceType:i}=e.params,o=e.body,s=je(i,e.query),a=await t.conditionalUpdate(o,s,{assignedId:r?.batch});return[a.outcome,a.resource]}async function zc(e,t){let{resourceType:n,id:r}=e.params;return await t.deleteResource(n,r),[fe]}async function Xc(e,t){let{resourceType:n}=e.params,r=je(n,e.query);return await t.conditionalDelete(r),[fe]}async function Kc(e,t){let{resourceType:n,id:r}=e.params,i=e.body;if(!i)return[Ie("Empty patch body")];if(!Array.isArray(i))return[Ie("Patch body must be an array")];let o=await t.patchResource(n,r,i);return[fe,o]}async function Wc(e,t){let{resourceType:n}=e.params,r=e.body;if(!r)return[Ie("Empty patch body")];if(!Array.isArray(r))return[Ie("Patch body must be an array")];let i=je(n,e.query),o=await t.conditionalPatch(i,r);return[fe,o]}var Eo=class extends Dc{constructor(n={}){super();this.router=new An;this.options=n,this.router.add("GET","",$c,{interaction:"search-system"}),this.router.add("POST","",Pc,{interaction:"batch"}),this.router.add("GET",":resourceType",Uc,{interaction:"search-type"}),this.router.add("POST",":resourceType/_search",Vc,{interaction:"search-type"}),this.router.add("POST",":resourceType",Gc,{interaction:"create"}),this.router.add("GET",":resourceType/:id",Qc,{interaction:"read"}),this.router.add("GET",":resourceType/:id/_history",Bc,{interaction:"history-instance"}),this.router.add("GET",":resourceType/:id/_history/:vid",qc,{interaction:"vread"}),this.router.add("PUT",":resourceType/:id",Yc,{interaction:"update"}),this.router.add("PUT",":resourceType",Jc,{interaction:"update"}),this.router.add("DELETE",":resourceType/:id",zc,{interaction:"delete"}),this.router.add("DELETE",":resourceType",Xc,{interaction:"delete"}),this.router.add("PATCH",":resourceType/:id",Kc,{interaction:"patch"}),this.router.add("PATCH",":resourceType",Wc,{interaction:"patch"}),this.router.add("POST","$graphql",go,{interaction:"operation"})}add(n,r,i,o){this.router.add(n,r,i,{interaction:o??"operation"})}find(n,r){return this.router.find(n,r)}async handleRequest(n,r){let i=n.url;if(n.pathname)throw new Ac(Ie("FhirRequest must specify url instead of pathname"));let o=this.find(n.method,i);if(!o)return[Cc];let{handler:s,path:a,params:c,query:p}=o;n.params=c,n.pathname=a,p&&(n.query=p);try{return await s(n,r,this)}catch(l){return[kc(l)]}}log(n,r,i){let o={type:n,message:r,data:i};this.dispatchEvent(o)}};function Zc(e){if(!e)return;let t=/"([^"]+)"/.exec(e);return t?t[1]:void 0}function Mg(e,t,n){return{method:e,url:t,pathname:"",query:{},params:{},body:n}}export{Kr as FhirRepository,Eo as FhirRouter,oo as MemoryRepository,_n as RepositoryMode,An as Router,jc as createResourceImpl,Mg as makeSimpleRequest,Cn as processBatch,Hc as updateResourceImpl};
55
55
  //# sourceMappingURL=index.mjs.map