@medplum/fhir-router 5.0.10 → 5.0.12
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.
- package/dist/cjs/index.cjs +3 -3
- package/dist/cjs/index.cjs.map +3 -3
- package/dist/cjs/index.d.ts +3 -1
- package/dist/esm/index.d.ts +3 -1
- package/dist/esm/index.mjs +12 -12
- package/dist/esm/index.mjs.map +3 -3
- package/package.json +5 -5
package/dist/cjs/index.cjs
CHANGED
|
@@ -19,7 +19,7 @@ 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 Je=class{constructor(t,r="GraphQL request",n={line:1,column:1}){typeof t=="string"||x(!1,`Body must be a string. Received: ${y(t)}.`),this.body=t,this.name=r,this.locationOffset=n,this.locationOffset.line>0||x(!1,"line in locationOffset is 1-indexed and must be positive."),this.locationOffset.column>0||x(!1,"column in locationOffset is 1-indexed and must be positive.")}get[Symbol.toStringTag](){return"Source"}};function Ei(e){return ne(e,Je)}function jt(e,t){let r=new kr(e,t),n=r.parseDocument();return Object.defineProperty(n,"tokenCount",{enumerable:!1,value:r.tokenCount}),n}var kr=class{constructor(t,r={}){let{lexer:n,...i}=r;if(n)this._lexer=n;else{let o=Ei(t)?t:new Je(t);this._lexer=new dt(o)}this._options=i,this._tokenCounter=0}get tokenCount(){return this._tokenCounter}parseName(){let t=this.expectToken(m.NAME);return this.node(t,{kind:u.NAME,value:t.value})}parseDocument(){return this.node(this._lexer.token,{kind:u.DOCUMENT,definitions:this.many(m.SOF,this.parseDefinition,m.EOF)})}parseDefinition(){if(this.peek(m.BRACE_L))return this.parseOperationDefinition();let t=this.peekDescription(),r=t?this._lexer.lookahead():this._lexer.token;if(t&&r.kind===m.BRACE_L)throw G(this._lexer.source,this._lexer.token.start,"Unexpected description, descriptions are not supported on shorthand queries.");if(r.kind===m.NAME){switch(r.value){case"schema":return this.parseSchemaDefinition();case"scalar":return this.parseScalarTypeDefinition();case"type":return this.parseObjectTypeDefinition();case"interface":return this.parseInterfaceTypeDefinition();case"union":return this.parseUnionTypeDefinition();case"enum":return this.parseEnumTypeDefinition();case"input":return this.parseInputObjectTypeDefinition();case"directive":return this.parseDirectiveDefinition()}switch(r.value){case"query":case"mutation":case"subscription":return this.parseOperationDefinition();case"fragment":return this.parseFragmentDefinition()}if(t)throw G(this._lexer.source,this._lexer.token.start,"Unexpected description, only GraphQL definitions support descriptions.");switch(r.value){case"extend":return this.parseTypeSystemExtension()}}throw this.unexpected(r)}parseOperationDefinition(){let t=this._lexer.token;if(this.peek(m.BRACE_L))return this.node(t,{kind:u.OPERATION_DEFINITION,operation:$.QUERY,description:void 0,name:void 0,variableDefinitions:[],directives:[],selectionSet:this.parseSelectionSet()});let r=this.parseDescription(),n=this.parseOperationType(),i;return this.peek(m.NAME)&&(i=this.parseName()),this.node(t,{kind:u.OPERATION_DEFINITION,operation:n,description:r,name:i,variableDefinitions:this.parseVariableDefinitions(),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseOperationType(){let t=this.expectToken(m.NAME);switch(t.value){case"query":return $.QUERY;case"mutation":return $.MUTATION;case"subscription":return $.SUBSCRIPTION}throw this.unexpected(t)}parseVariableDefinitions(){return this.optionalMany(m.PAREN_L,this.parseVariableDefinition,m.PAREN_R)}parseVariableDefinition(){return this.node(this._lexer.token,{kind:u.VARIABLE_DEFINITION,description:this.parseDescription(),variable:this.parseVariable(),type:(this.expectToken(m.COLON),this.parseTypeReference()),defaultValue:this.expectOptionalToken(m.EQUALS)?this.parseConstValueLiteral():void 0,directives:this.parseConstDirectives()})}parseVariable(){let t=this._lexer.token;return this.expectToken(m.DOLLAR),this.node(t,{kind:u.VARIABLE,name:this.parseName()})}parseSelectionSet(){return this.node(this._lexer.token,{kind:u.SELECTION_SET,selections:this.many(m.BRACE_L,this.parseSelection,m.BRACE_R)})}parseSelection(){return this.peek(m.SPREAD)?this.parseFragment():this.parseField()}parseField(){let t=this._lexer.token,r=this.parseName(),n,i;return this.expectOptionalToken(m.COLON)?(n=r,i=this.parseName()):i=r,this.node(t,{kind:u.FIELD,alias:n,name:i,arguments:this.parseArguments(!1),directives:this.parseDirectives(!1),selectionSet:this.peek(m.BRACE_L)?this.parseSelectionSet():void 0})}parseArguments(t){let r=t?this.parseConstArgument:this.parseArgument;return this.optionalMany(m.PAREN_L,r,m.PAREN_R)}parseArgument(t=!1){let r=this._lexer.token,n=this.parseName();return this.expectToken(m.COLON),this.node(r,{kind:u.ARGUMENT,name:n,value:this.parseValueLiteral(t)})}parseConstArgument(){return this.parseArgument(!0)}parseFragment(){let t=this._lexer.token;this.expectToken(m.SPREAD);let r=this.expectOptionalKeyword("on");return!r&&this.peek(m.NAME)?this.node(t,{kind:u.FRAGMENT_SPREAD,name:this.parseFragmentName(),directives:this.parseDirectives(!1)}):this.node(t,{kind:u.INLINE_FRAGMENT,typeCondition:r?this.parseNamedType():void 0,directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseFragmentDefinition(){let t=this._lexer.token,r=this.parseDescription();return this.expectKeyword("fragment"),this._options.allowLegacyFragmentVariables===!0?this.node(t,{kind:u.FRAGMENT_DEFINITION,description:r,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,description:r,name:this.parseFragmentName(),typeCondition:(this.expectKeyword("on"),this.parseNamedType()),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseFragmentName(){if(this._lexer.token.value==="on")throw this.unexpected();return this.parseName()}parseValueLiteral(t){let r=this._lexer.token;switch(r.kind){case m.BRACKET_L:return this.parseList(t);case m.BRACE_L:return this.parseObject(t);case m.INT:return this.advanceLexer(),this.node(r,{kind:u.INT,value:r.value});case m.FLOAT:return this.advanceLexer(),this.node(r,{kind:u.FLOAT,value:r.value});case m.STRING:case m.BLOCK_STRING:return this.parseStringLiteral();case m.NAME:switch(this.advanceLexer(),r.value){case"true":return this.node(r,{kind:u.BOOLEAN,value:!0});case"false":return this.node(r,{kind:u.BOOLEAN,value:!1});case"null":return this.node(r,{kind:u.NULL});default:return this.node(r,{kind:u.ENUM,value:r.value})}case m.DOLLAR:if(t)if(this.expectToken(m.DOLLAR),this._lexer.token.kind===m.NAME){let n=this._lexer.token.value;throw G(this._lexer.source,r.start,`Unexpected variable "$${n}" in constant value.`)}else throw this.unexpected(r);return this.parseVariable();default:throw this.unexpected()}}parseConstValueLiteral(){return this.parseValueLiteral(!0)}parseStringLiteral(){let t=this._lexer.token;return this.advanceLexer(),this.node(t,{kind:u.STRING,value:t.value,block:t.kind===m.BLOCK_STRING})}parseList(t){let r=()=>this.parseValueLiteral(t);return this.node(this._lexer.token,{kind:u.LIST,values:this.any(m.BRACKET_L,r,m.BRACKET_R)})}parseObject(t){let r=()=>this.parseObjectField(t);return this.node(this._lexer.token,{kind:u.OBJECT,fields:this.any(m.BRACE_L,r,m.BRACE_R)})}parseObjectField(t){let r=this._lexer.token,n=this.parseName();return this.expectToken(m.COLON),this.node(r,{kind:u.OBJECT_FIELD,name:n,value:this.parseValueLiteral(t)})}parseDirectives(t){let r=[];for(;this.peek(m.AT);)r.push(this.parseDirective(t));return r}parseConstDirectives(){return this.parseDirectives(!0)}parseDirective(t){let r=this._lexer.token;return this.expectToken(m.AT),this.node(r,{kind:u.DIRECTIVE,name:this.parseName(),arguments:this.parseArguments(t)})}parseTypeReference(){let t=this._lexer.token,r;if(this.expectOptionalToken(m.BRACKET_L)){let n=this.parseTypeReference();this.expectToken(m.BRACKET_R),r=this.node(t,{kind:u.LIST_TYPE,type:n})}else r=this.parseNamedType();return this.expectOptionalToken(m.BANG)?this.node(t,{kind:u.NON_NULL_TYPE,type:r}):r}parseNamedType(){return this.node(this._lexer.token,{kind:u.NAMED_TYPE,name:this.parseName()})}peekDescription(){return this.peek(m.STRING)||this.peek(m.BLOCK_STRING)}parseDescription(){if(this.peekDescription())return this.parseStringLiteral()}parseSchemaDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("schema");let n=this.parseConstDirectives(),i=this.many(m.BRACE_L,this.parseOperationTypeDefinition,m.BRACE_R);return this.node(t,{kind:u.SCHEMA_DEFINITION,description:r,directives:n,operationTypes:i})}parseOperationTypeDefinition(){let t=this._lexer.token,r=this.parseOperationType();this.expectToken(m.COLON);let n=this.parseNamedType();return this.node(t,{kind:u.OPERATION_TYPE_DEFINITION,operation:r,type:n})}parseScalarTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("scalar");let n=this.parseName(),i=this.parseConstDirectives();return this.node(t,{kind:u.SCALAR_TYPE_DEFINITION,description:r,name:n,directives:i})}parseObjectTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("type");let n=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:u.OBJECT_TYPE_DEFINITION,description:r,name:n,interfaces:i,directives:o,fields:s})}parseImplementsInterfaces(){return this.expectOptionalKeyword("implements")?this.delimitedMany(m.AMP,this.parseNamedType):[]}parseFieldsDefinition(){return this.optionalMany(m.BRACE_L,this.parseFieldDefinition,m.BRACE_R)}parseFieldDefinition(){let t=this._lexer.token,r=this.parseDescription(),n=this.parseName(),i=this.parseArgumentDefs();this.expectToken(m.COLON);let o=this.parseTypeReference(),s=this.parseConstDirectives();return this.node(t,{kind:u.FIELD_DEFINITION,description:r,name:n,arguments:i,type:o,directives:s})}parseArgumentDefs(){return this.optionalMany(m.PAREN_L,this.parseInputValueDef,m.PAREN_R)}parseInputValueDef(){let t=this._lexer.token,r=this.parseDescription(),n=this.parseName();this.expectToken(m.COLON);let i=this.parseTypeReference(),o;this.expectOptionalToken(m.EQUALS)&&(o=this.parseConstValueLiteral());let s=this.parseConstDirectives();return this.node(t,{kind:u.INPUT_VALUE_DEFINITION,description:r,name:n,type:i,defaultValue:o,directives:s})}parseInterfaceTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("interface");let n=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:u.INTERFACE_TYPE_DEFINITION,description:r,name:n,interfaces:i,directives:o,fields:s})}parseUnionTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("union");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseUnionMemberTypes();return this.node(t,{kind:u.UNION_TYPE_DEFINITION,description:r,name:n,directives:i,types:o})}parseUnionMemberTypes(){return this.expectOptionalToken(m.EQUALS)?this.delimitedMany(m.PIPE,this.parseNamedType):[]}parseEnumTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("enum");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseEnumValuesDefinition();return this.node(t,{kind:u.ENUM_TYPE_DEFINITION,description:r,name:n,directives:i,values:o})}parseEnumValuesDefinition(){return this.optionalMany(m.BRACE_L,this.parseEnumValueDefinition,m.BRACE_R)}parseEnumValueDefinition(){let t=this._lexer.token,r=this.parseDescription(),n=this.parseEnumValueName(),i=this.parseConstDirectives();return this.node(t,{kind:u.ENUM_VALUE_DEFINITION,description:r,name:n,directives:i})}parseEnumValueName(){if(this._lexer.token.value==="true"||this._lexer.token.value==="false"||this._lexer.token.value==="null")throw G(this._lexer.source,this._lexer.token.start,`${Gt(this._lexer.token)} is reserved and cannot be used for an enum value.`);return this.parseName()}parseInputObjectTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("input");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseInputFieldsDefinition();return this.node(t,{kind:u.INPUT_OBJECT_TYPE_DEFINITION,description:r,name:n,directives:i,fields:o})}parseInputFieldsDefinition(){return this.optionalMany(m.BRACE_L,this.parseInputValueDef,m.BRACE_R)}parseTypeSystemExtension(){let t=this._lexer.lookahead();if(t.kind===m.NAME)switch(t.value){case"schema":return this.parseSchemaExtension();case"scalar":return this.parseScalarTypeExtension();case"type":return this.parseObjectTypeExtension();case"interface":return this.parseInterfaceTypeExtension();case"union":return this.parseUnionTypeExtension();case"enum":return this.parseEnumTypeExtension();case"input":return this.parseInputObjectTypeExtension()}throw this.unexpected(t)}parseSchemaExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("schema");let r=this.parseConstDirectives(),n=this.optionalMany(m.BRACE_L,this.parseOperationTypeDefinition,m.BRACE_R);if(r.length===0&&n.length===0)throw this.unexpected();return this.node(t,{kind:u.SCHEMA_EXTENSION,directives:r,operationTypes:n})}parseScalarTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("scalar");let r=this.parseName(),n=this.parseConstDirectives();if(n.length===0)throw this.unexpected();return this.node(t,{kind:u.SCALAR_TYPE_EXTENSION,name:r,directives:n})}parseObjectTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("type");let r=this.parseName(),n=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(n.length===0&&i.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:u.OBJECT_TYPE_EXTENSION,name:r,interfaces:n,directives:i,fields:o})}parseInterfaceTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("interface");let r=this.parseName(),n=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(n.length===0&&i.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:u.INTERFACE_TYPE_EXTENSION,name:r,interfaces:n,directives:i,fields:o})}parseUnionTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("union");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseUnionMemberTypes();if(n.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.UNION_TYPE_EXTENSION,name:r,directives:n,types:i})}parseEnumTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("enum");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseEnumValuesDefinition();if(n.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.ENUM_TYPE_EXTENSION,name:r,directives:n,values:i})}parseInputObjectTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("input");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseInputFieldsDefinition();if(n.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.INPUT_OBJECT_TYPE_EXTENSION,name:r,directives:n,fields:i})}parseDirectiveDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("directive"),this.expectToken(m.AT);let n=this.parseName(),i=this.parseArgumentDefs(),o=this.expectOptionalKeyword("repeatable");this.expectKeyword("on");let s=this.parseDirectiveLocations();return this.node(t,{kind:u.DIRECTIVE_DEFINITION,description:r,name:n,arguments:i,repeatable:o,locations:s})}parseDirectiveLocations(){return this.delimitedMany(m.PIPE,this.parseDirectiveLocation)}parseDirectiveLocation(){let t=this._lexer.token,r=this.parseName();if(Object.prototype.hasOwnProperty.call(b,r.value))return r;throw this.unexpected(t)}parseSchemaCoordinate(){let t=this._lexer.token,r=this.expectOptionalToken(m.AT),n=this.parseName(),i;!r&&this.expectOptionalToken(m.DOT)&&(i=this.parseName());let o;return(r||i)&&this.expectOptionalToken(m.PAREN_L)&&(o=this.parseName(),this.expectToken(m.COLON),this.expectToken(m.PAREN_R)),r?o?this.node(t,{kind:u.DIRECTIVE_ARGUMENT_COORDINATE,name:n,argumentName:o}):this.node(t,{kind:u.DIRECTIVE_COORDINATE,name:n}):i?o?this.node(t,{kind:u.ARGUMENT_COORDINATE,name:n,fieldName:i,argumentName:o}):this.node(t,{kind:u.MEMBER_COORDINATE,name:n,memberName:i}):this.node(t,{kind:u.TYPE_COORDINATE,name:n})}node(t,r){return this._options.noLocation!==!0&&(r.loc=new ut(t,this._lexer.lastToken,this._lexer.source)),r}peek(t){return this._lexer.token.kind===t}expectToken(t){let r=this._lexer.token;if(r.kind===t)return this.advanceLexer(),r;throw G(this._lexer.source,r.start,`Expected ${vi(t)}, found ${Gt(r)}.`)}expectOptionalToken(t){return this._lexer.token.kind===t?(this.advanceLexer(),!0):!1}expectKeyword(t){let r=this._lexer.token;if(r.kind===m.NAME&&r.value===t)this.advanceLexer();else throw G(this._lexer.source,r.start,`Expected "${t}", found ${Gt(r)}.`)}expectOptionalKeyword(t){let r=this._lexer.token;return r.kind===m.NAME&&r.value===t?(this.advanceLexer(),!0):!1}unexpected(t){let r=t??this._lexer.token;return G(this._lexer.source,r.start,`Unexpected ${Gt(r)}.`)}any(t,r,n){this.expectToken(t);let i=[];for(;!this.expectOptionalToken(n);)i.push(r.call(this));return i}optionalMany(t,r,n){if(this.expectOptionalToken(t)){let i=[];do i.push(r.call(this));while(!this.expectOptionalToken(n));return i}return[]}many(t,r,n){this.expectToken(t);let i=[];do i.push(r.call(this));while(!this.expectOptionalToken(n));return i}delimitedMany(t,r){this.expectOptionalToken(t);let n=[];do n.push(r.call(this));while(this.expectOptionalToken(t));return n}advanceLexer(){let{maxTokens:t}=this._options,r=this._lexer.advance();if(r.kind!==m.EOF&&(++this._tokenCounter,t!==void 0&&this._tokenCounter>t))throw G(this._lexer.source,r.start,`Document contains more that ${t} tokens. Parsing aborted.`)}};function Gt(e){let t=e.value;return vi(e.kind)+(t!=null?` "${t}"`:"")}function vi(e){return yi(e)?`"${e}"`:e}function te(e,t){let[r,n]=t?[e,t]:[void 0,e],i=" Did you mean ";r&&(i+=r+" ");let o=n.map(c=>`"${c}"`);switch(o.length){case 0:return"";case 1:return i+o[0]+"?";case 2:return i+o[0]+" or "+o[1]+"?"}let s=o.slice(0,5),a=s.pop();return i+s.join(", ")+", or "+a+"?"}function Mr(e){return e}function ge(e,t){let r=Object.create(null);for(let n of e)r[t(n)]=n;return r}function mt(e,t,r){let n=Object.create(null);for(let i of e)n[t(i)]=r(i);return n}function ht(e,t){let r=Object.create(null);for(let n of Object.keys(e))r[n]=t(e[n],n);return r}function ze(e,t){let r=0,n=0;for(;r<e.length&&n<t.length;){let i=e.charCodeAt(r),o=t.charCodeAt(n);if(Qt(i)&&Qt(o)){let s=0;do++r,s=s*10+i-Pr,i=e.charCodeAt(r);while(Qt(i)&&s>0);let a=0;do++n,a=a*10+o-Pr,o=t.charCodeAt(n);while(Qt(o)&&a>0);if(s<a)return-1;if(s>a)return 1}else{if(i<o)return-1;if(i>o)return 1;++r,++n}}return e.length-t.length}var Pr=48,Go=57;function Qt(e){return!isNaN(e)&&Pr<=e&&e<=Go}function ie(e,t){let r=Object.create(null),n=new Ur(e),i=Math.floor(e.length*.4)+1;for(let o of t){let s=n.measure(o,i);s!==void 0&&(r[o]=s)}return Object.keys(r).sort((o,s)=>{let a=r[o]-r[s];return a!==0?a:ze(o,s)})}var Ur=class{constructor(t){this._input=t,this._inputLowerCase=t.toLowerCase(),this._inputArray=Ni(this._inputLowerCase),this._rows=[new Array(t.length+1).fill(0),new Array(t.length+1).fill(0),new Array(t.length+1).fill(0)]}measure(t,r){if(this._input===t)return 0;let n=t.toLowerCase();if(this._inputLowerCase===n)return 1;let i=Ni(n),o=this._inputArray;if(i.length<o.length){let l=i;i=o,o=l}let s=i.length,a=o.length;if(s-a>r)return;let c=this._rows;for(let l=0;l<=a;l++)c[0][l]=l;for(let l=1;l<=s;l++){let d=c[(l-1)%3],h=c[l%3],T=h[0]=l;for(let g=1;g<=a;g++){let P=i[l-1]===o[g-1]?0:1,ee=Math.min(d[g]+1,h[g-1]+1,d[g-1]+P);if(l>1&&g>1&&i[l-1]===o[g-2]&&i[l-2]===o[g-1]){let z=c[(l-2)%3][g-2];ee=Math.min(ee,z+1)}ee<T&&(T=ee),h[g]=ee}if(T>r)return}let p=c[s%3][a];return p<=r?p:void 0}};function Ni(e){let t=e.length,r=new Array(t);for(let n=0;n<t;++n)r[n]=e.charCodeAt(n);return r}function oe(e){if(e==null)return Object.create(null);if(Object.getPrototypeOf(e)===null)return e;let t=Object.create(null);for(let[r,n]of Object.entries(e))t[r]=n;return t}function Ii(e){return`"${e.replace(jo,Qo)}"`}var jo=/[\x00-\x1f\x22\x5c\x7f-\x9f]/g;function Qo(e){return Bo[e.charCodeAt(0)]}var Bo=["\\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 Xe=Object.freeze({});function Ae(e,t,r=Fr){let n=new Map;for(let z of Object.values(u))n.set(z,We(t,z));let i,o=Array.isArray(e),s=[e],a=-1,c=[],p=e,l,d,h=[],T=[];do{a++;let z=a===s.length,de=z&&c.length!==0;if(z){if(l=T.length===0?void 0:h[h.length-1],p=d,d=T.pop(),de)if(o){p=p.slice();let Te=0;for(let[wr,si]of c){let ai=wr-Te;si===null?(p.splice(ai,1),Te++):p[ai]=si}}else{p={...p};for(let[Te,wr]of c)p[Te]=wr}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;h.push(l)}let ce;if(!Array.isArray(p)){var g,P;pt(p)||x(!1,`Invalid AST Node: ${y(p)}.`);let Te=z?(g=n.get(p.kind))===null||g===void 0?void 0:g.leave:(P=n.get(p.kind))===null||P===void 0?void 0:P.enter;if(ce=Te?.call(t,p,l,d,h,T),ce===Xe)break;if(ce===!1){if(!z){h.pop();continue}}else if(ce!==void 0&&(c.push([l,ce]),!z))if(pt(ce))p=ce;else{h.pop();continue}}if(ce===void 0&&de&&c.push([l,p]),z)h.pop();else{var ee;i={inArray:o,index:a,keys:s,edits:c,prev:i},o=Array.isArray(p),s=o?p:(ee=r[p.kind])!==null&&ee!==void 0?ee:[],a=-1,c=[],d&&T.push(d),d=p}}while(i!==void 0);return c.length!==0?c[c.length-1][1]:e}function $r(e){let t=new Array(e.length).fill(null),r=Object.create(null);for(let n of Object.values(u)){let i=!1,o=new Array(e.length).fill(void 0),s=new Array(e.length).fill(void 0);for(let c=0;c<e.length;++c){let{enter:p,leave:l}=We(e[c],n);i||(i=p!=null||l!=null),o[c]=p,s[c]=l}if(!i)continue;let a={enter(...c){let p=c[0];for(let d=0;d<e.length;d++)if(t[d]===null){var l;let h=(l=o[d])===null||l===void 0?void 0:l.apply(e[d],c);if(h===!1)t[d]=p;else if(h===Xe)t[d]=Xe;else if(h!==void 0)return h}},leave(...c){let p=c[0];for(let d=0;d<e.length;d++)if(t[d]===null){var l;let h=(l=s[d])===null||l===void 0?void 0:l.apply(e[d],c);if(h===Xe)t[d]=Xe;else if(h!==void 0&&h!==!1)return h}else t[d]===p&&(t[d]=null)}};r[n]=a}return r}function We(e,t){let r=e[t];return typeof r=="object"?r:typeof r=="function"?{enter:r,leave:void 0}:{enter:e.enter,leave:e.leave}}function F(e){return Ae(e,Yo)}var qo=80,Yo={Name:{leave:e=>e.value},Variable:{leave:e=>"$"+e.name},Document:{leave:e=>v(e.definitions,`
|
|
22
|
+
spurious results.`)}}return!1};var Je=class{constructor(t,r="GraphQL request",n={line:1,column:1}){typeof t=="string"||x(!1,`Body must be a string. Received: ${y(t)}.`),this.body=t,this.name=r,this.locationOffset=n,this.locationOffset.line>0||x(!1,"line in locationOffset is 1-indexed and must be positive."),this.locationOffset.column>0||x(!1,"column in locationOffset is 1-indexed and must be positive.")}get[Symbol.toStringTag](){return"Source"}};function Ei(e){return ne(e,Je)}function jt(e,t){let r=new kr(e,t),n=r.parseDocument();return Object.defineProperty(n,"tokenCount",{enumerable:!1,value:r.tokenCount}),n}var kr=class{constructor(t,r={}){let{lexer:n,...i}=r;if(n)this._lexer=n;else{let o=Ei(t)?t:new Je(t);this._lexer=new dt(o)}this._options=i,this._tokenCounter=0}get tokenCount(){return this._tokenCounter}parseName(){let t=this.expectToken(m.NAME);return this.node(t,{kind:u.NAME,value:t.value})}parseDocument(){return this.node(this._lexer.token,{kind:u.DOCUMENT,definitions:this.many(m.SOF,this.parseDefinition,m.EOF)})}parseDefinition(){if(this.peek(m.BRACE_L))return this.parseOperationDefinition();let t=this.peekDescription(),r=t?this._lexer.lookahead():this._lexer.token;if(t&&r.kind===m.BRACE_L)throw G(this._lexer.source,this._lexer.token.start,"Unexpected description, descriptions are not supported on shorthand queries.");if(r.kind===m.NAME){switch(r.value){case"schema":return this.parseSchemaDefinition();case"scalar":return this.parseScalarTypeDefinition();case"type":return this.parseObjectTypeDefinition();case"interface":return this.parseInterfaceTypeDefinition();case"union":return this.parseUnionTypeDefinition();case"enum":return this.parseEnumTypeDefinition();case"input":return this.parseInputObjectTypeDefinition();case"directive":return this.parseDirectiveDefinition()}switch(r.value){case"query":case"mutation":case"subscription":return this.parseOperationDefinition();case"fragment":return this.parseFragmentDefinition()}if(t)throw G(this._lexer.source,this._lexer.token.start,"Unexpected description, only GraphQL definitions support descriptions.");if(r.value==="extend")return this.parseTypeSystemExtension()}throw this.unexpected(r)}parseOperationDefinition(){let t=this._lexer.token;if(this.peek(m.BRACE_L))return this.node(t,{kind:u.OPERATION_DEFINITION,operation:$.QUERY,description:void 0,name:void 0,variableDefinitions:[],directives:[],selectionSet:this.parseSelectionSet()});let r=this.parseDescription(),n=this.parseOperationType(),i;return this.peek(m.NAME)&&(i=this.parseName()),this.node(t,{kind:u.OPERATION_DEFINITION,operation:n,description:r,name:i,variableDefinitions:this.parseVariableDefinitions(),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseOperationType(){let t=this.expectToken(m.NAME);switch(t.value){case"query":return $.QUERY;case"mutation":return $.MUTATION;case"subscription":return $.SUBSCRIPTION}throw this.unexpected(t)}parseVariableDefinitions(){return this.optionalMany(m.PAREN_L,this.parseVariableDefinition,m.PAREN_R)}parseVariableDefinition(){return this.node(this._lexer.token,{kind:u.VARIABLE_DEFINITION,description:this.parseDescription(),variable:this.parseVariable(),type:(this.expectToken(m.COLON),this.parseTypeReference()),defaultValue:this.expectOptionalToken(m.EQUALS)?this.parseConstValueLiteral():void 0,directives:this.parseConstDirectives()})}parseVariable(){let t=this._lexer.token;return this.expectToken(m.DOLLAR),this.node(t,{kind:u.VARIABLE,name:this.parseName()})}parseSelectionSet(){return this.node(this._lexer.token,{kind:u.SELECTION_SET,selections:this.many(m.BRACE_L,this.parseSelection,m.BRACE_R)})}parseSelection(){return this.peek(m.SPREAD)?this.parseFragment():this.parseField()}parseField(){let t=this._lexer.token,r=this.parseName(),n,i;return this.expectOptionalToken(m.COLON)?(n=r,i=this.parseName()):i=r,this.node(t,{kind:u.FIELD,alias:n,name:i,arguments:this.parseArguments(!1),directives:this.parseDirectives(!1),selectionSet:this.peek(m.BRACE_L)?this.parseSelectionSet():void 0})}parseArguments(t){let r=t?this.parseConstArgument:this.parseArgument;return this.optionalMany(m.PAREN_L,r,m.PAREN_R)}parseArgument(t=!1){let r=this._lexer.token,n=this.parseName();return this.expectToken(m.COLON),this.node(r,{kind:u.ARGUMENT,name:n,value:this.parseValueLiteral(t)})}parseConstArgument(){return this.parseArgument(!0)}parseFragment(){let t=this._lexer.token;this.expectToken(m.SPREAD);let r=this.expectOptionalKeyword("on");return!r&&this.peek(m.NAME)?this.node(t,{kind:u.FRAGMENT_SPREAD,name:this.parseFragmentName(),directives:this.parseDirectives(!1)}):this.node(t,{kind:u.INLINE_FRAGMENT,typeCondition:r?this.parseNamedType():void 0,directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseFragmentDefinition(){let t=this._lexer.token,r=this.parseDescription();return this.expectKeyword("fragment"),this._options.allowLegacyFragmentVariables===!0?this.node(t,{kind:u.FRAGMENT_DEFINITION,description:r,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,description:r,name:this.parseFragmentName(),typeCondition:(this.expectKeyword("on"),this.parseNamedType()),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseFragmentName(){if(this._lexer.token.value==="on")throw this.unexpected();return this.parseName()}parseValueLiteral(t){let r=this._lexer.token;switch(r.kind){case m.BRACKET_L:return this.parseList(t);case m.BRACE_L:return this.parseObject(t);case m.INT:return this.advanceLexer(),this.node(r,{kind:u.INT,value:r.value});case m.FLOAT:return this.advanceLexer(),this.node(r,{kind:u.FLOAT,value:r.value});case m.STRING:case m.BLOCK_STRING:return this.parseStringLiteral();case m.NAME:switch(this.advanceLexer(),r.value){case"true":return this.node(r,{kind:u.BOOLEAN,value:!0});case"false":return this.node(r,{kind:u.BOOLEAN,value:!1});case"null":return this.node(r,{kind:u.NULL});default:return this.node(r,{kind:u.ENUM,value:r.value})}case m.DOLLAR:if(t)if(this.expectToken(m.DOLLAR),this._lexer.token.kind===m.NAME){let n=this._lexer.token.value;throw G(this._lexer.source,r.start,`Unexpected variable "$${n}" in constant value.`)}else throw this.unexpected(r);return this.parseVariable();default:throw this.unexpected()}}parseConstValueLiteral(){return this.parseValueLiteral(!0)}parseStringLiteral(){let t=this._lexer.token;return this.advanceLexer(),this.node(t,{kind:u.STRING,value:t.value,block:t.kind===m.BLOCK_STRING})}parseList(t){let r=()=>this.parseValueLiteral(t);return this.node(this._lexer.token,{kind:u.LIST,values:this.any(m.BRACKET_L,r,m.BRACKET_R)})}parseObject(t){let r=()=>this.parseObjectField(t);return this.node(this._lexer.token,{kind:u.OBJECT,fields:this.any(m.BRACE_L,r,m.BRACE_R)})}parseObjectField(t){let r=this._lexer.token,n=this.parseName();return this.expectToken(m.COLON),this.node(r,{kind:u.OBJECT_FIELD,name:n,value:this.parseValueLiteral(t)})}parseDirectives(t){let r=[];for(;this.peek(m.AT);)r.push(this.parseDirective(t));return r}parseConstDirectives(){return this.parseDirectives(!0)}parseDirective(t){let r=this._lexer.token;return this.expectToken(m.AT),this.node(r,{kind:u.DIRECTIVE,name:this.parseName(),arguments:this.parseArguments(t)})}parseTypeReference(){let t=this._lexer.token,r;if(this.expectOptionalToken(m.BRACKET_L)){let n=this.parseTypeReference();this.expectToken(m.BRACKET_R),r=this.node(t,{kind:u.LIST_TYPE,type:n})}else r=this.parseNamedType();return this.expectOptionalToken(m.BANG)?this.node(t,{kind:u.NON_NULL_TYPE,type:r}):r}parseNamedType(){return this.node(this._lexer.token,{kind:u.NAMED_TYPE,name:this.parseName()})}peekDescription(){return this.peek(m.STRING)||this.peek(m.BLOCK_STRING)}parseDescription(){if(this.peekDescription())return this.parseStringLiteral()}parseSchemaDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("schema");let n=this.parseConstDirectives(),i=this.many(m.BRACE_L,this.parseOperationTypeDefinition,m.BRACE_R);return this.node(t,{kind:u.SCHEMA_DEFINITION,description:r,directives:n,operationTypes:i})}parseOperationTypeDefinition(){let t=this._lexer.token,r=this.parseOperationType();this.expectToken(m.COLON);let n=this.parseNamedType();return this.node(t,{kind:u.OPERATION_TYPE_DEFINITION,operation:r,type:n})}parseScalarTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("scalar");let n=this.parseName(),i=this.parseConstDirectives();return this.node(t,{kind:u.SCALAR_TYPE_DEFINITION,description:r,name:n,directives:i})}parseObjectTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("type");let n=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:u.OBJECT_TYPE_DEFINITION,description:r,name:n,interfaces:i,directives:o,fields:s})}parseImplementsInterfaces(){return this.expectOptionalKeyword("implements")?this.delimitedMany(m.AMP,this.parseNamedType):[]}parseFieldsDefinition(){return this.optionalMany(m.BRACE_L,this.parseFieldDefinition,m.BRACE_R)}parseFieldDefinition(){let t=this._lexer.token,r=this.parseDescription(),n=this.parseName(),i=this.parseArgumentDefs();this.expectToken(m.COLON);let o=this.parseTypeReference(),s=this.parseConstDirectives();return this.node(t,{kind:u.FIELD_DEFINITION,description:r,name:n,arguments:i,type:o,directives:s})}parseArgumentDefs(){return this.optionalMany(m.PAREN_L,this.parseInputValueDef,m.PAREN_R)}parseInputValueDef(){let t=this._lexer.token,r=this.parseDescription(),n=this.parseName();this.expectToken(m.COLON);let i=this.parseTypeReference(),o;this.expectOptionalToken(m.EQUALS)&&(o=this.parseConstValueLiteral());let s=this.parseConstDirectives();return this.node(t,{kind:u.INPUT_VALUE_DEFINITION,description:r,name:n,type:i,defaultValue:o,directives:s})}parseInterfaceTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("interface");let n=this.parseName(),i=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:u.INTERFACE_TYPE_DEFINITION,description:r,name:n,interfaces:i,directives:o,fields:s})}parseUnionTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("union");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseUnionMemberTypes();return this.node(t,{kind:u.UNION_TYPE_DEFINITION,description:r,name:n,directives:i,types:o})}parseUnionMemberTypes(){return this.expectOptionalToken(m.EQUALS)?this.delimitedMany(m.PIPE,this.parseNamedType):[]}parseEnumTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("enum");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseEnumValuesDefinition();return this.node(t,{kind:u.ENUM_TYPE_DEFINITION,description:r,name:n,directives:i,values:o})}parseEnumValuesDefinition(){return this.optionalMany(m.BRACE_L,this.parseEnumValueDefinition,m.BRACE_R)}parseEnumValueDefinition(){let t=this._lexer.token,r=this.parseDescription(),n=this.parseEnumValueName(),i=this.parseConstDirectives();return this.node(t,{kind:u.ENUM_VALUE_DEFINITION,description:r,name:n,directives:i})}parseEnumValueName(){if(this._lexer.token.value==="true"||this._lexer.token.value==="false"||this._lexer.token.value==="null")throw G(this._lexer.source,this._lexer.token.start,`${Gt(this._lexer.token)} is reserved and cannot be used for an enum value.`);return this.parseName()}parseInputObjectTypeDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("input");let n=this.parseName(),i=this.parseConstDirectives(),o=this.parseInputFieldsDefinition();return this.node(t,{kind:u.INPUT_OBJECT_TYPE_DEFINITION,description:r,name:n,directives:i,fields:o})}parseInputFieldsDefinition(){return this.optionalMany(m.BRACE_L,this.parseInputValueDef,m.BRACE_R)}parseTypeSystemExtension(){let t=this._lexer.lookahead();if(t.kind===m.NAME)switch(t.value){case"schema":return this.parseSchemaExtension();case"scalar":return this.parseScalarTypeExtension();case"type":return this.parseObjectTypeExtension();case"interface":return this.parseInterfaceTypeExtension();case"union":return this.parseUnionTypeExtension();case"enum":return this.parseEnumTypeExtension();case"input":return this.parseInputObjectTypeExtension()}throw this.unexpected(t)}parseSchemaExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("schema");let r=this.parseConstDirectives(),n=this.optionalMany(m.BRACE_L,this.parseOperationTypeDefinition,m.BRACE_R);if(r.length===0&&n.length===0)throw this.unexpected();return this.node(t,{kind:u.SCHEMA_EXTENSION,directives:r,operationTypes:n})}parseScalarTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("scalar");let r=this.parseName(),n=this.parseConstDirectives();if(n.length===0)throw this.unexpected();return this.node(t,{kind:u.SCALAR_TYPE_EXTENSION,name:r,directives:n})}parseObjectTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("type");let r=this.parseName(),n=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(n.length===0&&i.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:u.OBJECT_TYPE_EXTENSION,name:r,interfaces:n,directives:i,fields:o})}parseInterfaceTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("interface");let r=this.parseName(),n=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();if(n.length===0&&i.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:u.INTERFACE_TYPE_EXTENSION,name:r,interfaces:n,directives:i,fields:o})}parseUnionTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("union");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseUnionMemberTypes();if(n.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.UNION_TYPE_EXTENSION,name:r,directives:n,types:i})}parseEnumTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("enum");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseEnumValuesDefinition();if(n.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.ENUM_TYPE_EXTENSION,name:r,directives:n,values:i})}parseInputObjectTypeExtension(){let t=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("input");let r=this.parseName(),n=this.parseConstDirectives(),i=this.parseInputFieldsDefinition();if(n.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:u.INPUT_OBJECT_TYPE_EXTENSION,name:r,directives:n,fields:i})}parseDirectiveDefinition(){let t=this._lexer.token,r=this.parseDescription();this.expectKeyword("directive"),this.expectToken(m.AT);let n=this.parseName(),i=this.parseArgumentDefs(),o=this.expectOptionalKeyword("repeatable");this.expectKeyword("on");let s=this.parseDirectiveLocations();return this.node(t,{kind:u.DIRECTIVE_DEFINITION,description:r,name:n,arguments:i,repeatable:o,locations:s})}parseDirectiveLocations(){return this.delimitedMany(m.PIPE,this.parseDirectiveLocation)}parseDirectiveLocation(){let t=this._lexer.token,r=this.parseName();if(Object.prototype.hasOwnProperty.call(b,r.value))return r;throw this.unexpected(t)}parseSchemaCoordinate(){let t=this._lexer.token,r=this.expectOptionalToken(m.AT),n=this.parseName(),i;!r&&this.expectOptionalToken(m.DOT)&&(i=this.parseName());let o;return(r||i)&&this.expectOptionalToken(m.PAREN_L)&&(o=this.parseName(),this.expectToken(m.COLON),this.expectToken(m.PAREN_R)),r?o?this.node(t,{kind:u.DIRECTIVE_ARGUMENT_COORDINATE,name:n,argumentName:o}):this.node(t,{kind:u.DIRECTIVE_COORDINATE,name:n}):i?o?this.node(t,{kind:u.ARGUMENT_COORDINATE,name:n,fieldName:i,argumentName:o}):this.node(t,{kind:u.MEMBER_COORDINATE,name:n,memberName:i}):this.node(t,{kind:u.TYPE_COORDINATE,name:n})}node(t,r){return this._options.noLocation!==!0&&(r.loc=new ut(t,this._lexer.lastToken,this._lexer.source)),r}peek(t){return this._lexer.token.kind===t}expectToken(t){let r=this._lexer.token;if(r.kind===t)return this.advanceLexer(),r;throw G(this._lexer.source,r.start,`Expected ${vi(t)}, found ${Gt(r)}.`)}expectOptionalToken(t){return this._lexer.token.kind===t?(this.advanceLexer(),!0):!1}expectKeyword(t){let r=this._lexer.token;if(r.kind===m.NAME&&r.value===t)this.advanceLexer();else throw G(this._lexer.source,r.start,`Expected "${t}", found ${Gt(r)}.`)}expectOptionalKeyword(t){let r=this._lexer.token;return r.kind===m.NAME&&r.value===t?(this.advanceLexer(),!0):!1}unexpected(t){let r=t??this._lexer.token;return G(this._lexer.source,r.start,`Unexpected ${Gt(r)}.`)}any(t,r,n){this.expectToken(t);let i=[];for(;!this.expectOptionalToken(n);)i.push(r.call(this));return i}optionalMany(t,r,n){if(this.expectOptionalToken(t)){let i=[];do i.push(r.call(this));while(!this.expectOptionalToken(n));return i}return[]}many(t,r,n){this.expectToken(t);let i=[];do i.push(r.call(this));while(!this.expectOptionalToken(n));return i}delimitedMany(t,r){this.expectOptionalToken(t);let n=[];do n.push(r.call(this));while(this.expectOptionalToken(t));return n}advanceLexer(){let{maxTokens:t}=this._options,r=this._lexer.advance();if(r.kind!==m.EOF&&(++this._tokenCounter,t!==void 0&&this._tokenCounter>t))throw G(this._lexer.source,r.start,`Document contains more that ${t} tokens. Parsing aborted.`)}};function Gt(e){let t=e.value;return vi(e.kind)+(t!=null?` "${t}"`:"")}function vi(e){return yi(e)?`"${e}"`:e}function te(e,t){let[r,n]=t?[e,t]:[void 0,e],i=" Did you mean ";r&&(i+=r+" ");let o=n.map(c=>`"${c}"`);switch(o.length){case 0:return"";case 1:return i+o[0]+"?";case 2:return i+o[0]+" or "+o[1]+"?"}let s=o.slice(0,5),a=s.pop();return i+s.join(", ")+", or "+a+"?"}function Mr(e){return e}function ge(e,t){let r=Object.create(null);for(let n of e)r[t(n)]=n;return r}function mt(e,t,r){let n=Object.create(null);for(let i of e)n[t(i)]=r(i);return n}function ht(e,t){let r=Object.create(null);for(let n of Object.keys(e))r[n]=t(e[n],n);return r}function ze(e,t){let r=0,n=0;for(;r<e.length&&n<t.length;){let i=e.charCodeAt(r),o=t.charCodeAt(n);if(Qt(i)&&Qt(o)){let s=0;do++r,s=s*10+i-Pr,i=e.charCodeAt(r);while(Qt(i)&&s>0);let a=0;do++n,a=a*10+o-Pr,o=t.charCodeAt(n);while(Qt(o)&&a>0);if(s<a)return-1;if(s>a)return 1}else{if(i<o)return-1;if(i>o)return 1;++r,++n}}return e.length-t.length}var Pr=48,Go=57;function Qt(e){return!isNaN(e)&&Pr<=e&&e<=Go}function ie(e,t){let r=Object.create(null),n=new Ur(e),i=Math.floor(e.length*.4)+1;for(let o of t){let s=n.measure(o,i);s!==void 0&&(r[o]=s)}return Object.keys(r).sort((o,s)=>{let a=r[o]-r[s];return a!==0?a:ze(o,s)})}var Ur=class{constructor(t){this._input=t,this._inputLowerCase=t.toLowerCase(),this._inputArray=Ni(this._inputLowerCase),this._rows=[new Array(t.length+1).fill(0),new Array(t.length+1).fill(0),new Array(t.length+1).fill(0)]}measure(t,r){if(this._input===t)return 0;let n=t.toLowerCase();if(this._inputLowerCase===n)return 1;let i=Ni(n),o=this._inputArray;if(i.length<o.length){let l=i;i=o,o=l}let s=i.length,a=o.length;if(s-a>r)return;let c=this._rows;for(let l=0;l<=a;l++)c[0][l]=l;for(let l=1;l<=s;l++){let d=c[(l-1)%3],h=c[l%3],T=h[0]=l;for(let g=1;g<=a;g++){let P=i[l-1]===o[g-1]?0:1,ee=Math.min(d[g]+1,h[g-1]+1,d[g-1]+P);if(l>1&&g>1&&i[l-1]===o[g-2]&&i[l-2]===o[g-1]){let z=c[(l-2)%3][g-2];ee=Math.min(ee,z+1)}ee<T&&(T=ee),h[g]=ee}if(T>r)return}let p=c[s%3][a];return p<=r?p:void 0}};function Ni(e){let t=e.length,r=new Array(t);for(let n=0;n<t;++n)r[n]=e.charCodeAt(n);return r}function oe(e){if(e==null)return Object.create(null);if(Object.getPrototypeOf(e)===null)return e;let t=Object.create(null);for(let[r,n]of Object.entries(e))t[r]=n;return t}function Ii(e){return`"${e.replace(jo,Qo)}"`}var jo=/[\x00-\x1f\x22\x5c\x7f-\x9f]/g;function Qo(e){return Bo[e.charCodeAt(0)]}var Bo=["\\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 Xe=Object.freeze({});function Ae(e,t,r=Fr){let n=new Map;for(let z of Object.values(u))n.set(z,We(t,z));let i,o=Array.isArray(e),s=[e],a=-1,c=[],p=e,l,d,h=[],T=[];do{a++;let z=a===s.length,de=z&&c.length!==0;if(z){if(l=T.length===0?void 0:h[h.length-1],p=d,d=T.pop(),de)if(o){p=p.slice();let Te=0;for(let[wr,si]of c){let ai=wr-Te;si===null?(p.splice(ai,1),Te++):p[ai]=si}}else{p={...p};for(let[Te,wr]of c)p[Te]=wr}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;h.push(l)}let ce;if(!Array.isArray(p)){var g,P;pt(p)||x(!1,`Invalid AST Node: ${y(p)}.`);let Te=z?(g=n.get(p.kind))===null||g===void 0?void 0:g.leave:(P=n.get(p.kind))===null||P===void 0?void 0:P.enter;if(ce=Te?.call(t,p,l,d,h,T),ce===Xe)break;if(ce===!1){if(!z){h.pop();continue}}else if(ce!==void 0&&(c.push([l,ce]),!z))if(pt(ce))p=ce;else{h.pop();continue}}if(ce===void 0&&de&&c.push([l,p]),z)h.pop();else{var ee;i={inArray:o,index:a,keys:s,edits:c,prev:i},o=Array.isArray(p),s=o?p:(ee=r[p.kind])!==null&&ee!==void 0?ee:[],a=-1,c=[],d&&T.push(d),d=p}}while(i!==void 0);return c.length!==0?c[c.length-1][1]:e}function $r(e){let t=new Array(e.length).fill(null),r=Object.create(null);for(let n of Object.values(u)){let i=!1,o=new Array(e.length).fill(void 0),s=new Array(e.length).fill(void 0);for(let c=0;c<e.length;++c){let{enter:p,leave:l}=We(e[c],n);i||(i=p!=null||l!=null),o[c]=p,s[c]=l}if(!i)continue;let a={enter(...c){let p=c[0];for(let d=0;d<e.length;d++)if(t[d]===null){var l;let h=(l=o[d])===null||l===void 0?void 0:l.apply(e[d],c);if(h===!1)t[d]=p;else if(h===Xe)t[d]=Xe;else if(h!==void 0)return h}},leave(...c){let p=c[0];for(let d=0;d<e.length;d++)if(t[d]===null){var l;let h=(l=s[d])===null||l===void 0?void 0:l.apply(e[d],c);if(h===Xe)t[d]=Xe;else if(h!==void 0&&h!==!1)return h}else t[d]===p&&(t[d]=null)}};r[n]=a}return r}function We(e,t){let r=e[t];return typeof r=="object"?r:typeof r=="function"?{enter:r,leave:void 0}:{enter:e.enter,leave:e.leave}}function F(e){return Ae(e,Yo)}var qo=80,Yo={Name:{leave:e=>e.value},Variable:{leave:e=>"$"+e.name},Document:{leave:e=>v(e.definitions,`
|
|
23
23
|
|
|
24
24
|
`)},OperationDefinition:{leave(e){let t=Vr(e.variableDefinitions)?S(`(
|
|
25
25
|
`,v(e.variableDefinitions,`
|
|
@@ -56,6 +56,6 @@ spurious results.`)}}return!1};var Je=class{constructor(t,r="GraphQL request",n=
|
|
|
56
56
|
|
|
57
57
|
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(N),resolve:e=>e.name},description:{type:N,resolve:e=>e.description},isRepeatable:{type:new I(q),resolve:e=>e.isRepeatable},locations:{type:new I(new M(new I(Yr))),resolve:e=>e.locations},args:{type:new I(new M(new I(bt))),args:{includeDeprecated:{type:q,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(r=>r.deprecationReason==null)}}})}),Yr=new be({name:"__DirectiveLocation",description:"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",values:{QUERY:{value:b.QUERY,description:"Location adjacent to a query operation."},MUTATION:{value:b.MUTATION,description:"Location adjacent to a mutation operation."},SUBSCRIPTION:{value:b.SUBSCRIPTION,description:"Location adjacent to a subscription operation."},FIELD:{value:b.FIELD,description:"Location adjacent to a field."},FRAGMENT_DEFINITION:{value:b.FRAGMENT_DEFINITION,description:"Location adjacent to a fragment definition."},FRAGMENT_SPREAD:{value:b.FRAGMENT_SPREAD,description:"Location adjacent to a fragment spread."},INLINE_FRAGMENT:{value:b.INLINE_FRAGMENT,description:"Location adjacent to an inline fragment."},VARIABLE_DEFINITION:{value:b.VARIABLE_DEFINITION,description:"Location adjacent to a variable definition."},SCHEMA:{value:b.SCHEMA,description:"Location adjacent to a schema definition."},SCALAR:{value:b.SCALAR,description:"Location adjacent to a scalar definition."},OBJECT:{value:b.OBJECT,description:"Location adjacent to an object type definition."},FIELD_DEFINITION:{value:b.FIELD_DEFINITION,description:"Location adjacent to a field definition."},ARGUMENT_DEFINITION:{value:b.ARGUMENT_DEFINITION,description:"Location adjacent to an argument definition."},INTERFACE:{value:b.INTERFACE,description:"Location adjacent to an interface definition."},UNION:{value:b.UNION,description:"Location adjacent to a union definition."},ENUM:{value:b.ENUM,description:"Location adjacent to an enum definition."},ENUM_VALUE:{value:b.ENUM_VALUE,description:"Location adjacent to an enum value definition."},INPUT_OBJECT:{value:b.INPUT_OBJECT,description:"Location adjacent to an input object type definition."},INPUT_FIELD_DEFINITION:{value:b.INPUT_FIELD_DEFINITION,description:"Location adjacent to an input object field definition."}}}),he=new H({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(zr),resolve(e){if(Ne(e))return J.SCALAR;if(L(e))return J.OBJECT;if(w(e))return J.INTERFACE;if(W(e))return J.UNION;if(B(e))return J.ENUM;if(D(e))return J.INPUT_OBJECT;if(k(e))return J.LIST;if(O(e))return J.NON_NULL;V(!1,`Unexpected type: "${y(e)}".`)}},name:{type:N,resolve:e=>"name"in e?e.name:void 0},description:{type:N,resolve:e=>"description"in e?e.description:void 0},specifiedByURL:{type:N,resolve:e=>"specifiedByURL"in e?e.specifiedByURL:void 0},fields:{type:new M(new I(Hr)),args:{includeDeprecated:{type:q,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(L(e)||w(e)){let r=Object.values(e.getFields());return t?r:r.filter(n=>n.deprecationReason==null)}}},interfaces:{type:new M(new I(he)),resolve(e){if(L(e)||w(e))return e.getInterfaces()}},possibleTypes:{type:new M(new I(he)),resolve(e,t,r,{schema:n}){if(se(e))return n.getPossibleTypes(e)}},enumValues:{type:new M(new I(Jr)),args:{includeDeprecated:{type:q,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(B(e)){let r=e.getValues();return t?r:r.filter(n=>n.deprecationReason==null)}}},inputFields:{type:new M(new I(bt)),args:{includeDeprecated:{type:q,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(D(e)){let r=Object.values(e.getFields());return t?r:r.filter(n=>n.deprecationReason==null)}}},ofType:{type:he,resolve:e=>"ofType"in e?e.ofType:void 0},isOneOf:{type:q,resolve:e=>{if(D(e))return e.isOneOf}}})}),Hr=new H({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(N),resolve:e=>e.name},description:{type:N,resolve:e=>e.description},args:{type:new I(new M(new I(bt))),args:{includeDeprecated:{type:q,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(r=>r.deprecationReason==null)}},type:{type:new I(he),resolve:e=>e.type},isDeprecated:{type:new I(q),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:N,resolve:e=>e.deprecationReason}})}),bt=new H({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(N),resolve:e=>e.name},description:{type:N,resolve:e=>e.description},type:{type:new I(he),resolve:e=>e.type},defaultValue:{type:N,description:"A GraphQL-formatted string representing the default value for this input value.",resolve(e){let{type:t,defaultValue:r}=e,n=nt(r,t);return n?F(n):null}},isDeprecated:{type:new I(q),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:N,resolve:e=>e.deprecationReason}})}),Jr=new H({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(N),resolve:e=>e.name},description:{type:N,resolve:e=>e.description},isDeprecated:{type:new I(q),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:N,resolve:e=>e.deprecationReason}})}),J;(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"})(J||(J={}));var zr=new be({name:"__TypeKind",description:"An enum describing what kind of type a given `__Type` is.",values:{SCALAR:{value:J.SCALAR,description:"Indicates this type is a scalar."},OBJECT:{value:J.OBJECT,description:"Indicates this type is an object. `fields` and `interfaces` are valid fields."},INTERFACE:{value:J.INTERFACE,description:"Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields."},UNION:{value:J.UNION,description:"Indicates this type is a union. `possibleTypes` is a valid field."},ENUM:{value:J.ENUM,description:"Indicates this type is an enum. `enumValues` is a valid field."},INPUT_OBJECT:{value:J.INPUT_OBJECT,description:"Indicates this type is an input object. `inputFields` is a valid field."},LIST:{value:J.LIST,description:"Indicates this type is a list. `ofType` is a valid field."},NON_NULL:{value:J.NON_NULL,description:"Indicates this type is a non-null. `ofType` is a valid field."}}}),Ce={name:"__schema",type:new I(Rt),description:"Access the current type schema of this server.",args:[],resolve:(e,t,r,{schema:n})=>n,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},ke={name:"__type",type:he,description:"Request the type information of a single type.",args:[{name:"name",description:void 0,type:new I(N),defaultValue:void 0,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0}],resolve:(e,{name:t},r,{schema:n})=>n.getType(t),deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},Me={name:"__typename",type:new I(N),description:"The name of the current Object type at runtime.",args:[],resolve:(e,t,r,{parentType:n})=>n.name,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},tr=Object.freeze([Rt,qr,Yr,he,Hr,bt,Jr,zr]);function Xr(e){return tr.some(({name:t})=>e.name===t)}function Wr(e){return ne(e,Pe)}function rr(e){if(!Wr(e))throw new Error(`Expected ${y(e)} to be a GraphQL schema.`);return e}var Pe=class{constructor(t){var r,n;this.__validationErrors=t.assumeValid===!0?[]:void 0,Y(t)||x(!1,"Must provide configuration object."),!t.types||Array.isArray(t.types)||x(!1,`"types" must be Array if provided but got: ${y(t.types)}.`),!t.directives||Array.isArray(t.directives)||x(!1,`"directives" must be Array if provided but got: ${y(t.directives)}.`),this.description=t.description,this.extensions=oe(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(r=t.extensionASTNodes)!==null&&r!==void 0?r:[],this._queryType=t.query,this._mutationType=t.mutation,this._subscriptionType=t.subscription,this._directives=(n=t.directives)!==null&&n!==void 0?n:Ie;let i=new Set(t.types);if(t.types!=null)for(let o of t.types)i.delete(o),Re(o,i);this._queryType!=null&&Re(this._queryType,i),this._mutationType!=null&&Re(this._mutationType,i),this._subscriptionType!=null&&Re(this._subscriptionType,i);for(let o of this._directives)if(It(o))for(let s of o.args)Re(s.type,i);Re(Rt,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||x(!1,"One of the provided types for building the Schema is missing a name."),this._typeMap[s]!==void 0)throw new Error(`Schema must contain uniquely named types but contains multiple types named "${s}".`);if(this._typeMap[s]=o,w(o)){for(let a of o.getInterfaces())if(w(a)){let c=this._implementationsMap[a.name];c===void 0&&(c=this._implementationsMap[a.name]={objects:[],interfaces:[]}),c.interfaces.push(o)}}else if(L(o)){for(let a of o.getInterfaces())if(w(a)){let c=this._implementationsMap[a.name];c===void 0&&(c=this._implementationsMap[a.name]={objects:[],interfaces:[]}),c.objects.push(o)}}}}get[Symbol.toStringTag](){return"GraphQLSchema"}getQueryType(){return this._queryType}getMutationType(){return this._mutationType}getSubscriptionType(){return this._subscriptionType}getRootType(t){switch(t){case $.QUERY:return this.getQueryType();case $.MUTATION:return this.getMutationType();case $.SUBSCRIPTION:return this.getSubscriptionType()}}getTypeMap(){return this._typeMap}getType(t){return this.getTypeMap()[t]}getPossibleTypes(t){return W(t)?t.getTypes():this.getImplementations(t).objects}getImplementations(t){let r=this._implementationsMap[t.name];return r??{objects:[],interfaces:[]}}isSubType(t,r){let n=this._subTypeMap[t.name];if(n===void 0){if(n=Object.create(null),W(t))for(let i of t.getTypes())n[i.name]=!0;else{let i=this.getImplementations(t);for(let o of i.objects)n[o.name]=!0;for(let o of i.interfaces)n[o.name]=!0}this._subTypeMap[t.name]=n}return n[r.name]!==void 0}getDirectives(){return this._directives}getDirective(t){return this.getDirectives().find(r=>r.name===t)}toConfig(){return{description:this.description,query:this.getQueryType(),mutation:this.getMutationType(),subscription:this.getSubscriptionType(),types:Object.values(this.getTypeMap()),directives:this.getDirectives(),extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes,assumeValid:this.__validationErrors!==void 0}}};function Re(e,t){let r=X(e);if(!t.has(r)){if(t.add(r),W(r))for(let n of r.getTypes())Re(n,t);else if(L(r)||w(r)){for(let n of r.getInterfaces())Re(n,t);for(let n of Object.values(r.getFields())){Re(n.type,t);for(let i of n.args)Re(i.type,t)}}else if(D(r))for(let n of Object.values(r.getFields()))Re(n.type,t)}return t}function Ci(e){if(rr(e),e.__validationErrors)return e.__validationErrors;let t=new Zr(e);zo(t),Xo(t),Wo(t);let r=t.getErrors();return e.__validationErrors=r,r}function St(e){let t=Ci(e);if(t.length!==0)throw new Error(t.map(r=>r.message).join(`
|
|
58
58
|
|
|
59
|
-
`))}var Zr=class{constructor(t){this._errors=[],this.schema=t}reportError(t,r){let n=Array.isArray(r)?r.filter(Boolean):r;this._errors.push(new f(t,{nodes:n}))}getErrors(){return this._errors}};function zo(e){let t=e.schema,r=t.getQueryType();if(!r)e.reportError("Query root type must be provided.",t.astNode);else if(!L(r)){var n;e.reportError(`Query root type must be Object type, it cannot be ${y(r)}.`,(n=Kr(t,$.QUERY))!==null&&n!==void 0?n:r.astNode)}let i=t.getMutationType();if(i&&!L(i)){var o;e.reportError(`Mutation root type must be Object type if provided, it cannot be ${y(i)}.`,(o=Kr(t,$.MUTATION))!==null&&o!==void 0?o:i.astNode)}let s=t.getSubscriptionType();if(s&&!L(s)){var a;e.reportError(`Subscription root type must be Object type if provided, it cannot be ${y(s)}.`,(a=Kr(t,$.SUBSCRIPTION))!==null&&a!==void 0?a:s.astNode)}}function Kr(e,t){var r;return(r=[e.astNode,...e.extensionASTNodes].flatMap(n=>{var i;return(i=n?.operationTypes)!==null&&i!==void 0?i:[]}).find(n=>n.operation===t))===null||r===void 0?void 0:r.type}function Xo(e){for(let r of e.schema.getDirectives()){if(!It(r)){e.reportError(`Expected directive but got: ${y(r)}.`,r?.astNode);continue}Ue(e,r),r.locations.length===0&&e.reportError(`Directive @${r.name} must include 1 or more locations.`,r.astNode);for(let n of r.args)if(Ue(e,n),K(n.type)||e.reportError(`The type of @${r.name}(${n.name}:) must be Input Type but got: ${y(n.type)}.`,n.astNode),Se(n)&&n.deprecationReason!=null){var t;e.reportError(`Required argument @${r.name}(${n.name}:) cannot be deprecated.`,[en(n.astNode),(t=n.astNode)===null||t===void 0?void 0:t.type])}}}function Ue(e,t){t.name.startsWith("__")&&e.reportError(`Name "${t.name}" must not begin with "__", which is reserved by GraphQL introspection.`,t.astNode)}function Wo(e){let t=is(e),r=e.schema.getTypeMap();for(let n of Object.values(r)){if(!Ht(n)){e.reportError(`Expected GraphQL named type but got: ${y(n)}.`,n.astNode);continue}Xr(n)||Ue(e,n),L(n)||w(n)?(Di(e,n),Ai(e,n)):W(n)?es(e,n):B(n)?ts(e,n):D(n)&&(rs(e,n),t(n))}}function Di(e,t){let r=Object.values(t.getFields());r.length===0&&e.reportError(`Type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let s of r){if(Ue(e,s),!Oe(s.type)){var n;e.reportError(`The type of ${t.name}.${s.name} must be Output Type but got: ${y(s.type)}.`,(n=s.astNode)===null||n===void 0?void 0:n.type)}for(let a of s.args){let c=a.name;if(Ue(e,a),!K(a.type)){var i;e.reportError(`The type of ${t.name}.${s.name}(${c}:) must be Input Type but got: ${y(a.type)}.`,(i=a.astNode)===null||i===void 0?void 0:i.type)}if(Se(a)&&a.deprecationReason!=null){var o;e.reportError(`Required argument ${t.name}.${s.name}(${c}:) cannot be deprecated.`,[en(a.astNode),(o=a.astNode)===null||o===void 0?void 0:o.type])}}}}function Ai(e,t){let r=Object.create(null);for(let n of t.getInterfaces()){if(!w(n)){e.reportError(`Type ${y(t)} must only implement Interface types, it cannot implement ${y(n)}.`,Ot(t,n));continue}if(t===n){e.reportError(`Type ${t.name} cannot implement itself because it would create a circular reference.`,Ot(t,n));continue}if(r[n.name]){e.reportError(`Type ${t.name} can only implement ${n.name} once.`,Ot(t,n));continue}r[n.name]=!0,Zo(e,t,n),Ko(e,t,n)}}function Ko(e,t,r){let n=t.getFields();for(let c of Object.values(r.getFields())){let p=c.name,l=n[p];if(!l){e.reportError(`Interface field ${r.name}.${p} expected but ${t.name} does not provide it.`,[c.astNode,t.astNode,...t.extensionASTNodes]);continue}if(!Le(e.schema,l.type,c.type)){var i,o;e.reportError(`Interface field ${r.name}.${p} expects type ${y(c.type)} but ${t.name}.${p} is type ${y(l.type)}.`,[(i=c.astNode)===null||i===void 0?void 0:i.type,(o=l.astNode)===null||o===void 0?void 0:o.type])}for(let d of c.args){let h=d.name,T=l.args.find(g=>g.name===h);if(!T){e.reportError(`Interface field argument ${r.name}.${p}(${h}:) expected but ${t.name}.${p} does not provide it.`,[d.astNode,l.astNode]);continue}if(!Xt(d.type,T.type)){var s,a;e.reportError(`Interface field argument ${r.name}.${p}(${h}:) expects type ${y(d.type)} but ${t.name}.${p}(${h}:) 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 h=d.name;!c.args.find(g=>g.name===h)&&Se(d)&&e.reportError(`Object field ${t.name}.${p} includes required argument ${h} that is missing from the Interface field ${r.name}.${p}.`,[d.astNode,c.astNode])}}}function Zo(e,t,r){let n=t.getInterfaces();for(let i of r.getInterfaces())n.includes(i)||e.reportError(i===t?`Type ${t.name} cannot implement ${r.name} because it would create a circular reference.`:`Type ${t.name} must implement ${i.name} because it is implemented by ${r.name}.`,[...Ot(r,i),...Ot(t,r)])}function es(e,t){let r=t.getTypes();r.length===0&&e.reportError(`Union type ${t.name} must define one or more member types.`,[t.astNode,...t.extensionASTNodes]);let n=Object.create(null);for(let i of r){if(n[i.name]){e.reportError(`Union type ${t.name} can only include type ${i.name} once.`,Fi(t,i.name));continue}n[i.name]=!0,L(i)||e.reportError(`Union type ${t.name} can only include Object types, it cannot include ${y(i)}.`,Fi(t,String(i)))}}function ts(e,t){let r=t.getValues();r.length===0&&e.reportError(`Enum type ${t.name} must define one or more values.`,[t.astNode,...t.extensionASTNodes]);for(let n of r)Ue(e,n)}function rs(e,t){let r=Object.values(t.getFields());r.length===0&&e.reportError(`Input Object type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let o of r){if(Ue(e,o),!K(o.type)){var n;e.reportError(`The type of ${t.name}.${o.name} must be Input Type but got: ${y(o.type)}.`,(n=o.astNode)===null||n===void 0?void 0:n.type)}if(tt(o)&&o.deprecationReason!=null){var i;e.reportError(`Required input field ${t.name}.${o.name} cannot be deprecated.`,[en(o.astNode),(i=o.astNode)===null||i===void 0?void 0:i.type])}t.isOneOf&&ns(t,o,e)}}function ns(e,t,r){if(O(t.type)){var n;r.reportError(`OneOf input field ${e.name}.${t.name} must be nullable.`,(n=t.astNode)===null||n===void 0?void 0:n.type)}t.defaultValue!==void 0&&r.reportError(`OneOf input field ${e.name}.${t.name} cannot have a default value.`,t.astNode)}function is(e){let t=Object.create(null),r=[],n=Object.create(null);return i;function i(o){if(t[o.name])return;t[o.name]=!0,n[o.name]=r.length;let s=Object.values(o.getFields());for(let a of s)if(O(a.type)&&D(a.type.ofType)){let c=a.type.ofType,p=n[c.name];if(r.push(a),p===void 0)i(c);else{let l=r.slice(p),d=l.map(h=>h.name).join(".");e.reportError(`Cannot reference Input Object "${c.name}" within itself through a series of non-null fields: "${d}".`,l.map(h=>h.astNode))}r.pop()}n[o.name]=void 0}}function Ot(e,t){let{astNode:r,extensionASTNodes:n}=e;return(r!=null?[r,...n]:n).flatMap(o=>{var s;return(s=o.interfaces)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t.name)}function Fi(e,t){let{astNode:r,extensionASTNodes:n}=e;return(r!=null?[r,...n]:n).flatMap(o=>{var s;return(s=o.types)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t)}function en(e){var t;return e==null||(t=e.directives)===null||t===void 0?void 0:t.find(r=>r.name.value===er.name)}function j(e,t){switch(t.kind){case u.LIST_TYPE:{let r=j(e,t.type);return r&&new M(r)}case u.NON_NULL_TYPE:{let r=j(e,t.type);return r&&new I(r)}case u.NAMED_TYPE:return e.getType(t.name.value)}}var it=class{constructor(t,r,n){this._schema=t,this._typeStack=[],this._parentTypeStack=[],this._inputTypeStack=[],this._fieldDefStack=[],this._defaultValueStack=[],this._directive=null,this._argument=null,this._enumValue=null,this._getFieldDef=n??os,r&&(K(r)&&this._inputTypeStack.push(r),pe(r)&&this._parentTypeStack.push(r),Oe(r)&&this._typeStack.push(r))}get[Symbol.toStringTag](){return"TypeInfo"}getType(){if(this._typeStack.length>0)return this._typeStack[this._typeStack.length-1]}getParentType(){if(this._parentTypeStack.length>0)return this._parentTypeStack[this._parentTypeStack.length-1]}getInputType(){if(this._inputTypeStack.length>0)return this._inputTypeStack[this._inputTypeStack.length-1]}getParentInputType(){if(this._inputTypeStack.length>1)return this._inputTypeStack[this._inputTypeStack.length-2]}getFieldDef(){if(this._fieldDefStack.length>0)return this._fieldDefStack[this._fieldDefStack.length-1]}getDefaultValue(){if(this._defaultValueStack.length>0)return this._defaultValueStack[this._defaultValueStack.length-1]}getDirective(){return this._directive}getArgument(){return this._argument}getEnumValue(){return this._enumValue}enter(t){let r=this._schema;switch(t.kind){case u.SELECTION_SET:{let i=X(this.getType());this._parentTypeStack.push(pe(i)?i:void 0);break}case u.FIELD:{let i=this.getParentType(),o,s;i&&(o=this._getFieldDef(r,i,t),o&&(s=o.type)),this._fieldDefStack.push(o),this._typeStack.push(Oe(s)?s:void 0);break}case u.DIRECTIVE:this._directive=r.getDirective(t.name.value);break;case u.OPERATION_DEFINITION:{let i=r.getRootType(t.operation);this._typeStack.push(L(i)?i:void 0);break}case u.INLINE_FRAGMENT:case u.FRAGMENT_DEFINITION:{let i=t.typeCondition,o=i?j(r,i):X(this.getType());this._typeStack.push(Oe(o)?o:void 0);break}case u.VARIABLE_DEFINITION:{let i=j(r,t.type);this._inputTypeStack.push(K(i)?i:void 0);break}case u.ARGUMENT:{var n;let i,o,s=(n=this.getDirective())!==null&&n!==void 0?n:this.getFieldDef();s&&(i=s.args.find(a=>a.name===t.name.value),i&&(o=i.type)),this._argument=i,this._defaultValueStack.push(i?i.defaultValue:void 0),this._inputTypeStack.push(K(o)?o:void 0);break}case u.LIST:{let i=et(this.getInputType()),o=k(i)?i.ofType:i;this._defaultValueStack.push(void 0),this._inputTypeStack.push(K(o)?o:void 0);break}case u.OBJECT_FIELD:{let i=X(this.getInputType()),o,s;D(i)&&(s=i.getFields()[t.name.value],s&&(o=s.type)),this._defaultValueStack.push(s?s.defaultValue:void 0),this._inputTypeStack.push(K(o)?o:void 0);break}case u.ENUM:{let i=X(this.getInputType()),o;B(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 os(e,t,r){let n=r.name.value;if(n===Ce.name&&e.getQueryType()===t)return Ce;if(n===ke.name&&e.getQueryType()===t)return ke;if(n===Me.name&&pe(t))return Me;if(L(t)||w(t))return t.getFields()[n]}function nr(e,t){return{enter(...r){let n=r[0];e.enter(n);let i=We(t,n.kind).enter;if(i){let o=i.apply(t,r);return o!==void 0&&(e.leave(n),pt(o)&&e.enter(o)),o}},leave(...r){let n=r[0],i=We(t,n.kind).leave,o;return i&&(o=i.apply(t,r)),e.leave(n),o}}}function tn(e){return e.kind===u.OPERATION_DEFINITION||e.kind===u.FRAGMENT_DEFINITION}function rn(e){return e.kind===u.SCHEMA_DEFINITION||we(e)||e.kind===u.DIRECTIVE_DEFINITION}function we(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 nn(e){return e.kind===u.SCHEMA_EXTENSION||ir(e)}function ir(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 on(e){return{Document(t){for(let r of t.definitions)if(!tn(r)){let n=r.kind===u.SCHEMA_DEFINITION||r.kind===u.SCHEMA_EXTENSION?"schema":'"'+r.name.value+'"';e.reportError(new f(`The ${n} definition is not executable.`,{nodes:r}))}return!1}}}function sn(e){return{Field(t){let r=e.getParentType();if(r&&!e.getFieldDef()){let i=e.getSchema(),o=t.name.value,s=te("to use an inline fragment on",ss(i,r,o));s===""&&(s=te(as(r,o))),e.reportError(new f(`Cannot query field "${o}" on type "${r.name}".`+s,{nodes:t}))}}}}function ss(e,t,r){if(!se(t))return[];let n=new Set,i=Object.create(null);for(let s of e.getPossibleTypes(t))if(s.getFields()[r]){n.add(s),i[s.name]=1;for(let a of s.getInterfaces()){var o;a.getFields()[r]&&(n.add(a),i[a.name]=((o=i[a.name])!==null&&o!==void 0?o:0)+1)}}return[...n].sort((s,a)=>{let c=i[a.name]-i[s.name];return c!==0?c:w(s)&&e.isSubType(s,a)?-1:w(a)&&e.isSubType(a,s)?1:ze(s.name,a.name)}).map(s=>s.name)}function as(e,t){if(L(e)||w(e)){let r=Object.keys(e.getFields());return ie(t,r)}return[]}function an(e){return{InlineFragment(t){let r=t.typeCondition;if(r){let n=j(e.getSchema(),r);if(n&&!pe(n)){let i=F(r);e.reportError(new f(`Fragment cannot condition on non composite type "${i}".`,{nodes:r}))}}},FragmentDefinition(t){let r=j(e.getSchema(),t.typeCondition);if(r&&!pe(r)){let n=F(t.typeCondition);e.reportError(new f(`Fragment "${t.name.value}" cannot condition on non composite type "${n}".`,{nodes:t.typeCondition}))}}}}function cn(e){return{...un(e),Argument(t){let r=e.getArgument(),n=e.getFieldDef(),i=e.getParentType();if(!r&&n&&i){let o=t.name.value,s=n.args.map(c=>c.name),a=ie(o,s);e.reportError(new f(`Unknown argument "${o}" on field "${i.name}.${n.name}".`+te(a),{nodes:t}))}}}}function un(e){let t=Object.create(null),r=e.getSchema(),n=r?r.getDirectives():Ie;for(let s of n)t[s.name]=s.args.map(a=>a.name);let i=e.getDocument().definitions;for(let s of i)if(s.kind===u.DIRECTIVE_DEFINITION){var o;let a=(o=s.arguments)!==null&&o!==void 0?o:[];t[s.name.value]=a.map(c=>c.name.value)}return{Directive(s){let a=s.name.value,c=t[a];if(s.arguments&&c)for(let p of s.arguments){let l=p.name.value;if(!c.includes(l)){let d=ie(l,c);e.reportError(new f(`Unknown argument "${l}" on directive "@${a}".`+te(d),{nodes:p}))}}return!1}}}function or(e){let t=Object.create(null),r=e.getSchema(),n=r?r.getDirectives():Ie;for(let o of n)t[o.name]=o.locations;let i=e.getDocument().definitions;for(let o of i)o.kind===u.DIRECTIVE_DEFINITION&&(t[o.name.value]=o.locations.map(s=>s.value));return{Directive(o,s,a,c,p){let l=o.name.value,d=t[l];if(!d){e.reportError(new f(`Unknown directive "@${l}".`,{nodes:o}));return}let h=cs(p);h&&!d.includes(h)&&e.reportError(new f(`Directive "@${l}" may not be used on ${h}.`,{nodes:o}))}}}function cs(e){let t=e[e.length-1];switch("kind"in t||V(!1),t.kind){case u.OPERATION_DEFINITION:return us(t.operation);case u.FIELD:return b.FIELD;case u.FRAGMENT_SPREAD:return b.FRAGMENT_SPREAD;case u.INLINE_FRAGMENT:return b.INLINE_FRAGMENT;case u.FRAGMENT_DEFINITION:return b.FRAGMENT_DEFINITION;case u.VARIABLE_DEFINITION:return b.VARIABLE_DEFINITION;case u.SCHEMA_DEFINITION:case u.SCHEMA_EXTENSION:return b.SCHEMA;case u.SCALAR_TYPE_DEFINITION:case u.SCALAR_TYPE_EXTENSION:return b.SCALAR;case u.OBJECT_TYPE_DEFINITION:case u.OBJECT_TYPE_EXTENSION:return b.OBJECT;case u.FIELD_DEFINITION:return b.FIELD_DEFINITION;case u.INTERFACE_TYPE_DEFINITION:case u.INTERFACE_TYPE_EXTENSION:return b.INTERFACE;case u.UNION_TYPE_DEFINITION:case u.UNION_TYPE_EXTENSION:return b.UNION;case u.ENUM_TYPE_DEFINITION:case u.ENUM_TYPE_EXTENSION:return b.ENUM;case u.ENUM_VALUE_DEFINITION:return b.ENUM_VALUE;case u.INPUT_OBJECT_TYPE_DEFINITION:case u.INPUT_OBJECT_TYPE_EXTENSION:return b.INPUT_OBJECT;case u.INPUT_VALUE_DEFINITION:{let r=e[e.length-3];return"kind"in r||V(!1),r.kind===u.INPUT_OBJECT_TYPE_DEFINITION?b.INPUT_FIELD_DEFINITION:b.ARGUMENT_DEFINITION}default:V(!1,"Unexpected kind: "+y(t.kind))}}function us(e){switch(e){case $.QUERY:return b.QUERY;case $.MUTATION:return b.MUTATION;case $.SUBSCRIPTION:return b.SUBSCRIPTION}}function pn(e){return{FragmentSpread(t){let r=t.name.value;e.getFragment(r)||e.reportError(new f(`Unknown fragment "${r}".`,{nodes:t.name}))}}}function sr(e){let t=e.getSchema(),r=t?t.getTypeMap():Object.create(null),n=Object.create(null);for(let o of e.getDocument().definitions)we(o)&&(n[o.name.value]=!0);let i=[...Object.keys(r),...Object.keys(n)];return{NamedType(o,s,a,c,p){let l=o.name.value;if(!r[l]&&!n[l]){var d;let h=(d=p[2])!==null&&d!==void 0?d:a,T=h!=null&&ps(h);if(T&&ki.includes(l))return;let g=ie(l,T?ki.concat(i):i);e.reportError(new f(`Unknown type "${l}".`+te(g),{nodes:o}))}}}}var ki=[...Wt,...tr].map(e=>e.name);function ps(e){return"kind"in e&&(rn(e)||nn(e))}function ln(e){let t=0;return{Document(r){t=r.definitions.filter(n=>n.kind===u.OPERATION_DEFINITION).length},OperationDefinition(r){!r.name&&t>1&&e.reportError(new f("This anonymous operation must be the only defined operation.",{nodes:r}))}}}function fn(e){var t,r,n;let i=e.getSchema(),o=(t=(r=(n=i?.astNode)!==null&&n!==void 0?n:i?.getQueryType())!==null&&r!==void 0?r:i?.getMutationType())!==null&&t!==void 0?t:i?.getSubscriptionType(),s=0;return{SchemaDefinition(a){if(o){e.reportError(new f("Cannot define a new schema within a schema extension.",{nodes:a}));return}s>0&&e.reportError(new f("Must provide only one schema definition.",{nodes:a})),++s}}}var ls=3;function dn(e){function t(r,n=Object.create(null),i=0){if(r.kind===u.FRAGMENT_SPREAD){let o=r.name.value;if(n[o]===!0)return!1;let s=e.getFragment(o);if(!s)return!1;try{return n[o]=!0,t(s,n,i)}finally{n[o]=void 0}}if(r.kind===u.FIELD&&(r.name.value==="fields"||r.name.value==="interfaces"||r.name.value==="possibleTypes"||r.name.value==="inputFields")&&(i++,i>=ls))return!0;if("selectionSet"in r&&r.selectionSet){for(let o of r.selectionSet.selections)if(t(o,n,i))return!0}return!1}return{Field(r){if((r.name.value==="__schema"||r.name.value==="__type")&&t(r))return e.reportError(new f("Maximum introspection depth exceeded",{nodes:[r]})),!1}}}function mn(e){let t=Object.create(null),r=[],n=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(o){return i(o),!1}};function i(o){if(t[o.name.value])return;let s=o.name.value;t[s]=!0;let a=e.getFragmentSpreads(o.selectionSet);if(a.length!==0){n[s]=r.length;for(let c of a){let p=c.name.value,l=n[p];if(r.push(c),l===void 0){let d=e.getFragment(p);d&&i(d)}else{let d=r.slice(l),h=d.slice(0,-1).map(T=>'"'+T.name.value+'"').join(", ");e.reportError(new f(`Cannot spread fragment "${p}" within itself`+(h!==""?` via ${h}.`:"."),{nodes:d}))}r.pop()}n[s]=void 0}}}function hn(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(r){let n=e.getRecursiveVariableUsages(r);for(let{node:i}of n){let o=i.name.value;t[o]!==!0&&e.reportError(new f(r.name?`Variable "$${o}" is not defined by operation "${r.name.value}".`:`Variable "$${o}" is not defined.`,{nodes:[i,r]}))}}},VariableDefinition(r){t[r.variable.name.value]=!0}}}function yn(e){let t=[],r=[];return{OperationDefinition(n){return t.push(n),!1},FragmentDefinition(n){return r.push(n),!1},Document:{leave(){let n=Object.create(null);for(let i of t)for(let o of e.getRecursivelyReferencedFragments(i))n[o.name.value]=!0;for(let i of r){let o=i.name.value;n[o]!==!0&&e.reportError(new f(`Fragment "${o}" is never used.`,{nodes:i}))}}}}}function Tn(e){let t=[];return{OperationDefinition:{enter(){t=[]},leave(r){let n=Object.create(null),i=e.getRecursiveVariableUsages(r);for(let{node:o}of i)n[o.name.value]=!0;for(let o of t){let s=o.variable.name.value;n[s]!==!0&&e.reportError(new f(r.name?`Variable "$${s}" is never used in operation "${r.name.value}".`:`Variable "$${s}" is never used.`,{nodes:o}))}}},VariableDefinition(r){t.push(r)}}}function ar(e){switch(e.kind){case u.OBJECT:return{...e,fields:fs(e.fields)};case u.LIST:return{...e,values:e.values.map(ar)};case u.INT:case u.FLOAT:case u.STRING:case u.BOOLEAN:case u.NULL:case u.ENUM:case u.VARIABLE:return e}}function fs(e){return e.map(t=>({...t,value:ar(t.value)})).sort((t,r)=>ze(t.name.value,r.name.value))}function Pi(e){return Array.isArray(e)?e.map(([t,r])=>`subfields "${t}" conflict because `+Pi(r)).join(" and "):e}function Nn(e){let t=new lr,r=new vn,n=new Map;return{SelectionSet(i){let o=ds(e,n,t,r,e.getParentType(),i);for(let[[s,a],c,p]of o){let l=Pi(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 ds(e,t,r,n,i,o){let s=[],[a,c]=pr(e,t,i,o);if(hs(e,s,t,r,n,a),c.length!==0)for(let p=0;p<c.length;p++){cr(e,s,t,r,n,!1,a,c[p]);for(let l=p+1;l<c.length;l++)ur(e,s,t,r,n,!1,c[p],c[l])}return s}function cr(e,t,r,n,i,o,s,a){if(n.has(s,a,o))return;n.add(s,a,o);let c=e.getFragment(a);if(!c)return;let[p,l]=En(e,r,c);if(s!==p){In(e,t,r,n,i,o,s,p);for(let d of l)cr(e,t,r,n,i,o,s,d)}}function ur(e,t,r,n,i,o,s,a){if(s===a||i.has(s,a,o))return;i.add(s,a,o);let c=e.getFragment(s),p=e.getFragment(a);if(!c||!p)return;let[l,d]=En(e,r,c),[h,T]=En(e,r,p);In(e,t,r,n,i,o,l,h);for(let g of T)ur(e,t,r,n,i,o,s,g);for(let g of d)ur(e,t,r,n,i,o,g,a)}function ms(e,t,r,n,i,o,s,a,c){let p=[],[l,d]=pr(e,t,o,s),[h,T]=pr(e,t,a,c);In(e,p,t,r,n,i,l,h);for(let g of T)cr(e,p,t,r,n,i,l,g);for(let g of d)cr(e,p,t,r,n,i,h,g);for(let g of d)for(let P of T)ur(e,p,t,r,n,i,g,P);return p}function hs(e,t,r,n,i,o){for(let[s,a]of Object.entries(o))if(a.length>1)for(let c=0;c<a.length;c++)for(let p=c+1;p<a.length;p++){let l=Ui(e,r,n,i,!1,s,a[c],a[p]);l&&t.push(l)}}function In(e,t,r,n,i,o,s,a){for(let[c,p]of Object.entries(s)){let l=a[c];if(l)for(let d of p)for(let h of l){let T=Ui(e,r,n,i,o,c,d,h);T&&t.push(T)}}}function Ui(e,t,r,n,i,o,s,a){let[c,p,l]=s,[d,h,T]=a,g=i||c!==d&&L(c)&&L(d);if(!g){let ce=p.name.value,Te=h.name.value;if(ce!==Te)return[[o,`"${ce}" and "${Te}" are different fields`],[p],[h]];if(!ys(p,h))return[[o,"they have differing arguments"],[p],[h]]}let P=l?.type,ee=T?.type;if(P&&ee&&gn(P,ee))return[[o,`they return conflicting types "${y(P)}" and "${y(ee)}"`],[p],[h]];let z=p.selectionSet,de=h.selectionSet;if(z&&de){let ce=ms(e,t,r,n,g,X(P),z,X(ee),de);return Ts(ce,o,p,h)}}function ys(e,t){let r=e.arguments,n=t.arguments;if(r===void 0||r.length===0)return n===void 0||n.length===0;if(n===void 0||n.length===0||r.length!==n.length)return!1;let i=new Map(n.map(({name:o,value:s})=>[o.value,s]));return r.every(o=>{let s=o.value,a=i.get(o.name.value);return a===void 0?!1:Mi(s)===Mi(a)})}function Mi(e){return F(ar(e))}function gn(e,t){return k(e)?k(t)?gn(e.ofType,t.ofType):!0:k(t)?!0:O(e)?O(t)?gn(e.ofType,t.ofType):!0:O(t)?!0:Z(e)||Z(t)?e!==t:!1}function pr(e,t,r,n){let i=t.get(n);if(i)return i;let o=Object.create(null),s=Object.create(null);$i(e,r,n,o,s);let a=[o,Object.keys(s)];return t.set(n,a),a}function En(e,t,r){let n=t.get(r.selectionSet);if(n)return n;let i=j(e.getSchema(),r.typeCondition);return pr(e,t,i,r.selectionSet)}function $i(e,t,r,n,i){for(let o of r.selections)switch(o.kind){case u.FIELD:{let s=o.name.value,a;(L(t)||w(t))&&(a=t.getFields()[s]);let c=o.alias?o.alias.value:s;n[c]||(n[c]=[]),n[c].push([t,o,a]);break}case u.FRAGMENT_SPREAD:i[o.name.value]=!0;break;case u.INLINE_FRAGMENT:{let s=o.typeCondition,a=s?j(e.getSchema(),s):t;$i(e,a,o.selectionSet,n,i);break}}}function Ts(e,t,r,n){if(e.length>0)return[[t,e.map(([i])=>i)],[r,...e.map(([,i])=>i).flat()],[n,...e.map(([,,i])=>i).flat()]]}var lr=class{constructor(){this._data=new Map}has(t,r,n){var i;let o=(i=this._data.get(t))===null||i===void 0?void 0:i.get(r);return o===void 0?!1:n?!0:n===o}add(t,r,n){let i=this._data.get(t);i===void 0?this._data.set(t,new Map([[r,n]])):i.set(r,n)}},vn=class{constructor(){this._orderedPairSet=new lr}has(t,r,n){return t<r?this._orderedPairSet.has(t,r,n):this._orderedPairSet.has(r,t,n)}add(t,r,n){t<r?this._orderedPairSet.add(t,r,n):this._orderedPairSet.add(r,t,n)}};function Rn(e){return{InlineFragment(t){let r=e.getType(),n=e.getParentType();if(pe(r)&&pe(n)&&!Br(e.getSchema(),r,n)){let i=y(n),o=y(r);e.reportError(new f(`Fragment cannot be spread here as objects of type "${i}" can never be of type "${o}".`,{nodes:t}))}},FragmentSpread(t){let r=t.name.value,n=gs(e,r),i=e.getParentType();if(n&&i&&!Br(e.getSchema(),n,i)){let o=y(i),s=y(n);e.reportError(new f(`Fragment "${r}" cannot be spread here as objects of type "${o}" can never be of type "${s}".`,{nodes:t}))}}}}function gs(e,t){let r=e.getFragment(t);if(r){let n=j(e.getSchema(),r.typeCondition);if(pe(n))return n}}function bn(e){let t=e.getSchema(),r=Object.create(null);for(let i of e.getDocument().definitions)we(i)&&(r[i.name.value]=i);return{ScalarTypeExtension:n,ObjectTypeExtension:n,InterfaceTypeExtension:n,UnionTypeExtension:n,EnumTypeExtension:n,InputObjectTypeExtension:n};function n(i){let o=i.name.value,s=r[o],a=t?.getType(o),c;if(s?c=Es[s.kind]:a&&(c=vs(a)),c){if(c!==i.kind){let p=Ns(i.kind);e.reportError(new f(`Cannot extend non-${p} type "${o}".`,{nodes:s?[s,i]:i}))}}else{let p=Object.keys({...r,...t?.getTypeMap()}),l=ie(o,p);e.reportError(new f(`Cannot extend type "${o}" because it is not defined.`+te(l),{nodes:i.name}))}}}var Es={[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 vs(e){if(Ne(e))return u.SCALAR_TYPE_EXTENSION;if(L(e))return u.OBJECT_TYPE_EXTENSION;if(w(e))return u.INTERFACE_TYPE_EXTENSION;if(W(e))return u.UNION_TYPE_EXTENSION;if(B(e))return u.ENUM_TYPE_EXTENSION;if(D(e))return u.INPUT_OBJECT_TYPE_EXTENSION;V(!1,"Unexpected type: "+y(e))}function Ns(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:V(!1,"Unexpected kind: "+y(e))}}function On(e){return{...Sn(e),Field:{leave(t){var r;let n=e.getFieldDef();if(!n)return!1;let i=new Set((r=t.arguments)===null||r===void 0?void 0:r.map(o=>o.name.value));for(let o of n.args)if(!i.has(o.name)&&Se(o)){let s=y(o.type);e.reportError(new f(`Field "${n.name}" argument "${o.name}" of type "${s}" is required, but it was not provided.`,{nodes:t}))}}}}}function Sn(e){var t;let r=Object.create(null),n=e.getSchema(),i=(t=n?.getDirectives())!==null&&t!==void 0?t:Ie;for(let a of i)r[a.name]=ge(a.args.filter(Se),c=>c.name);let o=e.getDocument().definitions;for(let a of o)if(a.kind===u.DIRECTIVE_DEFINITION){var s;let c=(s=a.arguments)!==null&&s!==void 0?s:[];r[a.name.value]=ge(c.filter(Is),p=>p.name.value)}return{Directive:{leave(a){let c=a.name.value,p=r[c];if(p){var l;let d=(l=a.arguments)!==null&&l!==void 0?l:[],h=new Set(d.map(T=>T.name.value));for(let[T,g]of Object.entries(p))if(!h.has(T)){let P=Ze(g.type)?y(g.type):F(g.type);e.reportError(new f(`Directive "@${c}" argument "${T}" of type "${P}" is required, but it was not provided.`,{nodes:a}))}}}}}}function Is(e){return e.type.kind===u.NON_NULL_TYPE&&e.defaultValue==null}function _n(e){return{Field(t){let r=e.getType(),n=t.selectionSet;if(r)if(Z(X(r))){if(n){let i=t.name.value,o=y(r);e.reportError(new f(`Field "${i}" must not have a selection since type "${o}" has no subfields.`,{nodes:n}))}}else if(n){if(n.selections.length===0){let i=t.name.value,o=y(r);e.reportError(new f(`Field "${i}" of type "${o}" must have at least one field selected.`,{nodes:t}))}}else{let i=t.name.value,o=y(r);e.reportError(new f(`Field "${i}" of type "${o}" must have a selection of subfields. Did you mean "${i} { ... }"?`,{nodes:t}))}}}}function fr(e){return e.map(t=>typeof t=="number"?"["+t.toString()+"]":"."+t).join("")}function $e(e,t,r){return{prev:e,key:t,typename:r}}function re(e){let t=[],r=e;for(;r;)t.push(r.key),r=r.prev;return t.reverse()}function Vi(e,t,r=Rs){return _t(e,t,r,void 0)}function Rs(e,t,r){let n="Invalid value "+y(t);throw e.length>0&&(n+=` at "value${fr(e)}"`),r.message=n+": "+r.message,r}function _t(e,t,r,n){if(O(t)){if(e!=null)return _t(e,t.ofType,r,n);r(re(n),e,new f(`Expected non-nullable type "${y(t)}" not to be null.`));return}if(e==null)return null;if(k(t)){let i=t.ofType;return rt(e)?Array.from(e,(o,s)=>{let a=$e(n,s,void 0);return _t(o,i,r,a)}):[_t(e,i,r,n)]}if(D(t)){if(!Y(e)||Array.isArray(e)){r(re(n),e,new f(`Expected type "${t.name}" to be an object.`));return}let i={},o=t.getFields();for(let s of Object.values(o)){let a=e[s.name];if(a===void 0){if(s.defaultValue!==void 0)i[s.name]=s.defaultValue;else if(O(s.type)){let c=y(s.type);r(re(n),e,new f(`Field "${s.name}" of required type "${c}" was not provided.`))}continue}i[s.name]=_t(a,s.type,r,$e(n,s.name,t.name))}for(let s of Object.keys(e))if(!o[s]){let a=ie(s,Object.keys(t.getFields()));r(re(n),e,new f(`Field "${s}" is not defined by type "${t.name}".`+te(a)))}if(t.isOneOf){let s=Object.keys(i);s.length!==1&&r(re(n),e,new f(`Exactly one key must be specified for OneOf type "${t.name}".`));let a=s[0],c=i[a];c===null&&r(re(n).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?r(re(n),e,o):r(re(n),e,new f(`Expected type "${t.name}". `+o.message,{originalError:o}));return}return i===void 0&&r(re(n),e,new f(`Expected type "${t.name}".`)),i}V(!1,"Unexpected input type: "+y(t))}function Ve(e,t,r){if(e){if(e.kind===u.VARIABLE){let n=e.name.value;if(r==null||r[n]===void 0)return;let i=r[n];return i===null&&O(t)?void 0:i}if(O(t))return e.kind===u.NULL?void 0:Ve(e,t.ofType,r);if(e.kind===u.NULL)return null;if(k(t)){let n=t.ofType;if(e.kind===u.LIST){let o=[];for(let s of e.values)if(Gi(s,r)){if(O(n))return;o.push(null)}else{let a=Ve(s,n,r);if(a===void 0)return;o.push(a)}return o}let i=Ve(e,n,r);return i===void 0?void 0:[i]}if(D(t)){if(e.kind!==u.OBJECT)return;let n=Object.create(null),i=ge(e.fields,o=>o.name.value);for(let o of Object.values(t.getFields())){let s=i[o.name];if(!s||Gi(s.value,r)){if(o.defaultValue!==void 0)n[o.name]=o.defaultValue;else if(O(o.type))return;continue}let a=Ve(s.value,o.type,r);if(a===void 0)return;n[o.name]=a}if(t.isOneOf){let o=Object.keys(n);if(o.length!==1||n[o[0]]===null)return}return n}if(Z(t)){let n;try{n=t.parseLiteral(e,r)}catch{return}return n===void 0?void 0:n}V(!1,"Unexpected input type: "+y(t))}}function Gi(e,t){return e.kind===u.VARIABLE&&(t==null||t[e.name.value]===void 0)}function xn(e,t,r,n){let i=[],o=n?.maxErrors;try{let s=bs(e,t,r,a=>{if(o!=null&&i.length>=o)throw new f("Too many errors processing variables, error limit reached. Execution aborted.");i.push(a)});if(i.length===0)return{coerced:s}}catch(s){i.push(s)}return{errors:i}}function bs(e,t,r,n){let i={};for(let o of t){let s=o.variable.name.value,a=j(e,o.type);if(!K(a)){let p=F(o.type);n(new f(`Variable "$${s}" expected value of type "${p}" which cannot be used as an input type.`,{nodes:o.type}));continue}if(!ji(r,s)){if(o.defaultValue)i[s]=Ve(o.defaultValue,a);else if(O(a)){let p=y(a);n(new f(`Variable "$${s}" of required type "${p}" was not provided.`,{nodes:o}))}continue}let c=r[s];if(c===null&&O(a)){let p=y(a);n(new f(`Variable "$${s}" of non-null type "${p}" must not be null.`,{nodes:o}));continue}i[s]=Vi(c,a,(p,l,d)=>{let h=`Variable "$${s}" got invalid value `+y(l);p.length>0&&(h+=` at "${s}${fr(p)}"`),n(new f(h+"; "+d.message,{nodes:o,originalError:d}))})}return i}function dr(e,t,r){var n;let i={},o=(n=t.arguments)!==null&&n!==void 0?n:[],s=ge(o,a=>a.name.value);for(let a of e.args){let c=a.name,p=a.type,l=s[c];if(!l){if(a.defaultValue!==void 0)i[c]=a.defaultValue;else if(O(p))throw new f(`Argument "${c}" of required type "${y(p)}" was not provided.`,{nodes:t});continue}let d=l.value,h=d.kind===u.NULL;if(d.kind===u.VARIABLE){let g=d.name.value;if(r==null||!ji(r,g)){if(a.defaultValue!==void 0)i[c]=a.defaultValue;else if(O(p))throw new f(`Argument "${c}" of required type "${y(p)}" was provided the variable "$${g}" which was not provided a runtime value.`,{nodes:d});continue}h=r[g]==null}if(h&&O(p))throw new f(`Argument "${c}" of non-null type "${y(p)}" must not be null.`,{nodes:d});let T=Ve(d,p,r);if(T===void 0)throw new f(`Argument "${c}" has invalid value ${F(d)}.`,{nodes:d});i[c]=T}return i}function mr(e,t,r){var n;let i=(n=t.directives)===null||n===void 0?void 0:n.find(o=>o.name.value===e.name);if(i)return dr(e,i,r)}function ji(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function yr(e,t,r,n,i){let o=new Map;return hr(e,t,r,n,i,o,new Set),o}function Bi(e,t,r,n,i){let o=new Map,s=new Set;for(let a of i)a.selectionSet&&hr(e,t,r,n,a.selectionSet,o,s);return o}function hr(e,t,r,n,i,o,s){for(let a of i.selections)switch(a.kind){case u.FIELD:{if(!Ln(r,a))continue;let c=Os(a),p=o.get(c);p!==void 0?p.push(a):o.set(c,[a]);break}case u.INLINE_FRAGMENT:{if(!Ln(r,a)||!Qi(e,a,n))continue;hr(e,t,r,n,a.selectionSet,o,s);break}case u.FRAGMENT_SPREAD:{let c=a.name.value;if(s.has(c)||!Ln(r,a))continue;s.add(c);let p=t[c];if(!p||!Qi(e,p,n))continue;hr(e,t,r,n,p.selectionSet,o,s);break}}}function Ln(e,t){let r=mr(Zt,t,e);if(r?.if===!0)return!1;let n=mr(Kt,t,e);return n?.if!==!1}function Qi(e,t,r){let n=t.typeCondition;if(!n)return!0;let i=j(e,n);return i===r?!0:se(i)?e.isSubType(i,r):!1}function Os(e){return e.alias?e.alias.value:e.name.value}function wn(e){return{OperationDefinition(t){if(t.operation==="subscription"){let r=e.getSchema(),n=r.getSubscriptionType();if(n){let i=t.name?t.name.value:null,o=Object.create(null),s=e.getDocument(),a=Object.create(null);for(let p of s.definitions)p.kind===u.FRAGMENT_DEFINITION&&(a[p.name.value]=p);let c=yr(r,a,o,n,t.selectionSet);if(c.size>1){let d=[...c.values()].slice(1).flat();e.reportError(new f(i!=null?`Subscription "${i}" must select only one top level field.`:"Anonymous Subscription must select only one top level field.",{nodes:d}))}for(let p of c.values())p[0].name.value.startsWith("__")&&e.reportError(new f(i!=null?`Subscription "${i}" must not select an introspection top level field.`:"Anonymous Subscription must not select an introspection top level field.",{nodes:p}))}}}}}function ot(e,t){let r=new Map;for(let n of e){let i=t(n),o=r.get(i);o===void 0?r.set(i,[n]):o.push(n)}return r}function Dn(e){return{DirectiveDefinition(n){var i;let o=(i=n.arguments)!==null&&i!==void 0?i:[];return r(`@${n.name.value}`,o)},InterfaceTypeDefinition:t,InterfaceTypeExtension:t,ObjectTypeDefinition:t,ObjectTypeExtension:t};function t(n){var i;let o=n.name.value,s=(i=n.fields)!==null&&i!==void 0?i:[];for(let c of s){var a;let p=c.name.value,l=(a=c.arguments)!==null&&a!==void 0?a:[];r(`${o}.${p}`,l)}return!1}function r(n,i){let o=ot(i,s=>s.name.value);for(let[s,a]of o)a.length>1&&e.reportError(new f(`Argument "${n}(${s}:)" can only be defined once.`,{nodes:a.map(c=>c.name)}));return!1}}function Tr(e){return{Field:t,Directive:t};function t(r){var n;let i=(n=r.arguments)!==null&&n!==void 0?n:[],o=ot(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 An(e){let t=Object.create(null),r=e.getSchema();return{DirectiveDefinition(n){let i=n.name.value;if(r!=null&&r.getDirective(i)){e.reportError(new f(`Directive "@${i}" already exists in the schema. It cannot be redefined.`,{nodes:n.name}));return}return t[i]?e.reportError(new f(`There can be only one directive named "@${i}".`,{nodes:[t[i],n.name]})):t[i]=n.name,!1}}}function gr(e){let t=Object.create(null),r=e.getSchema(),n=r?r.getDirectives():Ie;for(let a of n)t[a.name]=!a.isRepeatable;let i=e.getDocument().definitions;for(let a of i)a.kind===u.DIRECTIVE_DEFINITION&&(t[a.name.value]=!a.repeatable);let o=Object.create(null),s=Object.create(null);return{enter(a){if(!("directives"in a)||!a.directives)return;let c;if(a.kind===u.SCHEMA_DEFINITION||a.kind===u.SCHEMA_EXTENSION)c=o;else if(we(a)||ir(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 Fn(e){let t=e.getSchema(),r=t?t.getTypeMap():Object.create(null),n=Object.create(null);return{EnumTypeDefinition:i,EnumTypeExtension:i};function i(o){var s;let a=o.name.value;n[a]||(n[a]=Object.create(null));let c=(s=o.values)!==null&&s!==void 0?s:[],p=n[a];for(let l of c){let d=l.name.value,h=r[a];B(h)&&h.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 Cn(e){let t=e.getSchema(),r=t?t.getTypeMap():Object.create(null),n=Object.create(null);return{InputObjectTypeDefinition:i,InputObjectTypeExtension:i,InterfaceTypeDefinition:i,InterfaceTypeExtension:i,ObjectTypeDefinition:i,ObjectTypeExtension:i};function i(o){var s;let a=o.name.value;n[a]||(n[a]=Object.create(null));let c=(s=o.fields)!==null&&s!==void 0?s:[],p=n[a];for(let l of c){let d=l.name.value;Ss(r[a],d)?e.reportError(new f(`Field "${a}.${d}" already exists in the schema. It cannot also be defined in this type extension.`,{nodes:l.name})):p[d]?e.reportError(new f(`Field "${a}.${d}" can only be defined once.`,{nodes:[p[d],l.name]})):p[d]=l.name}return!1}}function Ss(e,t){return L(e)||w(e)||D(e)?e.getFields()[t]!=null:!1}function kn(e){let t=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(r){let n=r.name.value;return t[n]?e.reportError(new f(`There can be only one fragment named "${n}".`,{nodes:[t[n],r.name]})):t[n]=r.name,!1}}}function Er(e){let t=[],r=Object.create(null);return{ObjectValue:{enter(){t.push(r),r=Object.create(null)},leave(){let n=t.pop();n||V(!1),r=n}},ObjectField(n){let i=n.name.value;r[i]?e.reportError(new f(`There can be only one input field named "${i}".`,{nodes:[r[i],n.name]})):r[i]=n.name}}}function Mn(e){let t=Object.create(null);return{OperationDefinition(r){let n=r.name;return n&&(t[n.value]?e.reportError(new f(`There can be only one operation named "${n.value}".`,{nodes:[t[n.value],n]})):t[n.value]=n),!1},FragmentDefinition:()=>!1}}function Pn(e){let t=e.getSchema(),r=Object.create(null),n=t?{query:t.getQueryType(),mutation:t.getMutationType(),subscription:t.getSubscriptionType()}:{};return{SchemaDefinition:i,SchemaExtension:i};function i(o){var s;let a=(s=o.operationTypes)!==null&&s!==void 0?s:[];for(let c of a){let p=c.operation,l=r[p];n[p]?e.reportError(new f(`Type for ${p} already defined in the schema. It cannot be redefined.`,{nodes:c})):l?e.reportError(new f(`There can be only one ${p} type in schema.`,{nodes:[l,c]})):r[p]=c}return!1}}function Un(e){let t=Object.create(null),r=e.getSchema();return{ScalarTypeDefinition:n,ObjectTypeDefinition:n,InterfaceTypeDefinition:n,UnionTypeDefinition:n,EnumTypeDefinition:n,InputObjectTypeDefinition:n};function n(i){let o=i.name.value;if(r!=null&&r.getType(o)){e.reportError(new f(`Type "${o}" already exists in the schema. It cannot also be defined in this type definition.`,{nodes:i.name}));return}return t[o]?e.reportError(new f(`There can be only one type named "${o}".`,{nodes:[t[o],i.name]})):t[o]=i.name,!1}}function $n(e){return{OperationDefinition(t){var r;let n=(r=t.variableDefinitions)!==null&&r!==void 0?r:[],i=ot(n,o=>o.variable.name.value);for(let[o,s]of i)s.length>1&&e.reportError(new f(`There can be only one variable named "$${o}".`,{nodes:s.map(a=>a.variable.name)}))}}}function Vn(e){let t={};return{OperationDefinition:{enter(){t={}}},VariableDefinition(r){t[r.variable.name.value]=r},ListValue(r){let n=et(e.getParentInputType());if(!k(n))return Ge(e,r),!1},ObjectValue(r){let n=X(e.getInputType());if(!D(n))return Ge(e,r),!1;let i=ge(r.fields,o=>o.name.value);for(let o of Object.values(n.getFields()))if(!i[o.name]&&tt(o)){let a=y(o.type);e.reportError(new f(`Field "${n.name}.${o.name}" of required type "${a}" was not provided.`,{nodes:r}))}n.isOneOf&&_s(e,r,n,i)},ObjectField(r){let n=X(e.getParentInputType());if(!e.getInputType()&&D(n)){let o=ie(r.name.value,Object.keys(n.getFields()));e.reportError(new f(`Field "${r.name.value}" is not defined by type "${n.name}".`+te(o),{nodes:r}))}},NullValue(r){let n=e.getInputType();O(n)&&e.reportError(new f(`Expected value of type "${y(n)}", found ${F(r)}.`,{nodes:r}))},EnumValue:r=>Ge(e,r),IntValue:r=>Ge(e,r),FloatValue:r=>Ge(e,r),StringValue:r=>Ge(e,r),BooleanValue:r=>Ge(e,r)}}function Ge(e,t){let r=e.getInputType();if(!r)return;let n=X(r);if(!Z(n)){let i=y(r);e.reportError(new f(`Expected value of type "${i}", found ${F(t)}.`,{nodes:t}));return}try{if(n.parseLiteral(t,void 0)===void 0){let o=y(r);e.reportError(new f(`Expected value of type "${o}", found ${F(t)}.`,{nodes:t}))}}catch(i){let o=y(r);i instanceof f?e.reportError(i):e.reportError(new f(`Expected value of type "${o}", found ${F(t)}; `+i.message,{nodes:t,originalError:i}))}}function _s(e,t,r,n){var i;let o=Object.keys(n);if(o.length!==1){e.reportError(new f(`OneOf Input Object "${r.name}" must specify exactly one key.`,{nodes:[t]}));return}let a=(i=n[o[0]])===null||i===void 0?void 0:i.value;(!a||a.kind===u.NULL)&&e.reportError(new f(`Field "${r.name}.${o[0]}" must be non-null.`,{nodes:[t]}))}function Gn(e){return{VariableDefinition(t){let r=j(e.getSchema(),t.type);if(r!==void 0&&!K(r)){let n=t.variable.name.value,i=F(t.type);e.reportError(new f(`Variable "$${n}" cannot be non-input type "${i}".`,{nodes:t.type}))}}}}function jn(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(r){let n=e.getRecursiveVariableUsages(r);for(let{node:i,type:o,defaultValue:s,parentType:a}of n){let c=i.name.value,p=t[c];if(p&&o){let l=e.getSchema(),d=j(l,p.type);if(d&&!xs(l,d,p.defaultValue,o,s)){let h=y(d),T=y(o);e.reportError(new f(`Variable "$${c}" of type "${h}" used in position expecting type "${T}".`,{nodes:[p,i]}))}D(a)&&a.isOneOf&>(d)&&e.reportError(new f(`Variable "$${c}" is of type "${d}" but must be non-nullable to be used for OneOf Input Object "${a}".`,{nodes:[p,i]}))}}}},VariableDefinition(r){t[r.variable.name.value]=r}}}function xs(e,t,r,n,i){if(O(n)&&!O(t)){if(!(r!=null&&r.kind!==u.NULL)&&!(i!==void 0))return!1;let a=n.ofType;return Le(e,t,a)}return Le(e,t,n)}var Qn=Object.freeze([dn]),st=Object.freeze([on,Mn,ln,wn,sr,an,Gn,_n,sn,kn,pn,yn,Rn,mn,$n,hn,Tn,or,gr,cn,Tr,Vn,On,jn,Nn,Er,...Qn]),Ls=Object.freeze([fn,Pn,Un,Fn,Cn,Dn,An,sr,or,gr,bn,un,Tr,Er,Sn]);var Bn=class{constructor(t,r){this._ast=t,this._fragments=void 0,this._fragmentSpreads=new Map,this._recursivelyReferencedFragments=new Map,this._onError=r}get[Symbol.toStringTag](){return"ASTValidationContext"}reportError(t){this._onError(t)}getDocument(){return this._ast}getFragment(t){let r;if(this._fragments)r=this._fragments;else{r=Object.create(null);for(let n of this.getDocument().definitions)n.kind===u.FRAGMENT_DEFINITION&&(r[n.name.value]=n);this._fragments=r}return r[t]}getFragmentSpreads(t){let r=this._fragmentSpreads.get(t);if(!r){r=[];let n=[t],i;for(;i=n.pop();)for(let o of i.selections)o.kind===u.FRAGMENT_SPREAD?r.push(o):o.selectionSet&&n.push(o.selectionSet);this._fragmentSpreads.set(t,r)}return r}getRecursivelyReferencedFragments(t){let r=this._recursivelyReferencedFragments.get(t);if(!r){r=[];let n=Object.create(null),i=[t.selectionSet],o;for(;o=i.pop();)for(let s of this.getFragmentSpreads(o)){let a=s.name.value;if(n[a]!==!0){n[a]=!0;let c=this.getFragment(a);c&&(r.push(c),i.push(c.selectionSet))}}this._recursivelyReferencedFragments.set(t,r)}return r}};var xt=class extends Bn{constructor(t,r,n,i){super(r,i),this._schema=t,this._typeInfo=n,this._variableUsages=new Map,this._recursiveVariableUsages=new Map}get[Symbol.toStringTag](){return"ValidationContext"}getSchema(){return this._schema}getVariableUsages(t){let r=this._variableUsages.get(t);if(!r){let n=[],i=new it(this._schema);Ae(t,nr(i,{VariableDefinition:()=>!1,Variable(o){n.push({node:o,type:i.getInputType(),defaultValue:i.getDefaultValue(),parentType:i.getParentInputType()})}})),r=n,this._variableUsages.set(t,r)}return r}getRecursiveVariableUsages(t){let r=this._recursiveVariableUsages.get(t);if(!r){r=this.getVariableUsages(t);for(let n of this.getRecursivelyReferencedFragments(t))r=r.concat(this.getVariableUsages(n));this._recursiveVariableUsages.set(t,r)}return r}getType(){return this._typeInfo.getType()}getParentType(){return this._typeInfo.getParentType()}getInputType(){return this._typeInfo.getInputType()}getParentInputType(){return this._typeInfo.getParentInputType()}getFieldDef(){return this._typeInfo.getFieldDef()}getDirective(){return this._typeInfo.getDirective()}getArgument(){return this._typeInfo.getArgument()}getEnumValue(){return this._typeInfo.getEnumValue()}};function vr(e,t,r=st,n,i=new it(e)){var o;let s=(o=n?.maxErrors)!==null&&o!==void 0?o:100;t||x(!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=$r(r.map(d=>d(p)));try{Ae(t,nr(i,l))}catch(d){if(d!==a)throw d}return c}function qi(e){let t;return function(n,i,o){t===void 0&&(t=new WeakMap);let s=t.get(n);s===void 0&&(s=new WeakMap,t.set(n,s));let a=s.get(i);a===void 0&&(a=new WeakMap,s.set(i,a));let c=a.get(o);return c===void 0&&(c=e(n,i,o),a.set(o,c)),c}}function qn(e){return Promise.all(Object.values(e)).then(t=>{let r=Object.create(null);for(let[n,i]of Object.keys(e).entries())r[i]=t[n];return r})}function Yi(e,t,r){let n=r;for(let i of e)n=ue(n)?n.then(o=>t(o,i)):t(n,i);return n}function Hi(e){return e instanceof Error?e:new Yn(e)}var Yn=class extends Error{constructor(t){super("Unexpected error value: "+y(t)),this.name="NonErrorThrown",this.thrownValue=t}};function Lt(e,t,r){var n;let i=Hi(e);return ws(i)?i:new f(i.message,{nodes:(n=i.nodes)!==null&&n!==void 0?n:t,source:i.source,positions:i.positions,path:r,originalError:i})}function ws(e){return Array.isArray(e.path)}var Ds=qi((e,t,r)=>Bi(e.schema,e.fragments,e.variableValues,t,r));function Or(e){arguments.length<2||x(!1,"graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.");let{schema:t,document:r,variableValues:n,rootValue:i}=e;As(t,r,n);let o=Fs(e);if(!("schema"in o))return{errors:o};try{let{operation:s}=o,a=Cs(o,s,i);return ue(a)?a.then(c=>Nr(c,o.errors),c=>(o.errors.push(c),Nr(null,o.errors))):Nr(a,o.errors)}catch(s){return o.errors.push(s),Nr(null,o.errors)}}function Nr(e,t){return t.length===0?{data:e}:{errors:t,data:e}}function As(e,t,r){t||x(!1,"Must provide document."),St(e),r==null||Y(r)||x(!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 Fs(e){var t,r,n;let{schema:i,document:o,rootValue:s,contextValue:a,variableValues:c,operationName:p,fieldResolver:l,typeResolver:d,subscribeFieldResolver:h,options:T}=e,g,P=Object.create(null);for(let de of o.definitions)switch(de.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=de}else((t=de.name)===null||t===void 0?void 0:t.value)===p&&(g=de);break;case u.FRAGMENT_DEFINITION:P[de.name.value]=de;break;default:}if(!g)return p!=null?[new f(`Unknown operation named "${p}".`)]:[new f("Must provide an operation.")];let ee=(r=g.variableDefinitions)!==null&&r!==void 0?r:[],z=xn(i,ee,c??{},{maxErrors:(n=T?.maxCoercionErrors)!==null&&n!==void 0?n:50});return z.errors?z.errors:{schema:i,fragments:P,rootValue:s,contextValue:a,operation:g,variableValues:z.coerced,fieldResolver:l??br,typeResolver:d??Jn,subscribeFieldResolver:h??br,errors:[]}}function Cs(e,t,r){let n=e.schema.getRootType(t.operation);if(n==null)throw new f(`Schema is not configured to execute ${t.operation} operation.`,{nodes:t});let i=yr(e.schema,e.fragments,e.variableValues,n,t.selectionSet),o=void 0;switch(t.operation){case $.QUERY:return Ir(e,n,r,o,i);case $.MUTATION:return ks(e,n,r,o,i);case $.SUBSCRIPTION:return Ir(e,n,r,o,i)}}function ks(e,t,r,n,i){return Yi(i.entries(),(o,[s,a])=>{let c=$e(n,s,t.name),p=Xi(e,t,r,a,c);return p===void 0?o:ue(p)?p.then(l=>(o[s]=l,o)):(o[s]=p,o)},Object.create(null))}function Ir(e,t,r,n,i){let o=Object.create(null),s=!1;try{for(let[a,c]of i.entries()){let p=$e(n,a,t.name),l=Xi(e,t,r,c,p);l!==void 0&&(o[a]=l,ue(l)&&(s=!0))}}catch(a){if(s)return qn(o).finally(()=>{throw a});throw a}return s?qn(o):o}function Xi(e,t,r,n,i){var o;let s=Vs(e.schema,t,n[0]);if(!s)return;let a=s.type,c=(o=s.resolve)!==null&&o!==void 0?o:e.fieldResolver,p=Ms(e,s,n,t,i);try{let l=dr(s,n[0],e.variableValues),d=e.contextValue,h=c(r,l,d,p),T;return ue(h)?T=h.then(g=>wt(e,a,n,p,i,g)):T=wt(e,a,n,p,i,h),ue(T)?T.then(void 0,g=>{let P=Lt(g,n,re(i));return Rr(P,a,e)}):T}catch(l){let d=Lt(l,n,re(i));return Rr(d,a,e)}}function Ms(e,t,r,n,i){return{fieldName:t.name,fieldNodes:r,returnType:t.type,parentType:n,path:i,schema:e.schema,fragments:e.fragments,rootValue:e.rootValue,operation:e.operation,variableValues:e.variableValues}}function Rr(e,t,r){if(O(t))throw e;return r.errors.push(e),null}function wt(e,t,r,n,i,o){if(o instanceof Error)throw o;if(O(t)){let s=wt(e,t.ofType,r,n,i,o);if(s===null)throw new Error(`Cannot return null for non-nullable field ${n.parentType.name}.${n.fieldName}.`);return s}if(o==null)return null;if(k(t))return Ps(e,t,r,n,i,o);if(Z(t))return Us(t,o);if(se(t))return $s(e,t,r,n,i,o);if(L(t))return Hn(e,t,r,n,i,o);V(!1,"Cannot complete value of unexpected output type: "+y(t))}function Ps(e,t,r,n,i,o){if(!rt(o))throw new f(`Expected Iterable, but did not find one for field "${n.parentType.name}.${n.fieldName}".`);let s=t.ofType,a=!1,c=Array.from(o,(p,l)=>{let d=$e(i,l,void 0);try{let h;return ue(p)?h=p.then(T=>wt(e,s,r,n,d,T)):h=wt(e,s,r,n,d,p),ue(h)?(a=!0,h.then(void 0,T=>{let g=Lt(T,r,re(d));return Rr(g,s,e)})):h}catch(h){let T=Lt(h,r,re(d));return Rr(T,s,e)}});return a?Promise.all(c):c}function Us(e,t){let r=e.serialize(t);if(r==null)throw new Error(`Expected \`${y(e)}.serialize(${y(t)})\` to return non-nullable value, returned: ${y(r)}`);return r}function $s(e,t,r,n,i,o){var s;let a=(s=t.resolveType)!==null&&s!==void 0?s:e.typeResolver,c=e.contextValue,p=a(o,c,n,t);return ue(p)?p.then(l=>Hn(e,Ji(l,e,t,r,n,o),r,n,i,o)):Hn(e,Ji(p,e,t,r,n,o),r,n,i,o)}function Ji(e,t,r,n,i,o){if(e==null)throw new f(`Abstract type "${r.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}". Either the "${r.name}" type should provide a "resolveType" function or each possible type should provide an "isTypeOf" function.`,n);if(L(e))throw new f("Support for returning GraphQLObjectType from resolveType was removed in graphql-js@16.0.0 please return type name instead.");if(typeof e!="string")throw new f(`Abstract type "${r.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}" with value ${y(o)}, received "${y(e)}".`);let s=t.schema.getType(e);if(s==null)throw new f(`Abstract type "${r.name}" was resolved to a type "${e}" that does not exist inside the schema.`,{nodes:n});if(!L(s))throw new f(`Abstract type "${r.name}" was resolved to a non-object type "${e}".`,{nodes:n});if(!t.schema.isSubType(r,s))throw new f(`Runtime Object type "${s.name}" is not a possible type for "${r.name}".`,{nodes:n});return s}function Hn(e,t,r,n,i,o){let s=Ds(e,t,r);if(t.isTypeOf){let a=t.isTypeOf(o,e.contextValue,n);if(ue(a))return a.then(c=>{if(!c)throw zi(t,o,r);return Ir(e,t,o,i,s)});if(!a)throw zi(t,o,r)}return Ir(e,t,o,i,s)}function zi(e,t,r){return new f(`Expected value of type "${e.name}" but got: ${y(t)}.`,{nodes:r})}var Jn=function(e,t,r,n){if(Y(e)&&typeof e.__typename=="string")return e.__typename;let i=r.schema.getPossibleTypes(n),o=[];for(let s=0;s<i.length;s++){let a=i[s];if(a.isTypeOf){let c=a.isTypeOf(e,t,r);if(ue(c))o[s]=c;else if(c)return o.length&&Promise.allSettled(o).catch(()=>{}),a.name}}if(o.length)return Promise.all(o).then(s=>{for(let a=0;a<s.length;a++)if(s[a])return i[a].name})},br=function(e,t,r,n){if(Y(e)||typeof e=="function"){let i=e[n.fieldName];return typeof i=="function"?e[n.fieldName](t,r,n):i}};function Vs(e,t,r){let n=r.name.value;return n===Ce.name&&e.getQueryType()===t?Ce:n===ke.name&&e.getQueryType()===t?ke:n===Me.name?Me:t.getFields()[n]}var E=require("@medplum/core"),Wi=require("rfc6902");var Dt={READER:"reader",WRITER:"writer"},Sr=class{async searchOne(t){return(await this.search({...t,count:1})).entry?.[0]?.resource}async searchResources(t){return(await this.search(t)).entry?.map(n=>n.resource)??[]}async conditionalCreate(t,r,n){if(r.resourceType!==t.resourceType)throw new E.OperationOutcomeError((0,E.badRequest)("Search type must match resource type for conditional update"));return r.count=2,r.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(r);if(i.length===1){let s=i[0];if(!n?.assignedId&&t.id&&t.id!==s.id)throw new E.OperationOutcomeError((0,E.badRequest)("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:i[0],outcome:E.allOk}}else if(i.length>1)throw new E.OperationOutcomeError(E.multipleMatches);return{resource:await this.createResource(t,n),outcome:E.created}},{serializable:!0})}async conditionalUpdate(t,r,n){if(r.resourceType!==t.resourceType)throw new E.OperationOutcomeError((0,E.badRequest)("Search type must match resource type for conditional update"));return r.count=2,r.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(r);if(i.length===0){if(t.id&&!n?.assignedId)throw new E.OperationOutcomeError((0,E.badRequest)("Cannot perform create as update with client-assigned ID",t.resourceType+".id"));return{resource:await this.createResource(t,n),outcome:E.created}}else if(i.length>1)throw new E.OperationOutcomeError(E.multipleMatches);let o=i[0];if(t.id&&t.id!==o.id)throw new E.OperationOutcomeError((0,E.badRequest)("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:await this.updateResource({...t,id:o.id},n),outcome:E.allOk}},{serializable:!0})}async conditionalDelete(t){t.count=2,t.sortRules=void 0,await this.withTransaction(async()=>{let r=await this.searchResources(t);if(r.length>1)throw new E.OperationOutcomeError(E.multipleMatches);if(!r.length)return;let n=r[0];await this.deleteResource(n.resourceType,n.id)},{serializable:!0})}async conditionalPatch(t,r){return t.count=2,t.sortRules=void 0,this.withTransaction(async()=>{let n=await this.searchResources(t);if(n.length>1)throw new E.OperationOutcomeError(E.multipleMatches);if(!n.length)throw new E.OperationOutcomeError(E.notFound);let i=n[0];return this.patchResource(i.resourceType,i.id,r)},{serializable:!0})}},zn=class extends Sr{constructor(){super();U(this,"resources");U(this,"history");this.resources=new Map,this.history=new Map}clear(){this.resources.clear(),this.history.clear()}setMode(r){}async createResource(r){let n=JSON.parse((0,E.stringify)(r));n.id||(n.id=this.generateId()),n.meta||(n.meta={}),n.meta.versionId||(n.meta.versionId=(0,E.generateId)()),n.meta.lastUpdated||(n.meta.lastUpdated=new Date().toISOString());let{resourceType:i,id:o}=n,s=this.resources.get(i);s||(s=new Map,this.resources.set(i,s)),s.set(o,n);let a=this.history.get(i);a||(a=new Map,this.history.set(i,a));let c=a.get(o);return c||(c=[],a.set(o,c)),c.push(n),(0,E.deepClone)(n)}generateId(){return(0,E.generateId)()}updateResource(r,n){if(!r.id)throw new E.OperationOutcomeError((0,E.badRequest)("Missing id"));if(n?.ifMatch){let o=n.ifMatch,s=this.resources.get(r.resourceType)?.get(r.id);if(!s)throw new E.OperationOutcomeError(E.notFound);if(s.meta?.versionId!==o)throw new E.OperationOutcomeError(E.preconditionFailed)}let i=(0,E.deepClone)(r);return i.meta&&(i.meta.versionId&&delete i.meta.versionId,i.meta.lastUpdated&&delete i.meta.lastUpdated),this.createResource(i)}async patchResource(r,n,i){let o=await this.readResource(r,n);try{let s=(0,Wi.applyPatch)(o,i).filter(Boolean);if(s.length>0)throw new E.OperationOutcomeError((0,E.badRequest)(s.map(a=>a.message).join(`
|
|
60
|
-
`)))}catch(s){throw new E.OperationOutcomeError((0,E.normalizeOperationOutcome)(s))}return this.updateResource(o)}async readResource(r,n){let i=this.resources.get(r)?.get(n);if(!i)throw new E.OperationOutcomeError(E.notFound);return(0,E.deepClone)(i)}async readReference(r){let n=r.reference?.split("/");if(n?.length!==2)throw new E.OperationOutcomeError((0,E.badRequest)("Invalid reference"));return this.readResource(n[0],n[1])}async readReferences(r){return Promise.all(r.map(n=>this.readReference(n)))}async readHistory(r,n){await this.readResource(r,n);let i=(this.history.get(r)?.get(n)??[]).reverse().map(o=>({resource:(0,E.deepClone)(o)}));return{resourceType:"Bundle",type:"history",...i.length?{entry:i}:void 0}}async readVersion(r,n,i){await this.readResource(r,n);let o=this.history.get(r)?.get(n)?.find(s=>s.meta?.versionId===i);if(!o)throw new E.OperationOutcomeError(E.notFound);return(0,E.deepClone)(o)}async search(r){let{resourceType:n}=r,i=this.resources.get(n)??new Map,o=[];for(let a of i.values())(0,E.matchesSearchRequest)(a,r)&&o.push(a);let s=o.map(a=>({resource:(0,E.deepClone)(a)}));if(r.sortRules)for(let a of r.sortRules)s=s.sort((c,p)=>pa(c.resource,p.resource,a));return r.offset!==void 0&&(s=s.slice(r.offset)),r.count!==void 0&&(s=s.slice(0,r.count)),{resourceType:"Bundle",type:"searchset",entry:s.length?s:void 0,total:o.length}}async searchByReference(r,n,i){r.filters??=[];let o={};for(let s of i){r.filters.push({code:n,operator:E.Operator.EQUALS,value:s});let a=await this.search(r);o[s]=[];for(let c of a.entry??[])c.resource&&o[s].push(c.resource);r.filters.pop()}return o}async deleteResource(r,n){if(!this.resources.get(r)?.get(n))throw new E.OperationOutcomeError(E.notFound);this.resources.get(r)?.delete(n)}withTransaction(r){return r(void 0)}},pa=(e,t,r)=>{let i=E.globalSchema.types[e.resourceType]?.searchParams?.[r.code]?.expression;if(!i)return 0;let o=JSON.stringify((0,E.evalFhirPath)(i,e)),s=JSON.stringify((0,E.evalFhirPath)(i,t));return o.localeCompare(s)*(r.descending?-1:1)};var je=require("@medplum/core");var ye=require("@medplum/core"),Ki=ui(require("dataloader"),1);var _r={base64Binary:N,boolean:q,canonical:N,code:N,date:N,dateTime:N,decimal:fe,id:me,instant:N,integer:fe,markdown:N,number:fe,oid:N,positiveInt:fe,string:N,time:N,unsignedInt:fe,uri:N,url:N,uuid:N,xhtml:N,"http://hl7.org/fhirpath/System.Boolean":q,"http://hl7.org/fhirpath/System.Date":N,"http://hl7.org/fhirpath/System.DateTime":N,"http://hl7.org/fhirpath/System.Decimal":fe,"http://hl7.org/fhirpath/System.Integer":fe,"http://hl7.org/fhirpath/System.String":N,"http://hl7.org/fhirpath/System.Time":N};function Zi(e,t,r){let n;if(t){let o=r._reference;delete r._reference,n={code:o,operator:ye.Operator.EQUALS,value:(0,ye.getReferenceString)(t)}}return r=Object.fromEntries(Object.entries(r).map(([o,s])=>[la(o),s])),{searchRequest:(0,ye.parseSearchRequest)(e,r),referenceFilter:n}}function eo(e,t){let r=e.filters||[];e.filters=[t,...r]}function to(e,t,r){let{searchRequest:n,referenceFilter:i}=Zi(e,t,r);return i&&eo(n,i),n}function Xn(e,t){e.count=Math.min(e.count??ye.DEFAULT_SEARCH_COUNT,t??ye.DEFAULT_MAX_SEARCH_COUNT)}function la(e){return e.startsWith("_")?e:e.replaceAll("_","-")}function Wn(e){return e.replaceAll("-","_")}function fa(e){return JSON.stringify(e,(r,n)=>n&&typeof n=="object"&&!Array.isArray(n)?Object.keys(n).sort((i,o)=>i.localeCompare(o)).reduce((i,o)=>(i[o]=n[o],i),{}):n)}async function xr(e,t,r,n){if(r.searchCount++,r.config?.graphqlMaxSearches&&r.searchCount>r.config.graphqlMaxSearches)throw new Error("Maximum number of searches exceeded");let i=n.fieldName,o=i.substring(0,i.length-4),{searchRequest:s,referenceFilter:a}=Zi(o,e,t);Xn(s,r.config?.graphqlMaxSearches);let c=r.config?.graphqlBatchedSearchSize??0;if(c===0||!a)return a&&eo(s,a),(await r.repo.search(s)).entry?.map(h=>h.resource);let p=fa(s);return(r.searchDataLoaders[p]??=da(r.repo,s,c)).load(a)}function da(e,t,r){return new Ki.default(async n=>{let i=await e.searchByReference(t,n[0].code,n.map(o=>o.value));return n.map(o=>i[o.value])},{maxBatchSize:r})}function At(e){let t={_count:{type:le,description:"Specify how many elements to return from a repeating list."},_offset:{type:le,description:"Specify the offset to start at for a repeating element."},_sort:{type:N,description:"Specify the sort order by comma-separated list of sort rules in priority order."},_id:{type:N,description:"Select resources based on the logical id of the resource."},_lastUpdated:{type:N,description:"Select resources based on the last time they were changed."},_filter:{type:N,description:" The _filter parameter provides a syntax for expressing a set of query expressions on the underlying resources."},_cursor:{type:N,description:"The _cursor parameter is used to retrieve the next page of results from a previous search."}},r=(0,ye.getSearchParameters)(e);if(r)for(let[n,i]of Object.entries(r))t[Wn(n)]={type:N,description:i.description};return t}function Kn(e,t){return e.fieldNodes.some(r=>r.selectionSet?.selections.some(n=>n.kind===u.FIELD&&n.name.value===t))}function ro(e){return{resourceType:"OperationOutcome",issue:e.map(t=>({severity:"error",code:"invalid",details:{text:t.message}}))}}var no={..._r},Zn;function Ft(e,t){let r=no[e];return r||(r=ma(e,t),no[e]=r),r}function ma(e,t){let r=(0,je.getDataType)(e);return new xe({name:e+t,description:r.description,fields:()=>ha(e,t)})}function ha(e,t){let r={};if((0,je.isResourceType)(e)){let n={description:"The type of resource",type:N};r.resourceType=n}return ya(e,r,t),r}function ya(e,t,r){let n=(0,je.getDataType)(e);for(let[i,o]of Object.entries(n.elements))for(let s of o.type)Ta(t,i,o,s,r)}function Ta(e,t,r,n,i){let o=n.code;if(o==="Resource")return;(o==="Element"||o==="BackboneElement")&&(o=r.type[0].code);let s={description:r.description,type:Ft(o,i)};r.max>1&&(s.type=new M(new I(Ft(o,i)))),r.min>0&&!t.endsWith("[x]")&&(s.type=new I(s.type));let a=t.split(".").pop().replace("[x]",(0,je.capitalize)(n.code));e[a]=s}function io(){return Zn||(Zn=new xe({name:"PatchOperationInput",description:"A JSON Patch operation as per RFC 6902",fields:{op:{type:new I(N),description:"The operation to perform"},path:{type:new I(N),description:"A JSON-Pointer"},value:{type:N,description:"The value to use within the operations. (May be any scalar, but GraphQL input types are limited.)"}}})),Zn}var C=require("@medplum/core");var Lr={..._r};function Qe(e){let t=Lr[e];return t||(t=ei(e),Lr[e]=t),t}function ei(e){if(e==="ResourceList")return new Fe({name:"ResourceList",types:()=>(0,C.getResourceTypes)().map(Qe).filter(r=>!!r),resolveType:_a});let t=(0,C.getDataType)(e);return new H({name:e,description:t.description,fields:()=>ga(e)})}function ga(e){let t={};return Ea(e,t),Ra(e,t),t}function Ea(e,t){let r=(0,C.getDataType)(e);(0,C.isResourceTypeSchema)(r)&&(t.resourceType={type:new I(N),description:"Resource Type"}),e==="Reference"&&(t.resource={description:"Reference",type:Qe("ResourceList"),resolve:Sa});for(let[n,i]of Object.entries(r.elements))for(let o of i.type)va(t,n,i,o)}function va(e,t,r,n){let i=n.code;(i==="Element"||i==="BackboneElement")&&(i=r.type[0].code),i==="Resource"&&(i="ResourceList");let o={description:r.description,type:ba(r,i,t),resolve:Oa};r.max>1&&(o.args=Na(i));let s=t.split(".").pop().replace("[x]",(0,C.capitalize)(n.code));e[s]=o}function Na(e){let t={_count:{type:le,description:"Specify how many elements to return from a repeating list."},_offset:{type:le,description:"Specify the offset to start at for a repeating element."}};if(!(0,C.isLowerCase)(e.charAt(0))){t.fhirpath={type:N,description:"A FHIRPath statement selecting which of the subnodes is to be included"};let r=(0,C.tryGetDataType)(e);if(r?.elements)for(let[n,i]of Object.entries(r.elements))for(let o of i.type)Ia(t,n,i,o)}return t}function Ia(e,t,r,n){let i=n.code,o=t.replace("[x]",(0,C.capitalize)(i));switch(i){case"canonical":case"code":case"id":case"oid":case"string":case"uri":case"url":case"uuid":case"http://hl7.org/fhirpath/System.String":e[o]={type:N,description:r.description};break}}function Ra(e,t){for(let r of(0,C.getResourceTypes)()){let n=Qe(r),i=(0,C.getSearchParameters)(r),o={},s=0;if(i)for(let[a,c]of Object.entries(i))c.target?.includes(e)&&(o[Wn(a)]={value:a},s++);if(s>0){let a=new be({name:e+"_"+r+"_reference",values:o}),c=At(r);c._reference={type:new I(a),description:`Specify which property to use for reverse lookup for ${r}`},t[r+"List"]={type:new M(n),args:c,resolve:xr}}}}function ba(e,t,r){let n=Qe(t);return e.max>1&&(n=new M(new I(n))),e.min!==0&&!r.endsWith("[x]")&&(n=new I(n)),n}async function Oa(e,t,r,n){let i=e?.[n.fieldName];if(!t||!i)return i;let{_offset:o,_count:s,fhirpath:a,...c}=t,p=i;for(let[l,d]of Object.entries(c))p=p.filter(h=>h[l]===d);return a&&(p=p.filter(l=>(0,C.toJsBoolean)((0,C.evalFhirPathTyped)(a,[(0,C.toTypedValue)(l)])))),o&&(p=p.slice(o)),s&&(p=p.slice(0,s)),p}async function Sa(e,t,r){if((0,C.isReference)(e))try{return await r.dataLoader.load(e)}catch(n){throw new C.OperationOutcomeError((0,C.normalizeOperationOutcome)(n),{cause:n})}}function _a(e){let t=e?.resourceType;if(t)return Qe(t).name}var xa=new A.LRUCache,ti;async function so(e,t,r,n){let{query:i,operationName:o,variables:s}=e.body;if(!i)return[(0,A.badRequest)("Must provide query.")];let a;try{a=jt(i)}catch{return[(0,A.badRequest)("GraphQL syntax error.")]}let c=Da(),p=[...st,Qa(r,e.config?.graphqlMaxDepth),qa(r)],l=vr(c,a,p);if(l.length>0)return[ro(l)];let d=La(i);if(d&&!r.options?.introspectionEnabled)return[A.forbidden];!n?.batch&&!wa(i)&&t.setMode(Dt.READER);let h=new oo.default(g=>t.readReferences(g)),T=d&&xa.get(i);if(!T){let g={repo:t,config:e.config,dataLoader:h,searchCount:0,searchDataLoaders:Object.create(null)};T=await Or({schema:c,document:a,contextValue:g,operationName:o,variableValues:s})}return[A.allOk,T,{contentType:A.ContentType.JSON}]}function La(e){return e.includes("query IntrospectionQuery")||e.includes("__schema")}function wa(e){return e.includes("mutation")}function Da(){return ti||(ti=Aa()),ti}function Aa(){for(let r of(0,A.getResourceTypes)())Lr[r]=ei(r);let e={},t={};for(let r of(0,A.getResourceTypes)()){let n=Qe(r);e[r]={type:n,args:{id:{type:new I(me),description:r+" ID"}},resolve:Pa},e[r+"List"]={type:new M(n),args:At(r),resolve:xr},e[r+"Connection"]={type:ka(r,n),args:At(r),resolve:Ma},t[r+"Create"]={type:n,args:Fa(r),resolve:Ua},t[r+"Update"]={type:n,args:Ca(r),resolve:$a},t[r+"Patch"]={type:n,args:za(r),resolve:Ga},t[r+"Delete"]={type:n,args:{id:{type:new I(me),description:r+" ID"}},resolve:Va}}return new Pe({query:new H({name:"QueryType",fields:e}),mutation:new H({name:"MutationType",fields:t})})}function Fa(e){return{res:{type:new I(Ft(e,"Create")),description:e+" Create"}}}function Ca(e){return{id:{type:new I(me),description:e+" ID"},res:{type:new I(Ft(e,"Update")),description:e+" Update"}}}function ka(e,t){return new H({name:e+"Connection",fields:{count:{type:le},offset:{type:le},pageSize:{type:le},first:{type:N},previous:{type:N},next:{type:N},last:{type:N},edges:{type:new M(new H({name:e+"ConnectionEdge",fields:{mode:{type:N},score:{type:fe},resource:{type:t}}}))}}})}async function Ma(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-10),s=to(o,e,t);Kn(n,"count")&&(s.total="accurate"),Kn(n,"edges")||(s.count=0),Xn(s,r.config?.graphqlMaxSearches);let a=await r.repo.search(s);return{count:a.total,offset:s.offset??0,pageSize:s.count??A.DEFAULT_SEARCH_COUNT,edges:a.entry?.map(c=>({mode:c.search?.mode,score:c.search?.score,resource:c.resource})),next:Ja(a)}}async function Pa(e,t,r,n){try{return await r.dataLoader.load({reference:`${n.fieldName}/${t.id}`})}catch(i){throw new A.OperationOutcomeError((0,A.normalizeOperationOutcome)(i),{cause:i})}}async function Ua(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-6),s=t.res;if(s.resourceType!==o)throw new A.OperationOutcomeError((0,A.badRequest)("Invalid resourceType"));return r.repo.createResource((0,A.deepClone)(s))}async function $a(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-6),s=t.res,a=t.id;if(s.resourceType!==o)throw new A.OperationOutcomeError((0,A.badRequest)("Invalid resourceType"));if(a!==s.id)throw new A.OperationOutcomeError((0,A.badRequest)("Invalid ID"));return r.repo.updateResource((0,A.deepClone)(s))}async function Va(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-6);await r.repo.deleteResource(o,t.id)}async function Ga(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-5),s=t.id,a=t.patch;if(!o||!s||!Array.isArray(a))throw new A.OperationOutcomeError((0,A.badRequest)("Invalid patch arguments"));return r.repo.patchResource(o,s,a)}var ja=12,Qa=(e,t=ja)=>r=>new ri(r,e,t),ri=class{constructor(t,r,n){U(this,"context");U(this,"maxDepth");U(this,"fragmentDepths");U(this,"router");this.context=t,this.router=r,this.fragmentDepths=Object.create(null),this.maxDepth=n}OperationDefinition(t){let r=this.getDepth(...t.selectionSet.selections);r.depth>this.maxDepth&&this.router.log("warn","Query max depth too high",{depth:r.depth,limit:this.maxDepth,query:t.loc?.source?.body})}getDepth(...t){let r={depth:-1};for(let n of t){let i={depth:0};if(n.kind===u.FIELD)n.selectionSet?.selections?(i=this.getDepth(...n.selectionSet.selections),i.depth+=1):i={depth:0,node:n};else if(n.kind===u.FRAGMENT_SPREAD){let o=n.name.value,s=this.context.getFragment(o),a=this.fragmentDepths[o];a?i=a:s&&(i=this.getDepth(...s.selectionSet.selections),this.fragmentDepths[o]=i)}else n.kind===u.INLINE_FRAGMENT&&(i=this.getDepth(...n.selectionSet.selections));if(i.depth>this.maxDepth)return i;i.depth>r.depth&&(r=i)}return r}},Ba=1e4,qa=(e,t)=>r=>new ni(r,e,t),ni=class{constructor(t,r,n){U(this,"context");U(this,"maxCost");U(this,"debug");U(this,"router");U(this,"fragmentCosts");this.context=t,this.maxCost=n?.maxCost??Ba,this.debug=n?.debug??!1,this.router=r,this.fragmentCosts=Object.create(null)}OperationDefinition(t){let r=0;for(let n of t.selectionSet.selections){let i=performance.now(),o=this.calculateCost(n);r+=o,this.log(n.kind,"node has final cost",o,"(",performance.now()-i,"ms)"),r>this.maxCost&&this.router.log("warn","GraphQL query too complex",{cost:r,limit:this.maxCost,query:t.loc?.source?.body})}}calculateCost(...t){let r=0;for(let n of t){if(n.kind===u.FIELD&&n.selectionSet){let i=0,o=1;Ya(n)?(this.log("Found search field",n.name.value),i=8,o=this.getCount(n.arguments)??20):Ha(n)&&(this.log("Found linked resource"),i=1,o=2);let s=i+o*this.calculateCost(...n.selectionSet.selections);s&&this.log("Field",n.name.value,"costs",s),r+=s}else if(n.kind===u.FRAGMENT_SPREAD){let i=n.name.value,o=this.context.getFragment(i),s=this.fragmentCosts[i];if(s!==void 0)this.log("Fragment",i,"costs",s,"(cached)"),r+=s;else if(o){let a=this.calculateCost(...o.selectionSet.selections);this.fragmentCosts[i]=a,this.log("Fragment",i,"costs",a),r+=a}}else if(n.kind===u.INLINE_FRAGMENT){let i=this.calculateCost(...n.selectionSet.selections);this.log("Inline fragment on",n.typeCondition?.name.value,"costs",i),r+=i}if(r>this.maxCost)return r}return r}getCount(t){let r=t?.find(n=>n.name.value==="_count");if(r?.value.kind===u.INT)return Number.parseInt(r.value.value,10)}log(...t){this.debug&&console.log(...t)}};function Ya(e){return e.name.value.endsWith("List")}function Ha(e){return e.name.value==="resource"}function Ja(e){let t=e.link?.find(r=>r.relation==="next")?.url;if(t)return new URL(t).searchParams.get("_cursor")||void 0}function za(e){return{id:{type:new I(me),description:e+" ID"},patch:{type:new I(new M(new I(io()))),description:"Array of patch operations"}}}var Ct=class{constructor(){U(this,"routes",[])}add(t,r,n,i){let o=r.split("/").filter(s=>!!s).map(s=>s.startsWith(":")?{value:s.substring(1),param:!0}:{value:s});this.routes.push({method:t,path:o,handler:n,data:i})}find(t,r){let n=r.indexOf("?"),i=n>-1,o=r.substring(0,i?n:r.length).split("/").filter(Boolean),s,a=-1;for(let c of this.routes){let p=Xa(c,t,o);p>a&&(s=c,a=p)}if(s)return{handler:s.handler,path:o.join("/"),params:Wa(s,o),query:i?Ka(r):void 0,data:s.data}}};function Xa(e,t,r){if(t!==e.method||r.length!==e.path.length)return-1;let n=0;for(let i=0;i<r.length;i++)if(!e.path[i].param){if(r[i]!==e.path[i].value)return-1;n++}return n}function Wa(e,t){let r=Object.create(null);for(let n=0;n<t.length;n++)e.path[n].param&&(r[e.path[n].value]=t[n]);return r}function Ka(e){let t=new URL(e,"https://example.com/"),r=Object.create(null),n=t.searchParams;for(let i of n.keys()){let o=n.getAll(i);r[i]=o.length===1?o[0]:o}return r}async function Za(e,t,r){let n=e.body;if(n.resourceType!=="Bundle")return[(0,_.badRequest)("Not a bundle")];let i=await kt(e,t,r,n);return[_.allOk,i]}async function ec(e,t,r,n){oi(e,t,n);let{resourceType:i}=e.params,o=await t.search((0,_.parseSearchRequest)(i,e.query));return[_.allOk,o]}async function tc(e,t,r,n){oi(e,t,n);let i=(0,_.parseSearchRequest)("MultipleTypes",e.query);if(!i.types||i.types.length===0)return[(0,_.badRequest)("No types specified")];let o=await t.search(i);return[_.allOk,o]}async function rc(e,t,r,n){oi(e,t,n);let{resourceType:i}=e.params,o=e.body,s=await t.search((0,_.parseSearchRequest)(i,o));return[_.allOk,s]}function oi(e,t,r){!r?.batch&&e.config?.searchOnReader&&t.setMode(Dt.READER)}async function nc(e,t,r,n){let{resourceType:i}=e.params,o=e.body,s=!!n?.batch;if(e.query?._account&&typeof e.query._account=="string"&&(o.meta=o.meta||{},o.meta.account={reference:e.query._account}),e.headers?.["if-none-exist"]){let a=(0,_.singularize)(e.headers["if-none-exist"]),c=await t.conditionalCreate(o,(0,_.parseSearchRequest)(`${i}?${a}`),{assignedId:s});return[c.outcome,c.resource]}return co(i,o,t,{assignedId:s})}async function co(e,t,r,n){if(t.resourceType!==e)return[(0,_.badRequest)(`Incorrect resource type: expected ${e}, but found ${t.resourceType||"<EMPTY>"}`)];let i=await r.createResource(t,n);return[_.created,i]}async function ic(e,t){let{resourceType:r,id:n}=e.params,i=await t.readResource(r,n);return[_.allOk,i]}async function oc(e,t){let{resourceType:r,id:n}=e.params,i=ao(e.query,"_offset"),o=ao(e.query,"_count"),s=await t.readHistory(r,n,{offset:i,limit:o});return[_.allOk,s]}async function sc(e,t){let{resourceType:r,id:n,vid:i}=e.params,o=await t.readVersion(r,n,i);return[_.allOk,o]}async function ac(e,t){let{resourceType:r,id:n}=e.params,i=e.body;return uo(r,n,i,t,{ifMatch:dc(e.headers?.["if-match"])})}async function uo(e,t,r,n,i){if(r.resourceType!==e)return[(0,_.badRequest)("Incorrect resource type")];if(r.id!==t)return[(0,_.badRequest)("Incorrect resource ID")];let o=await n.updateResource(r,i);return[_.allOk,o]}async function cc(e,t,r,n){let{resourceType:i}=e.params,o=e.body,s=(0,_.parseSearchRequest)(i,e.query),a=await t.conditionalUpdate(o,s,{assignedId:n?.batch});return[a.outcome,a.resource]}async function uc(e,t){let{resourceType:r,id:n}=e.params;return await t.deleteResource(r,n),[_.allOk]}async function pc(e,t){let{resourceType:r}=e.params,n=(0,_.parseSearchRequest)(r,e.query);return await t.conditionalDelete(n),[_.allOk]}async function lc(e,t){let{resourceType:r,id:n}=e.params,i=e.body;if(!i)return[(0,_.badRequest)("Empty patch body")];if(!Array.isArray(i))return[(0,_.badRequest)("Patch body must be an array")];let o=await t.patchResource(r,n,i);return[_.allOk,o]}async function fc(e,t){let{resourceType:r}=e.params,n=e.body;if(!n)return[(0,_.badRequest)("Empty patch body")];if(!Array.isArray(n))return[(0,_.badRequest)("Patch body must be an array")];let i=(0,_.parseSearchRequest)(r,e.query),o=await t.conditionalPatch(i,n);return[_.allOk,o]}var ii=class extends _.EventTarget{constructor(r={}){super();U(this,"router",new Ct);U(this,"options");this.options=r,this.router.add("GET","",tc,{interaction:"search-system"}),this.router.add("POST","",Za,{interaction:"batch"}),this.router.add("GET",":resourceType",ec,{interaction:"search-type"}),this.router.add("POST",":resourceType/_search",rc,{interaction:"search-type"}),this.router.add("POST",":resourceType",nc,{interaction:"create"}),this.router.add("GET",":resourceType/:id",ic,{interaction:"read"}),this.router.add("GET",":resourceType/:id/_history",oc,{interaction:"history-instance"}),this.router.add("GET",":resourceType/:id/_history/:vid",sc,{interaction:"vread"}),this.router.add("PUT",":resourceType/:id",ac,{interaction:"update"}),this.router.add("PUT",":resourceType",cc,{interaction:"update"}),this.router.add("DELETE",":resourceType/:id",uc,{interaction:"delete"}),this.router.add("DELETE",":resourceType",pc,{interaction:"delete"}),this.router.add("PATCH",":resourceType/:id",lc,{interaction:"patch"}),this.router.add("PATCH",":resourceType",fc,{interaction:"patch"}),this.router.add("POST","$graphql",so,{interaction:"operation"})}add(r,n,i,o){this.router.add(r,n,i,{interaction:o??"operation"})}find(r,n){return this.router.find(r,n)}async handleRequest(r,n){let i=r.url;if(r.pathname)throw new _.OperationOutcomeError((0,_.badRequest)("FhirRequest must specify url instead of pathname"));let o=this.find(r.method,i);if(!o)return[_.notFound];let{handler:s,path:a,params:c,query:p}=o;r.params=c,r.pathname=a,p&&(r.query=p);try{return await s(r,n,this)}catch(l){return[(0,_.normalizeOperationOutcome)(l)]}}log(r,n,i){let o={type:r,message:n,data:i};this.dispatchEvent(o)}};function dc(e){if(!e)return;let t=/"([^"]+)"/.exec(e);return t?t[1]:void 0}function ao(e,t){let r=e[t],n;return Array.isArray(r)?n=r.at(-1):n=r,n?Number.parseInt(n,10):void 0}function mc(e,t,r){return{method:e,url:t,pathname:"",query:{},params:{},body:r}}0&&(module.exports={FhirRepository,FhirRouter,MemoryRepository,RepositoryMode,Router,createResourceImpl,makeSimpleRequest,processBatch,updateResourceImpl});
|
|
59
|
+
`))}var Zr=class{constructor(t){this._errors=[],this.schema=t}reportError(t,r){let n=Array.isArray(r)?r.filter(Boolean):r;this._errors.push(new f(t,{nodes:n}))}getErrors(){return this._errors}};function zo(e){let t=e.schema,r=t.getQueryType();if(!r)e.reportError("Query root type must be provided.",t.astNode);else if(!L(r)){var n;e.reportError(`Query root type must be Object type, it cannot be ${y(r)}.`,(n=Kr(t,$.QUERY))!==null&&n!==void 0?n:r.astNode)}let i=t.getMutationType();if(i&&!L(i)){var o;e.reportError(`Mutation root type must be Object type if provided, it cannot be ${y(i)}.`,(o=Kr(t,$.MUTATION))!==null&&o!==void 0?o:i.astNode)}let s=t.getSubscriptionType();if(s&&!L(s)){var a;e.reportError(`Subscription root type must be Object type if provided, it cannot be ${y(s)}.`,(a=Kr(t,$.SUBSCRIPTION))!==null&&a!==void 0?a:s.astNode)}}function Kr(e,t){var r;return(r=[e.astNode,...e.extensionASTNodes].flatMap(n=>{var i;return(i=n?.operationTypes)!==null&&i!==void 0?i:[]}).find(n=>n.operation===t))===null||r===void 0?void 0:r.type}function Xo(e){for(let r of e.schema.getDirectives()){if(!It(r)){e.reportError(`Expected directive but got: ${y(r)}.`,r?.astNode);continue}Ue(e,r),r.locations.length===0&&e.reportError(`Directive @${r.name} must include 1 or more locations.`,r.astNode);for(let n of r.args)if(Ue(e,n),K(n.type)||e.reportError(`The type of @${r.name}(${n.name}:) must be Input Type but got: ${y(n.type)}.`,n.astNode),Se(n)&&n.deprecationReason!=null){var t;e.reportError(`Required argument @${r.name}(${n.name}:) cannot be deprecated.`,[en(n.astNode),(t=n.astNode)===null||t===void 0?void 0:t.type])}}}function Ue(e,t){t.name.startsWith("__")&&e.reportError(`Name "${t.name}" must not begin with "__", which is reserved by GraphQL introspection.`,t.astNode)}function Wo(e){let t=is(e),r=e.schema.getTypeMap();for(let n of Object.values(r)){if(!Ht(n)){e.reportError(`Expected GraphQL named type but got: ${y(n)}.`,n.astNode);continue}Xr(n)||Ue(e,n),L(n)||w(n)?(Di(e,n),Ai(e,n)):W(n)?es(e,n):B(n)?ts(e,n):D(n)&&(rs(e,n),t(n))}}function Di(e,t){let r=Object.values(t.getFields());r.length===0&&e.reportError(`Type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let s of r){if(Ue(e,s),!Oe(s.type)){var n;e.reportError(`The type of ${t.name}.${s.name} must be Output Type but got: ${y(s.type)}.`,(n=s.astNode)===null||n===void 0?void 0:n.type)}for(let a of s.args){let c=a.name;if(Ue(e,a),!K(a.type)){var i;e.reportError(`The type of ${t.name}.${s.name}(${c}:) must be Input Type but got: ${y(a.type)}.`,(i=a.astNode)===null||i===void 0?void 0:i.type)}if(Se(a)&&a.deprecationReason!=null){var o;e.reportError(`Required argument ${t.name}.${s.name}(${c}:) cannot be deprecated.`,[en(a.astNode),(o=a.astNode)===null||o===void 0?void 0:o.type])}}}}function Ai(e,t){let r=Object.create(null);for(let n of t.getInterfaces()){if(!w(n)){e.reportError(`Type ${y(t)} must only implement Interface types, it cannot implement ${y(n)}.`,Ot(t,n));continue}if(t===n){e.reportError(`Type ${t.name} cannot implement itself because it would create a circular reference.`,Ot(t,n));continue}if(r[n.name]){e.reportError(`Type ${t.name} can only implement ${n.name} once.`,Ot(t,n));continue}r[n.name]=!0,Zo(e,t,n),Ko(e,t,n)}}function Ko(e,t,r){let n=t.getFields();for(let c of Object.values(r.getFields())){let p=c.name,l=n[p];if(!l){e.reportError(`Interface field ${r.name}.${p} expected but ${t.name} does not provide it.`,[c.astNode,t.astNode,...t.extensionASTNodes]);continue}if(!Le(e.schema,l.type,c.type)){var i,o;e.reportError(`Interface field ${r.name}.${p} expects type ${y(c.type)} but ${t.name}.${p} is type ${y(l.type)}.`,[(i=c.astNode)===null||i===void 0?void 0:i.type,(o=l.astNode)===null||o===void 0?void 0:o.type])}for(let d of c.args){let h=d.name,T=l.args.find(g=>g.name===h);if(!T){e.reportError(`Interface field argument ${r.name}.${p}(${h}:) expected but ${t.name}.${p} does not provide it.`,[d.astNode,l.astNode]);continue}if(!Xt(d.type,T.type)){var s,a;e.reportError(`Interface field argument ${r.name}.${p}(${h}:) expects type ${y(d.type)} but ${t.name}.${p}(${h}:) 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 h=d.name;!c.args.find(g=>g.name===h)&&Se(d)&&e.reportError(`Object field ${t.name}.${p} includes required argument ${h} that is missing from the Interface field ${r.name}.${p}.`,[d.astNode,c.astNode])}}}function Zo(e,t,r){let n=t.getInterfaces();for(let i of r.getInterfaces())n.includes(i)||e.reportError(i===t?`Type ${t.name} cannot implement ${r.name} because it would create a circular reference.`:`Type ${t.name} must implement ${i.name} because it is implemented by ${r.name}.`,[...Ot(r,i),...Ot(t,r)])}function es(e,t){let r=t.getTypes();r.length===0&&e.reportError(`Union type ${t.name} must define one or more member types.`,[t.astNode,...t.extensionASTNodes]);let n=Object.create(null);for(let i of r){if(n[i.name]){e.reportError(`Union type ${t.name} can only include type ${i.name} once.`,Fi(t,i.name));continue}n[i.name]=!0,L(i)||e.reportError(`Union type ${t.name} can only include Object types, it cannot include ${y(i)}.`,Fi(t,String(i)))}}function ts(e,t){let r=t.getValues();r.length===0&&e.reportError(`Enum type ${t.name} must define one or more values.`,[t.astNode,...t.extensionASTNodes]);for(let n of r)Ue(e,n)}function rs(e,t){let r=Object.values(t.getFields());r.length===0&&e.reportError(`Input Object type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(let o of r){if(Ue(e,o),!K(o.type)){var n;e.reportError(`The type of ${t.name}.${o.name} must be Input Type but got: ${y(o.type)}.`,(n=o.astNode)===null||n===void 0?void 0:n.type)}if(tt(o)&&o.deprecationReason!=null){var i;e.reportError(`Required input field ${t.name}.${o.name} cannot be deprecated.`,[en(o.astNode),(i=o.astNode)===null||i===void 0?void 0:i.type])}t.isOneOf&&ns(t,o,e)}}function ns(e,t,r){if(O(t.type)){var n;r.reportError(`OneOf input field ${e.name}.${t.name} must be nullable.`,(n=t.astNode)===null||n===void 0?void 0:n.type)}t.defaultValue!==void 0&&r.reportError(`OneOf input field ${e.name}.${t.name} cannot have a default value.`,t.astNode)}function is(e){let t=Object.create(null),r=[],n=Object.create(null);return i;function i(o){if(t[o.name])return;t[o.name]=!0,n[o.name]=r.length;let s=Object.values(o.getFields());for(let a of s)if(O(a.type)&&D(a.type.ofType)){let c=a.type.ofType,p=n[c.name];if(r.push(a),p===void 0)i(c);else{let l=r.slice(p),d=l.map(h=>h.name).join(".");e.reportError(`Cannot reference Input Object "${c.name}" within itself through a series of non-null fields: "${d}".`,l.map(h=>h.astNode))}r.pop()}n[o.name]=void 0}}function Ot(e,t){let{astNode:r,extensionASTNodes:n}=e;return(r!=null?[r,...n]:n).flatMap(o=>{var s;return(s=o.interfaces)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t.name)}function Fi(e,t){let{astNode:r,extensionASTNodes:n}=e;return(r!=null?[r,...n]:n).flatMap(o=>{var s;return(s=o.types)!==null&&s!==void 0?s:[]}).filter(o=>o.name.value===t)}function en(e){var t;return e==null||(t=e.directives)===null||t===void 0?void 0:t.find(r=>r.name.value===er.name)}function j(e,t){switch(t.kind){case u.LIST_TYPE:{let r=j(e,t.type);return r&&new M(r)}case u.NON_NULL_TYPE:{let r=j(e,t.type);return r&&new I(r)}case u.NAMED_TYPE:return e.getType(t.name.value)}}var it=class{constructor(t,r,n){this._schema=t,this._typeStack=[],this._parentTypeStack=[],this._inputTypeStack=[],this._fieldDefStack=[],this._defaultValueStack=[],this._directive=null,this._argument=null,this._enumValue=null,this._getFieldDef=n??os,r&&(K(r)&&this._inputTypeStack.push(r),pe(r)&&this._parentTypeStack.push(r),Oe(r)&&this._typeStack.push(r))}get[Symbol.toStringTag](){return"TypeInfo"}getType(){if(this._typeStack.length>0)return this._typeStack[this._typeStack.length-1]}getParentType(){if(this._parentTypeStack.length>0)return this._parentTypeStack[this._parentTypeStack.length-1]}getInputType(){if(this._inputTypeStack.length>0)return this._inputTypeStack[this._inputTypeStack.length-1]}getParentInputType(){if(this._inputTypeStack.length>1)return this._inputTypeStack[this._inputTypeStack.length-2]}getFieldDef(){if(this._fieldDefStack.length>0)return this._fieldDefStack[this._fieldDefStack.length-1]}getDefaultValue(){if(this._defaultValueStack.length>0)return this._defaultValueStack[this._defaultValueStack.length-1]}getDirective(){return this._directive}getArgument(){return this._argument}getEnumValue(){return this._enumValue}enter(t){let r=this._schema;switch(t.kind){case u.SELECTION_SET:{let i=X(this.getType());this._parentTypeStack.push(pe(i)?i:void 0);break}case u.FIELD:{let i=this.getParentType(),o,s;i&&(o=this._getFieldDef(r,i,t),o&&(s=o.type)),this._fieldDefStack.push(o),this._typeStack.push(Oe(s)?s:void 0);break}case u.DIRECTIVE:this._directive=r.getDirective(t.name.value);break;case u.OPERATION_DEFINITION:{let i=r.getRootType(t.operation);this._typeStack.push(L(i)?i:void 0);break}case u.INLINE_FRAGMENT:case u.FRAGMENT_DEFINITION:{let i=t.typeCondition,o=i?j(r,i):X(this.getType());this._typeStack.push(Oe(o)?o:void 0);break}case u.VARIABLE_DEFINITION:{let i=j(r,t.type);this._inputTypeStack.push(K(i)?i:void 0);break}case u.ARGUMENT:{var n;let i,o,s=(n=this.getDirective())!==null&&n!==void 0?n:this.getFieldDef();s&&(i=s.args.find(a=>a.name===t.name.value),i&&(o=i.type)),this._argument=i,this._defaultValueStack.push(i?i.defaultValue:void 0),this._inputTypeStack.push(K(o)?o:void 0);break}case u.LIST:{let i=et(this.getInputType()),o=k(i)?i.ofType:i;this._defaultValueStack.push(void 0),this._inputTypeStack.push(K(o)?o:void 0);break}case u.OBJECT_FIELD:{let i=X(this.getInputType()),o,s;D(i)&&(s=i.getFields()[t.name.value],s&&(o=s.type)),this._defaultValueStack.push(s?s.defaultValue:void 0),this._inputTypeStack.push(K(o)?o:void 0);break}case u.ENUM:{let i=X(this.getInputType()),o;B(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 os(e,t,r){let n=r.name.value;if(n===Ce.name&&e.getQueryType()===t)return Ce;if(n===ke.name&&e.getQueryType()===t)return ke;if(n===Me.name&&pe(t))return Me;if(L(t)||w(t))return t.getFields()[n]}function nr(e,t){return{enter(...r){let n=r[0];e.enter(n);let i=We(t,n.kind).enter;if(i){let o=i.apply(t,r);return o!==void 0&&(e.leave(n),pt(o)&&e.enter(o)),o}},leave(...r){let n=r[0],i=We(t,n.kind).leave,o;return i&&(o=i.apply(t,r)),e.leave(n),o}}}function tn(e){return e.kind===u.OPERATION_DEFINITION||e.kind===u.FRAGMENT_DEFINITION}function rn(e){return e.kind===u.SCHEMA_DEFINITION||we(e)||e.kind===u.DIRECTIVE_DEFINITION}function we(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 nn(e){return e.kind===u.SCHEMA_EXTENSION||ir(e)}function ir(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 on(e){return{Document(t){for(let r of t.definitions)if(!tn(r)){let n=r.kind===u.SCHEMA_DEFINITION||r.kind===u.SCHEMA_EXTENSION?"schema":'"'+r.name.value+'"';e.reportError(new f(`The ${n} definition is not executable.`,{nodes:r}))}return!1}}}function sn(e){return{Field(t){let r=e.getParentType();if(r&&!e.getFieldDef()){let i=e.getSchema(),o=t.name.value,s=te("to use an inline fragment on",ss(i,r,o));s===""&&(s=te(as(r,o))),e.reportError(new f(`Cannot query field "${o}" on type "${r.name}".`+s,{nodes:t}))}}}}function ss(e,t,r){if(!se(t))return[];let n=new Set,i=Object.create(null);for(let s of e.getPossibleTypes(t))if(s.getFields()[r]){n.add(s),i[s.name]=1;for(let a of s.getInterfaces()){var o;a.getFields()[r]&&(n.add(a),i[a.name]=((o=i[a.name])!==null&&o!==void 0?o:0)+1)}}return[...n].sort((s,a)=>{let c=i[a.name]-i[s.name];return c!==0?c:w(s)&&e.isSubType(s,a)?-1:w(a)&&e.isSubType(a,s)?1:ze(s.name,a.name)}).map(s=>s.name)}function as(e,t){if(L(e)||w(e)){let r=Object.keys(e.getFields());return ie(t,r)}return[]}function an(e){return{InlineFragment(t){let r=t.typeCondition;if(r){let n=j(e.getSchema(),r);if(n&&!pe(n)){let i=F(r);e.reportError(new f(`Fragment cannot condition on non composite type "${i}".`,{nodes:r}))}}},FragmentDefinition(t){let r=j(e.getSchema(),t.typeCondition);if(r&&!pe(r)){let n=F(t.typeCondition);e.reportError(new f(`Fragment "${t.name.value}" cannot condition on non composite type "${n}".`,{nodes:t.typeCondition}))}}}}function cn(e){return{...un(e),Argument(t){let r=e.getArgument(),n=e.getFieldDef(),i=e.getParentType();if(!r&&n&&i){let o=t.name.value,s=n.args.map(c=>c.name),a=ie(o,s);e.reportError(new f(`Unknown argument "${o}" on field "${i.name}.${n.name}".`+te(a),{nodes:t}))}}}}function un(e){let t=Object.create(null),r=e.getSchema(),n=r?r.getDirectives():Ie;for(let s of n)t[s.name]=s.args.map(a=>a.name);let i=e.getDocument().definitions;for(let s of i)if(s.kind===u.DIRECTIVE_DEFINITION){var o;let a=(o=s.arguments)!==null&&o!==void 0?o:[];t[s.name.value]=a.map(c=>c.name.value)}return{Directive(s){let a=s.name.value,c=t[a];if(s.arguments&&c)for(let p of s.arguments){let l=p.name.value;if(!c.includes(l)){let d=ie(l,c);e.reportError(new f(`Unknown argument "${l}" on directive "@${a}".`+te(d),{nodes:p}))}}return!1}}}function or(e){let t=Object.create(null),r=e.getSchema(),n=r?r.getDirectives():Ie;for(let o of n)t[o.name]=o.locations;let i=e.getDocument().definitions;for(let o of i)o.kind===u.DIRECTIVE_DEFINITION&&(t[o.name.value]=o.locations.map(s=>s.value));return{Directive(o,s,a,c,p){let l=o.name.value,d=t[l];if(!d){e.reportError(new f(`Unknown directive "@${l}".`,{nodes:o}));return}let h=cs(p);h&&!d.includes(h)&&e.reportError(new f(`Directive "@${l}" may not be used on ${h}.`,{nodes:o}))}}}function cs(e){let t=e[e.length-1];switch("kind"in t||V(!1),t.kind){case u.OPERATION_DEFINITION:return us(t.operation);case u.FIELD:return b.FIELD;case u.FRAGMENT_SPREAD:return b.FRAGMENT_SPREAD;case u.INLINE_FRAGMENT:return b.INLINE_FRAGMENT;case u.FRAGMENT_DEFINITION:return b.FRAGMENT_DEFINITION;case u.VARIABLE_DEFINITION:return b.VARIABLE_DEFINITION;case u.SCHEMA_DEFINITION:case u.SCHEMA_EXTENSION:return b.SCHEMA;case u.SCALAR_TYPE_DEFINITION:case u.SCALAR_TYPE_EXTENSION:return b.SCALAR;case u.OBJECT_TYPE_DEFINITION:case u.OBJECT_TYPE_EXTENSION:return b.OBJECT;case u.FIELD_DEFINITION:return b.FIELD_DEFINITION;case u.INTERFACE_TYPE_DEFINITION:case u.INTERFACE_TYPE_EXTENSION:return b.INTERFACE;case u.UNION_TYPE_DEFINITION:case u.UNION_TYPE_EXTENSION:return b.UNION;case u.ENUM_TYPE_DEFINITION:case u.ENUM_TYPE_EXTENSION:return b.ENUM;case u.ENUM_VALUE_DEFINITION:return b.ENUM_VALUE;case u.INPUT_OBJECT_TYPE_DEFINITION:case u.INPUT_OBJECT_TYPE_EXTENSION:return b.INPUT_OBJECT;case u.INPUT_VALUE_DEFINITION:{let r=e[e.length-3];return"kind"in r||V(!1),r.kind===u.INPUT_OBJECT_TYPE_DEFINITION?b.INPUT_FIELD_DEFINITION:b.ARGUMENT_DEFINITION}default:V(!1,"Unexpected kind: "+y(t.kind))}}function us(e){switch(e){case $.QUERY:return b.QUERY;case $.MUTATION:return b.MUTATION;case $.SUBSCRIPTION:return b.SUBSCRIPTION}}function pn(e){return{FragmentSpread(t){let r=t.name.value;e.getFragment(r)||e.reportError(new f(`Unknown fragment "${r}".`,{nodes:t.name}))}}}function sr(e){let t=e.getSchema(),r=t?t.getTypeMap():Object.create(null),n=Object.create(null);for(let o of e.getDocument().definitions)we(o)&&(n[o.name.value]=!0);let i=[...Object.keys(r),...Object.keys(n)];return{NamedType(o,s,a,c,p){let l=o.name.value;if(!r[l]&&!n[l]){var d;let h=(d=p[2])!==null&&d!==void 0?d:a,T=h!=null&&ps(h);if(T&&ki.includes(l))return;let g=ie(l,T?ki.concat(i):i);e.reportError(new f(`Unknown type "${l}".`+te(g),{nodes:o}))}}}}var ki=[...Wt,...tr].map(e=>e.name);function ps(e){return"kind"in e&&(rn(e)||nn(e))}function ln(e){let t=0;return{Document(r){t=r.definitions.filter(n=>n.kind===u.OPERATION_DEFINITION).length},OperationDefinition(r){!r.name&&t>1&&e.reportError(new f("This anonymous operation must be the only defined operation.",{nodes:r}))}}}function fn(e){var t,r,n;let i=e.getSchema(),o=(t=(r=(n=i?.astNode)!==null&&n!==void 0?n:i?.getQueryType())!==null&&r!==void 0?r:i?.getMutationType())!==null&&t!==void 0?t:i?.getSubscriptionType(),s=0;return{SchemaDefinition(a){if(o){e.reportError(new f("Cannot define a new schema within a schema extension.",{nodes:a}));return}s>0&&e.reportError(new f("Must provide only one schema definition.",{nodes:a})),++s}}}var ls=3;function dn(e){function t(r,n=Object.create(null),i=0){if(r.kind===u.FRAGMENT_SPREAD){let o=r.name.value;if(n[o]===!0)return!1;let s=e.getFragment(o);if(!s)return!1;try{return n[o]=!0,t(s,n,i)}finally{n[o]=void 0}}if(r.kind===u.FIELD&&(r.name.value==="fields"||r.name.value==="interfaces"||r.name.value==="possibleTypes"||r.name.value==="inputFields")&&(i++,i>=ls))return!0;if("selectionSet"in r&&r.selectionSet){for(let o of r.selectionSet.selections)if(t(o,n,i))return!0}return!1}return{Field(r){if((r.name.value==="__schema"||r.name.value==="__type")&&t(r))return e.reportError(new f("Maximum introspection depth exceeded",{nodes:[r]})),!1}}}function mn(e){let t=Object.create(null),r=[],n=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(o){return i(o),!1}};function i(o){if(t[o.name.value])return;let s=o.name.value;t[s]=!0;let a=e.getFragmentSpreads(o.selectionSet);if(a.length!==0){n[s]=r.length;for(let c of a){let p=c.name.value,l=n[p];if(r.push(c),l===void 0){let d=e.getFragment(p);d&&i(d)}else{let d=r.slice(l),h=d.slice(0,-1).map(T=>'"'+T.name.value+'"').join(", ");e.reportError(new f(`Cannot spread fragment "${p}" within itself`+(h!==""?` via ${h}.`:"."),{nodes:d}))}r.pop()}n[s]=void 0}}}function hn(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(r){let n=e.getRecursiveVariableUsages(r);for(let{node:i}of n){let o=i.name.value;t[o]!==!0&&e.reportError(new f(r.name?`Variable "$${o}" is not defined by operation "${r.name.value}".`:`Variable "$${o}" is not defined.`,{nodes:[i,r]}))}}},VariableDefinition(r){t[r.variable.name.value]=!0}}}function yn(e){let t=[],r=[];return{OperationDefinition(n){return t.push(n),!1},FragmentDefinition(n){return r.push(n),!1},Document:{leave(){let n=Object.create(null);for(let i of t)for(let o of e.getRecursivelyReferencedFragments(i))n[o.name.value]=!0;for(let i of r){let o=i.name.value;n[o]!==!0&&e.reportError(new f(`Fragment "${o}" is never used.`,{nodes:i}))}}}}}function Tn(e){let t=[];return{OperationDefinition:{enter(){t=[]},leave(r){let n=Object.create(null),i=e.getRecursiveVariableUsages(r);for(let{node:o}of i)n[o.name.value]=!0;for(let o of t){let s=o.variable.name.value;n[s]!==!0&&e.reportError(new f(r.name?`Variable "$${s}" is never used in operation "${r.name.value}".`:`Variable "$${s}" is never used.`,{nodes:o}))}}},VariableDefinition(r){t.push(r)}}}function ar(e){switch(e.kind){case u.OBJECT:return{...e,fields:fs(e.fields)};case u.LIST:return{...e,values:e.values.map(ar)};case u.INT:case u.FLOAT:case u.STRING:case u.BOOLEAN:case u.NULL:case u.ENUM:case u.VARIABLE:return e}}function fs(e){return e.map(t=>({...t,value:ar(t.value)})).sort((t,r)=>ze(t.name.value,r.name.value))}function Pi(e){return Array.isArray(e)?e.map(([t,r])=>`subfields "${t}" conflict because `+Pi(r)).join(" and "):e}function Nn(e){let t=new lr,r=new vn,n=new Map;return{SelectionSet(i){let o=ds(e,n,t,r,e.getParentType(),i);for(let[[s,a],c,p]of o){let l=Pi(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 ds(e,t,r,n,i,o){let s=[],[a,c]=pr(e,t,i,o);if(hs(e,s,t,r,n,a),c.length!==0)for(let p=0;p<c.length;p++){cr(e,s,t,r,n,!1,a,c[p]);for(let l=p+1;l<c.length;l++)ur(e,s,t,r,n,!1,c[p],c[l])}return s}function cr(e,t,r,n,i,o,s,a){if(n.has(s,a,o))return;n.add(s,a,o);let c=e.getFragment(a);if(!c)return;let[p,l]=En(e,r,c);if(s!==p){In(e,t,r,n,i,o,s,p);for(let d of l)cr(e,t,r,n,i,o,s,d)}}function ur(e,t,r,n,i,o,s,a){if(s===a||i.has(s,a,o))return;i.add(s,a,o);let c=e.getFragment(s),p=e.getFragment(a);if(!c||!p)return;let[l,d]=En(e,r,c),[h,T]=En(e,r,p);In(e,t,r,n,i,o,l,h);for(let g of T)ur(e,t,r,n,i,o,s,g);for(let g of d)ur(e,t,r,n,i,o,g,a)}function ms(e,t,r,n,i,o,s,a,c){let p=[],[l,d]=pr(e,t,o,s),[h,T]=pr(e,t,a,c);In(e,p,t,r,n,i,l,h);for(let g of T)cr(e,p,t,r,n,i,l,g);for(let g of d)cr(e,p,t,r,n,i,h,g);for(let g of d)for(let P of T)ur(e,p,t,r,n,i,g,P);return p}function hs(e,t,r,n,i,o){for(let[s,a]of Object.entries(o))if(a.length>1)for(let c=0;c<a.length;c++)for(let p=c+1;p<a.length;p++){let l=Ui(e,r,n,i,!1,s,a[c],a[p]);l&&t.push(l)}}function In(e,t,r,n,i,o,s,a){for(let[c,p]of Object.entries(s)){let l=a[c];if(l)for(let d of p)for(let h of l){let T=Ui(e,r,n,i,o,c,d,h);T&&t.push(T)}}}function Ui(e,t,r,n,i,o,s,a){let[c,p,l]=s,[d,h,T]=a,g=i||c!==d&&L(c)&&L(d);if(!g){let ce=p.name.value,Te=h.name.value;if(ce!==Te)return[[o,`"${ce}" and "${Te}" are different fields`],[p],[h]];if(!ys(p,h))return[[o,"they have differing arguments"],[p],[h]]}let P=l?.type,ee=T?.type;if(P&&ee&&gn(P,ee))return[[o,`they return conflicting types "${y(P)}" and "${y(ee)}"`],[p],[h]];let z=p.selectionSet,de=h.selectionSet;if(z&&de){let ce=ms(e,t,r,n,g,X(P),z,X(ee),de);return Ts(ce,o,p,h)}}function ys(e,t){let r=e.arguments,n=t.arguments;if(r===void 0||r.length===0)return n===void 0||n.length===0;if(n===void 0||n.length===0||r.length!==n.length)return!1;let i=new Map(n.map(({name:o,value:s})=>[o.value,s]));return r.every(o=>{let s=o.value,a=i.get(o.name.value);return a===void 0?!1:Mi(s)===Mi(a)})}function Mi(e){return F(ar(e))}function gn(e,t){return k(e)?k(t)?gn(e.ofType,t.ofType):!0:k(t)?!0:O(e)?O(t)?gn(e.ofType,t.ofType):!0:O(t)?!0:Z(e)||Z(t)?e!==t:!1}function pr(e,t,r,n){let i=t.get(n);if(i)return i;let o=Object.create(null),s=Object.create(null);$i(e,r,n,o,s);let a=[o,Object.keys(s)];return t.set(n,a),a}function En(e,t,r){let n=t.get(r.selectionSet);if(n)return n;let i=j(e.getSchema(),r.typeCondition);return pr(e,t,i,r.selectionSet)}function $i(e,t,r,n,i){for(let o of r.selections)switch(o.kind){case u.FIELD:{let s=o.name.value,a;(L(t)||w(t))&&(a=t.getFields()[s]);let c=o.alias?o.alias.value:s;n[c]||(n[c]=[]),n[c].push([t,o,a]);break}case u.FRAGMENT_SPREAD:i[o.name.value]=!0;break;case u.INLINE_FRAGMENT:{let s=o.typeCondition,a=s?j(e.getSchema(),s):t;$i(e,a,o.selectionSet,n,i);break}}}function Ts(e,t,r,n){if(e.length>0)return[[t,e.map(([i])=>i)],[r,...e.map(([,i])=>i).flat()],[n,...e.map(([,,i])=>i).flat()]]}var lr=class{constructor(){this._data=new Map}has(t,r,n){var i;let o=(i=this._data.get(t))===null||i===void 0?void 0:i.get(r);return o===void 0?!1:n?!0:n===o}add(t,r,n){let i=this._data.get(t);i===void 0?this._data.set(t,new Map([[r,n]])):i.set(r,n)}},vn=class{constructor(){this._orderedPairSet=new lr}has(t,r,n){return t<r?this._orderedPairSet.has(t,r,n):this._orderedPairSet.has(r,t,n)}add(t,r,n){t<r?this._orderedPairSet.add(t,r,n):this._orderedPairSet.add(r,t,n)}};function Rn(e){return{InlineFragment(t){let r=e.getType(),n=e.getParentType();if(pe(r)&&pe(n)&&!Br(e.getSchema(),r,n)){let i=y(n),o=y(r);e.reportError(new f(`Fragment cannot be spread here as objects of type "${i}" can never be of type "${o}".`,{nodes:t}))}},FragmentSpread(t){let r=t.name.value,n=gs(e,r),i=e.getParentType();if(n&&i&&!Br(e.getSchema(),n,i)){let o=y(i),s=y(n);e.reportError(new f(`Fragment "${r}" cannot be spread here as objects of type "${o}" can never be of type "${s}".`,{nodes:t}))}}}}function gs(e,t){let r=e.getFragment(t);if(r){let n=j(e.getSchema(),r.typeCondition);if(pe(n))return n}}function bn(e){let t=e.getSchema(),r=Object.create(null);for(let i of e.getDocument().definitions)we(i)&&(r[i.name.value]=i);return{ScalarTypeExtension:n,ObjectTypeExtension:n,InterfaceTypeExtension:n,UnionTypeExtension:n,EnumTypeExtension:n,InputObjectTypeExtension:n};function n(i){let o=i.name.value,s=r[o],a=t?.getType(o),c;if(s?c=Es[s.kind]:a&&(c=vs(a)),c){if(c!==i.kind){let p=Ns(i.kind);e.reportError(new f(`Cannot extend non-${p} type "${o}".`,{nodes:s?[s,i]:i}))}}else{let p=Object.keys({...r,...t?.getTypeMap()}),l=ie(o,p);e.reportError(new f(`Cannot extend type "${o}" because it is not defined.`+te(l),{nodes:i.name}))}}}var Es={[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 vs(e){if(Ne(e))return u.SCALAR_TYPE_EXTENSION;if(L(e))return u.OBJECT_TYPE_EXTENSION;if(w(e))return u.INTERFACE_TYPE_EXTENSION;if(W(e))return u.UNION_TYPE_EXTENSION;if(B(e))return u.ENUM_TYPE_EXTENSION;if(D(e))return u.INPUT_OBJECT_TYPE_EXTENSION;V(!1,"Unexpected type: "+y(e))}function Ns(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:V(!1,"Unexpected kind: "+y(e))}}function On(e){return{...Sn(e),Field:{leave(t){var r;let n=e.getFieldDef();if(!n)return!1;let i=new Set((r=t.arguments)===null||r===void 0?void 0:r.map(o=>o.name.value));for(let o of n.args)if(!i.has(o.name)&&Se(o)){let s=y(o.type);e.reportError(new f(`Field "${n.name}" argument "${o.name}" of type "${s}" is required, but it was not provided.`,{nodes:t}))}}}}}function Sn(e){var t;let r=Object.create(null),n=e.getSchema(),i=(t=n?.getDirectives())!==null&&t!==void 0?t:Ie;for(let a of i)r[a.name]=ge(a.args.filter(Se),c=>c.name);let o=e.getDocument().definitions;for(let a of o)if(a.kind===u.DIRECTIVE_DEFINITION){var s;let c=(s=a.arguments)!==null&&s!==void 0?s:[];r[a.name.value]=ge(c.filter(Is),p=>p.name.value)}return{Directive:{leave(a){let c=a.name.value,p=r[c];if(p){var l;let d=(l=a.arguments)!==null&&l!==void 0?l:[],h=new Set(d.map(T=>T.name.value));for(let[T,g]of Object.entries(p))if(!h.has(T)){let P=Ze(g.type)?y(g.type):F(g.type);e.reportError(new f(`Directive "@${c}" argument "${T}" of type "${P}" is required, but it was not provided.`,{nodes:a}))}}}}}}function Is(e){return e.type.kind===u.NON_NULL_TYPE&&e.defaultValue==null}function _n(e){return{Field(t){let r=e.getType(),n=t.selectionSet;if(r)if(Z(X(r))){if(n){let i=t.name.value,o=y(r);e.reportError(new f(`Field "${i}" must not have a selection since type "${o}" has no subfields.`,{nodes:n}))}}else if(n){if(n.selections.length===0){let i=t.name.value,o=y(r);e.reportError(new f(`Field "${i}" of type "${o}" must have at least one field selected.`,{nodes:t}))}}else{let i=t.name.value,o=y(r);e.reportError(new f(`Field "${i}" of type "${o}" must have a selection of subfields. Did you mean "${i} { ... }"?`,{nodes:t}))}}}}function fr(e){return e.map(t=>typeof t=="number"?"["+t.toString()+"]":"."+t).join("")}function $e(e,t,r){return{prev:e,key:t,typename:r}}function re(e){let t=[],r=e;for(;r;)t.push(r.key),r=r.prev;return t.reverse()}function Vi(e,t,r=Rs){return _t(e,t,r,void 0)}function Rs(e,t,r){let n="Invalid value "+y(t);throw e.length>0&&(n+=` at "value${fr(e)}"`),r.message=n+": "+r.message,r}function _t(e,t,r,n){if(O(t)){if(e!=null)return _t(e,t.ofType,r,n);r(re(n),e,new f(`Expected non-nullable type "${y(t)}" not to be null.`));return}if(e==null)return null;if(k(t)){let i=t.ofType;return rt(e)?Array.from(e,(o,s)=>{let a=$e(n,s,void 0);return _t(o,i,r,a)}):[_t(e,i,r,n)]}if(D(t)){if(!Y(e)||Array.isArray(e)){r(re(n),e,new f(`Expected type "${t.name}" to be an object.`));return}let i={},o=t.getFields();for(let s of Object.values(o)){let a=e[s.name];if(a===void 0){if(s.defaultValue!==void 0)i[s.name]=s.defaultValue;else if(O(s.type)){let c=y(s.type);r(re(n),e,new f(`Field "${s.name}" of required type "${c}" was not provided.`))}continue}i[s.name]=_t(a,s.type,r,$e(n,s.name,t.name))}for(let s of Object.keys(e))if(!o[s]){let a=ie(s,Object.keys(t.getFields()));r(re(n),e,new f(`Field "${s}" is not defined by type "${t.name}".`+te(a)))}if(t.isOneOf){let s=Object.keys(i);s.length!==1&&r(re(n),e,new f(`Exactly one key must be specified for OneOf type "${t.name}".`));let a=s[0],c=i[a];c===null&&r(re(n).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?r(re(n),e,o):r(re(n),e,new f(`Expected type "${t.name}". `+o.message,{originalError:o}));return}return i===void 0&&r(re(n),e,new f(`Expected type "${t.name}".`)),i}V(!1,"Unexpected input type: "+y(t))}function Ve(e,t,r){if(e){if(e.kind===u.VARIABLE){let n=e.name.value;if(r==null||r[n]===void 0)return;let i=r[n];return i===null&&O(t)?void 0:i}if(O(t))return e.kind===u.NULL?void 0:Ve(e,t.ofType,r);if(e.kind===u.NULL)return null;if(k(t)){let n=t.ofType;if(e.kind===u.LIST){let o=[];for(let s of e.values)if(Gi(s,r)){if(O(n))return;o.push(null)}else{let a=Ve(s,n,r);if(a===void 0)return;o.push(a)}return o}let i=Ve(e,n,r);return i===void 0?void 0:[i]}if(D(t)){if(e.kind!==u.OBJECT)return;let n=Object.create(null),i=ge(e.fields,o=>o.name.value);for(let o of Object.values(t.getFields())){let s=i[o.name];if(!s||Gi(s.value,r)){if(o.defaultValue!==void 0)n[o.name]=o.defaultValue;else if(O(o.type))return;continue}let a=Ve(s.value,o.type,r);if(a===void 0)return;n[o.name]=a}if(t.isOneOf){let o=Object.keys(n);if(o.length!==1||n[o[0]]===null)return}return n}if(Z(t)){let n;try{n=t.parseLiteral(e,r)}catch{return}return n===void 0?void 0:n}V(!1,"Unexpected input type: "+y(t))}}function Gi(e,t){return e.kind===u.VARIABLE&&(t==null||t[e.name.value]===void 0)}function xn(e,t,r,n){let i=[],o=n?.maxErrors;try{let s=bs(e,t,r,a=>{if(o!=null&&i.length>=o)throw new f("Too many errors processing variables, error limit reached. Execution aborted.");i.push(a)});if(i.length===0)return{coerced:s}}catch(s){i.push(s)}return{errors:i}}function bs(e,t,r,n){let i={};for(let o of t){let s=o.variable.name.value,a=j(e,o.type);if(!K(a)){let p=F(o.type);n(new f(`Variable "$${s}" expected value of type "${p}" which cannot be used as an input type.`,{nodes:o.type}));continue}if(!ji(r,s)){if(o.defaultValue)i[s]=Ve(o.defaultValue,a);else if(O(a)){let p=y(a);n(new f(`Variable "$${s}" of required type "${p}" was not provided.`,{nodes:o}))}continue}let c=r[s];if(c===null&&O(a)){let p=y(a);n(new f(`Variable "$${s}" of non-null type "${p}" must not be null.`,{nodes:o}));continue}i[s]=Vi(c,a,(p,l,d)=>{let h=`Variable "$${s}" got invalid value `+y(l);p.length>0&&(h+=` at "${s}${fr(p)}"`),n(new f(h+"; "+d.message,{nodes:o,originalError:d}))})}return i}function dr(e,t,r){var n;let i={},o=(n=t.arguments)!==null&&n!==void 0?n:[],s=ge(o,a=>a.name.value);for(let a of e.args){let c=a.name,p=a.type,l=s[c];if(!l){if(a.defaultValue!==void 0)i[c]=a.defaultValue;else if(O(p))throw new f(`Argument "${c}" of required type "${y(p)}" was not provided.`,{nodes:t});continue}let d=l.value,h=d.kind===u.NULL;if(d.kind===u.VARIABLE){let g=d.name.value;if(r==null||!ji(r,g)){if(a.defaultValue!==void 0)i[c]=a.defaultValue;else if(O(p))throw new f(`Argument "${c}" of required type "${y(p)}" was provided the variable "$${g}" which was not provided a runtime value.`,{nodes:d});continue}h=r[g]==null}if(h&&O(p))throw new f(`Argument "${c}" of non-null type "${y(p)}" must not be null.`,{nodes:d});let T=Ve(d,p,r);if(T===void 0)throw new f(`Argument "${c}" has invalid value ${F(d)}.`,{nodes:d});i[c]=T}return i}function mr(e,t,r){var n;let i=(n=t.directives)===null||n===void 0?void 0:n.find(o=>o.name.value===e.name);if(i)return dr(e,i,r)}function ji(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function yr(e,t,r,n,i){let o=new Map;return hr(e,t,r,n,i,o,new Set),o}function Bi(e,t,r,n,i){let o=new Map,s=new Set;for(let a of i)a.selectionSet&&hr(e,t,r,n,a.selectionSet,o,s);return o}function hr(e,t,r,n,i,o,s){for(let a of i.selections)switch(a.kind){case u.FIELD:{if(!Ln(r,a))continue;let c=Os(a),p=o.get(c);p!==void 0?p.push(a):o.set(c,[a]);break}case u.INLINE_FRAGMENT:{if(!Ln(r,a)||!Qi(e,a,n))continue;hr(e,t,r,n,a.selectionSet,o,s);break}case u.FRAGMENT_SPREAD:{let c=a.name.value;if(s.has(c)||!Ln(r,a))continue;s.add(c);let p=t[c];if(!p||!Qi(e,p,n))continue;hr(e,t,r,n,p.selectionSet,o,s);break}}}function Ln(e,t){let r=mr(Zt,t,e);if(r?.if===!0)return!1;let n=mr(Kt,t,e);return n?.if!==!1}function Qi(e,t,r){let n=t.typeCondition;if(!n)return!0;let i=j(e,n);return i===r?!0:se(i)?e.isSubType(i,r):!1}function Os(e){return e.alias?e.alias.value:e.name.value}function wn(e){return{OperationDefinition(t){if(t.operation==="subscription"){let r=e.getSchema(),n=r.getSubscriptionType();if(n){let i=t.name?t.name.value:null,o=Object.create(null),s=e.getDocument(),a=Object.create(null);for(let p of s.definitions)p.kind===u.FRAGMENT_DEFINITION&&(a[p.name.value]=p);let c=yr(r,a,o,n,t.selectionSet);if(c.size>1){let d=[...c.values()].slice(1).flat();e.reportError(new f(i!=null?`Subscription "${i}" must select only one top level field.`:"Anonymous Subscription must select only one top level field.",{nodes:d}))}for(let p of c.values())p[0].name.value.startsWith("__")&&e.reportError(new f(i!=null?`Subscription "${i}" must not select an introspection top level field.`:"Anonymous Subscription must not select an introspection top level field.",{nodes:p}))}}}}}function ot(e,t){let r=new Map;for(let n of e){let i=t(n),o=r.get(i);o===void 0?r.set(i,[n]):o.push(n)}return r}function Dn(e){return{DirectiveDefinition(n){var i;let o=(i=n.arguments)!==null&&i!==void 0?i:[];return r(`@${n.name.value}`,o)},InterfaceTypeDefinition:t,InterfaceTypeExtension:t,ObjectTypeDefinition:t,ObjectTypeExtension:t};function t(n){var i;let o=n.name.value,s=(i=n.fields)!==null&&i!==void 0?i:[];for(let c of s){var a;let p=c.name.value,l=(a=c.arguments)!==null&&a!==void 0?a:[];r(`${o}.${p}`,l)}return!1}function r(n,i){let o=ot(i,s=>s.name.value);for(let[s,a]of o)a.length>1&&e.reportError(new f(`Argument "${n}(${s}:)" can only be defined once.`,{nodes:a.map(c=>c.name)}));return!1}}function Tr(e){return{Field:t,Directive:t};function t(r){var n;let i=(n=r.arguments)!==null&&n!==void 0?n:[],o=ot(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 An(e){let t=Object.create(null),r=e.getSchema();return{DirectiveDefinition(n){let i=n.name.value;if(r!=null&&r.getDirective(i)){e.reportError(new f(`Directive "@${i}" already exists in the schema. It cannot be redefined.`,{nodes:n.name}));return}return t[i]?e.reportError(new f(`There can be only one directive named "@${i}".`,{nodes:[t[i],n.name]})):t[i]=n.name,!1}}}function gr(e){let t=Object.create(null),r=e.getSchema(),n=r?r.getDirectives():Ie;for(let a of n)t[a.name]=!a.isRepeatable;let i=e.getDocument().definitions;for(let a of i)a.kind===u.DIRECTIVE_DEFINITION&&(t[a.name.value]=!a.repeatable);let o=Object.create(null),s=Object.create(null);return{enter(a){if(!("directives"in a)||!a.directives)return;let c;if(a.kind===u.SCHEMA_DEFINITION||a.kind===u.SCHEMA_EXTENSION)c=o;else if(we(a)||ir(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 Fn(e){let t=e.getSchema(),r=t?t.getTypeMap():Object.create(null),n=Object.create(null);return{EnumTypeDefinition:i,EnumTypeExtension:i};function i(o){var s;let a=o.name.value;n[a]||(n[a]=Object.create(null));let c=(s=o.values)!==null&&s!==void 0?s:[],p=n[a];for(let l of c){let d=l.name.value,h=r[a];B(h)&&h.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 Cn(e){let t=e.getSchema(),r=t?t.getTypeMap():Object.create(null),n=Object.create(null);return{InputObjectTypeDefinition:i,InputObjectTypeExtension:i,InterfaceTypeDefinition:i,InterfaceTypeExtension:i,ObjectTypeDefinition:i,ObjectTypeExtension:i};function i(o){var s;let a=o.name.value;n[a]||(n[a]=Object.create(null));let c=(s=o.fields)!==null&&s!==void 0?s:[],p=n[a];for(let l of c){let d=l.name.value;Ss(r[a],d)?e.reportError(new f(`Field "${a}.${d}" already exists in the schema. It cannot also be defined in this type extension.`,{nodes:l.name})):p[d]?e.reportError(new f(`Field "${a}.${d}" can only be defined once.`,{nodes:[p[d],l.name]})):p[d]=l.name}return!1}}function Ss(e,t){return L(e)||w(e)||D(e)?e.getFields()[t]!=null:!1}function kn(e){let t=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(r){let n=r.name.value;return t[n]?e.reportError(new f(`There can be only one fragment named "${n}".`,{nodes:[t[n],r.name]})):t[n]=r.name,!1}}}function Er(e){let t=[],r=Object.create(null);return{ObjectValue:{enter(){t.push(r),r=Object.create(null)},leave(){let n=t.pop();n||V(!1),r=n}},ObjectField(n){let i=n.name.value;r[i]?e.reportError(new f(`There can be only one input field named "${i}".`,{nodes:[r[i],n.name]})):r[i]=n.name}}}function Mn(e){let t=Object.create(null);return{OperationDefinition(r){let n=r.name;return n&&(t[n.value]?e.reportError(new f(`There can be only one operation named "${n.value}".`,{nodes:[t[n.value],n]})):t[n.value]=n),!1},FragmentDefinition:()=>!1}}function Pn(e){let t=e.getSchema(),r=Object.create(null),n=t?{query:t.getQueryType(),mutation:t.getMutationType(),subscription:t.getSubscriptionType()}:{};return{SchemaDefinition:i,SchemaExtension:i};function i(o){var s;let a=(s=o.operationTypes)!==null&&s!==void 0?s:[];for(let c of a){let p=c.operation,l=r[p];n[p]?e.reportError(new f(`Type for ${p} already defined in the schema. It cannot be redefined.`,{nodes:c})):l?e.reportError(new f(`There can be only one ${p} type in schema.`,{nodes:[l,c]})):r[p]=c}return!1}}function Un(e){let t=Object.create(null),r=e.getSchema();return{ScalarTypeDefinition:n,ObjectTypeDefinition:n,InterfaceTypeDefinition:n,UnionTypeDefinition:n,EnumTypeDefinition:n,InputObjectTypeDefinition:n};function n(i){let o=i.name.value;if(r!=null&&r.getType(o)){e.reportError(new f(`Type "${o}" already exists in the schema. It cannot also be defined in this type definition.`,{nodes:i.name}));return}return t[o]?e.reportError(new f(`There can be only one type named "${o}".`,{nodes:[t[o],i.name]})):t[o]=i.name,!1}}function $n(e){return{OperationDefinition(t){var r;let n=(r=t.variableDefinitions)!==null&&r!==void 0?r:[],i=ot(n,o=>o.variable.name.value);for(let[o,s]of i)s.length>1&&e.reportError(new f(`There can be only one variable named "$${o}".`,{nodes:s.map(a=>a.variable.name)}))}}}function Vn(e){let t={};return{OperationDefinition:{enter(){t={}}},VariableDefinition(r){t[r.variable.name.value]=r},ListValue(r){let n=et(e.getParentInputType());if(!k(n))return Ge(e,r),!1},ObjectValue(r){let n=X(e.getInputType());if(!D(n))return Ge(e,r),!1;let i=ge(r.fields,o=>o.name.value);for(let o of Object.values(n.getFields()))if(!i[o.name]&&tt(o)){let a=y(o.type);e.reportError(new f(`Field "${n.name}.${o.name}" of required type "${a}" was not provided.`,{nodes:r}))}n.isOneOf&&_s(e,r,n,i)},ObjectField(r){let n=X(e.getParentInputType());if(!e.getInputType()&&D(n)){let o=ie(r.name.value,Object.keys(n.getFields()));e.reportError(new f(`Field "${r.name.value}" is not defined by type "${n.name}".`+te(o),{nodes:r}))}},NullValue(r){let n=e.getInputType();O(n)&&e.reportError(new f(`Expected value of type "${y(n)}", found ${F(r)}.`,{nodes:r}))},EnumValue:r=>Ge(e,r),IntValue:r=>Ge(e,r),FloatValue:r=>Ge(e,r),StringValue:r=>Ge(e,r),BooleanValue:r=>Ge(e,r)}}function Ge(e,t){let r=e.getInputType();if(!r)return;let n=X(r);if(!Z(n)){let i=y(r);e.reportError(new f(`Expected value of type "${i}", found ${F(t)}.`,{nodes:t}));return}try{if(n.parseLiteral(t,void 0)===void 0){let o=y(r);e.reportError(new f(`Expected value of type "${o}", found ${F(t)}.`,{nodes:t}))}}catch(i){let o=y(r);i instanceof f?e.reportError(i):e.reportError(new f(`Expected value of type "${o}", found ${F(t)}; `+i.message,{nodes:t,originalError:i}))}}function _s(e,t,r,n){var i;let o=Object.keys(n);if(o.length!==1){e.reportError(new f(`OneOf Input Object "${r.name}" must specify exactly one key.`,{nodes:[t]}));return}let a=(i=n[o[0]])===null||i===void 0?void 0:i.value;(!a||a.kind===u.NULL)&&e.reportError(new f(`Field "${r.name}.${o[0]}" must be non-null.`,{nodes:[t]}))}function Gn(e){return{VariableDefinition(t){let r=j(e.getSchema(),t.type);if(r!==void 0&&!K(r)){let n=t.variable.name.value,i=F(t.type);e.reportError(new f(`Variable "$${n}" cannot be non-input type "${i}".`,{nodes:t.type}))}}}}function jn(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(r){let n=e.getRecursiveVariableUsages(r);for(let{node:i,type:o,defaultValue:s,parentType:a}of n){let c=i.name.value,p=t[c];if(p&&o){let l=e.getSchema(),d=j(l,p.type);if(d&&!xs(l,d,p.defaultValue,o,s)){let h=y(d),T=y(o);e.reportError(new f(`Variable "$${c}" of type "${h}" used in position expecting type "${T}".`,{nodes:[p,i]}))}D(a)&&a.isOneOf&>(d)&&e.reportError(new f(`Variable "$${c}" is of type "${d}" but must be non-nullable to be used for OneOf Input Object "${a}".`,{nodes:[p,i]}))}}}},VariableDefinition(r){t[r.variable.name.value]=r}}}function xs(e,t,r,n,i){if(O(n)&&!O(t)){if(!(r!=null&&r.kind!==u.NULL)&&!(i!==void 0))return!1;let a=n.ofType;return Le(e,t,a)}return Le(e,t,n)}var Qn=Object.freeze([dn]),st=Object.freeze([on,Mn,ln,wn,sr,an,Gn,_n,sn,kn,pn,yn,Rn,mn,$n,hn,Tn,or,gr,cn,Tr,Vn,On,jn,Nn,Er,...Qn]),Ls=Object.freeze([fn,Pn,Un,Fn,Cn,Dn,An,sr,or,gr,bn,un,Tr,Er,Sn]);var Bn=class{constructor(t,r){this._ast=t,this._fragments=void 0,this._fragmentSpreads=new Map,this._recursivelyReferencedFragments=new Map,this._onError=r}get[Symbol.toStringTag](){return"ASTValidationContext"}reportError(t){this._onError(t)}getDocument(){return this._ast}getFragment(t){let r;if(this._fragments)r=this._fragments;else{r=Object.create(null);for(let n of this.getDocument().definitions)n.kind===u.FRAGMENT_DEFINITION&&(r[n.name.value]=n);this._fragments=r}return r[t]}getFragmentSpreads(t){let r=this._fragmentSpreads.get(t);if(!r){r=[];let n=[t],i;for(;i=n.pop();)for(let o of i.selections)o.kind===u.FRAGMENT_SPREAD?r.push(o):o.selectionSet&&n.push(o.selectionSet);this._fragmentSpreads.set(t,r)}return r}getRecursivelyReferencedFragments(t){let r=this._recursivelyReferencedFragments.get(t);if(!r){r=[];let n=Object.create(null),i=[t.selectionSet],o;for(;o=i.pop();)for(let s of this.getFragmentSpreads(o)){let a=s.name.value;if(n[a]!==!0){n[a]=!0;let c=this.getFragment(a);c&&(r.push(c),i.push(c.selectionSet))}}this._recursivelyReferencedFragments.set(t,r)}return r}};var xt=class extends Bn{constructor(t,r,n,i){super(r,i),this._schema=t,this._typeInfo=n,this._variableUsages=new Map,this._recursiveVariableUsages=new Map}get[Symbol.toStringTag](){return"ValidationContext"}getSchema(){return this._schema}getVariableUsages(t){let r=this._variableUsages.get(t);if(!r){let n=[],i=new it(this._schema);Ae(t,nr(i,{VariableDefinition:()=>!1,Variable(o){n.push({node:o,type:i.getInputType(),defaultValue:i.getDefaultValue(),parentType:i.getParentInputType()})}})),r=n,this._variableUsages.set(t,r)}return r}getRecursiveVariableUsages(t){let r=this._recursiveVariableUsages.get(t);if(!r){r=this.getVariableUsages(t);for(let n of this.getRecursivelyReferencedFragments(t))r=r.concat(this.getVariableUsages(n));this._recursiveVariableUsages.set(t,r)}return r}getType(){return this._typeInfo.getType()}getParentType(){return this._typeInfo.getParentType()}getInputType(){return this._typeInfo.getInputType()}getParentInputType(){return this._typeInfo.getParentInputType()}getFieldDef(){return this._typeInfo.getFieldDef()}getDirective(){return this._typeInfo.getDirective()}getArgument(){return this._typeInfo.getArgument()}getEnumValue(){return this._typeInfo.getEnumValue()}};function vr(e,t,r=st,n,i=new it(e)){var o;let s=(o=n?.maxErrors)!==null&&o!==void 0?o:100;t||x(!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=$r(r.map(d=>d(p)));try{Ae(t,nr(i,l))}catch(d){if(d!==a)throw d}return c}function qi(e){let t;return function(n,i,o){t===void 0&&(t=new WeakMap);let s=t.get(n);s===void 0&&(s=new WeakMap,t.set(n,s));let a=s.get(i);a===void 0&&(a=new WeakMap,s.set(i,a));let c=a.get(o);return c===void 0&&(c=e(n,i,o),a.set(o,c)),c}}function qn(e){return Promise.all(Object.values(e)).then(t=>{let r=Object.create(null);for(let[n,i]of Object.keys(e).entries())r[i]=t[n];return r})}function Yi(e,t,r){let n=r;for(let i of e)n=ue(n)?n.then(o=>t(o,i)):t(n,i);return n}function Hi(e){return e instanceof Error?e:new Yn(e)}var Yn=class extends Error{constructor(t){super("Unexpected error value: "+y(t)),this.name="NonErrorThrown",this.thrownValue=t}};function Lt(e,t,r){var n;let i=Hi(e);return ws(i)?i:new f(i.message,{nodes:(n=i.nodes)!==null&&n!==void 0?n:t,source:i.source,positions:i.positions,path:r,originalError:i})}function ws(e){return Array.isArray(e.path)}var Ds=qi((e,t,r)=>Bi(e.schema,e.fragments,e.variableValues,t,r));function Or(e){arguments.length<2||x(!1,"graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.");let{schema:t,document:r,variableValues:n,rootValue:i}=e;As(t,r,n);let o=Fs(e);if(!("schema"in o))return{errors:o};try{let{operation:s}=o,a=Cs(o,s,i);return ue(a)?a.then(c=>Nr(c,o.errors),c=>(o.errors.push(c),Nr(null,o.errors))):Nr(a,o.errors)}catch(s){return o.errors.push(s),Nr(null,o.errors)}}function Nr(e,t){return t.length===0?{data:e}:{errors:t,data:e}}function As(e,t,r){t||x(!1,"Must provide document."),St(e),r==null||Y(r)||x(!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 Fs(e){var t,r,n;let{schema:i,document:o,rootValue:s,contextValue:a,variableValues:c,operationName:p,fieldResolver:l,typeResolver:d,subscribeFieldResolver:h,options:T}=e,g,P=Object.create(null);for(let de of o.definitions)switch(de.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=de}else((t=de.name)===null||t===void 0?void 0:t.value)===p&&(g=de);break;case u.FRAGMENT_DEFINITION:P[de.name.value]=de;break;default:}if(!g)return p!=null?[new f(`Unknown operation named "${p}".`)]:[new f("Must provide an operation.")];let ee=(r=g.variableDefinitions)!==null&&r!==void 0?r:[],z=xn(i,ee,c??{},{maxErrors:(n=T?.maxCoercionErrors)!==null&&n!==void 0?n:50});return z.errors?z.errors:{schema:i,fragments:P,rootValue:s,contextValue:a,operation:g,variableValues:z.coerced,fieldResolver:l??br,typeResolver:d??Jn,subscribeFieldResolver:h??br,errors:[]}}function Cs(e,t,r){let n=e.schema.getRootType(t.operation);if(n==null)throw new f(`Schema is not configured to execute ${t.operation} operation.`,{nodes:t});let i=yr(e.schema,e.fragments,e.variableValues,n,t.selectionSet),o=void 0;switch(t.operation){case $.QUERY:return Ir(e,n,r,o,i);case $.MUTATION:return ks(e,n,r,o,i);case $.SUBSCRIPTION:return Ir(e,n,r,o,i)}}function ks(e,t,r,n,i){return Yi(i.entries(),(o,[s,a])=>{let c=$e(n,s,t.name),p=Xi(e,t,r,a,c);return p===void 0?o:ue(p)?p.then(l=>(o[s]=l,o)):(o[s]=p,o)},Object.create(null))}function Ir(e,t,r,n,i){let o=Object.create(null),s=!1;try{for(let[a,c]of i.entries()){let p=$e(n,a,t.name),l=Xi(e,t,r,c,p);l!==void 0&&(o[a]=l,ue(l)&&(s=!0))}}catch(a){if(s)return qn(o).finally(()=>{throw a});throw a}return s?qn(o):o}function Xi(e,t,r,n,i){var o;let s=Vs(e.schema,t,n[0]);if(!s)return;let a=s.type,c=(o=s.resolve)!==null&&o!==void 0?o:e.fieldResolver,p=Ms(e,s,n,t,i);try{let l=dr(s,n[0],e.variableValues),d=e.contextValue,h=c(r,l,d,p),T;return ue(h)?T=h.then(g=>wt(e,a,n,p,i,g)):T=wt(e,a,n,p,i,h),ue(T)?T.then(void 0,g=>{let P=Lt(g,n,re(i));return Rr(P,a,e)}):T}catch(l){let d=Lt(l,n,re(i));return Rr(d,a,e)}}function Ms(e,t,r,n,i){return{fieldName:t.name,fieldNodes:r,returnType:t.type,parentType:n,path:i,schema:e.schema,fragments:e.fragments,rootValue:e.rootValue,operation:e.operation,variableValues:e.variableValues}}function Rr(e,t,r){if(O(t))throw e;return r.errors.push(e),null}function wt(e,t,r,n,i,o){if(o instanceof Error)throw o;if(O(t)){let s=wt(e,t.ofType,r,n,i,o);if(s===null)throw new Error(`Cannot return null for non-nullable field ${n.parentType.name}.${n.fieldName}.`);return s}if(o==null)return null;if(k(t))return Ps(e,t,r,n,i,o);if(Z(t))return Us(t,o);if(se(t))return $s(e,t,r,n,i,o);if(L(t))return Hn(e,t,r,n,i,o);V(!1,"Cannot complete value of unexpected output type: "+y(t))}function Ps(e,t,r,n,i,o){if(!rt(o))throw new f(`Expected Iterable, but did not find one for field "${n.parentType.name}.${n.fieldName}".`);let s=t.ofType,a=!1,c=Array.from(o,(p,l)=>{let d=$e(i,l,void 0);try{let h;return ue(p)?h=p.then(T=>wt(e,s,r,n,d,T)):h=wt(e,s,r,n,d,p),ue(h)?(a=!0,h.then(void 0,T=>{let g=Lt(T,r,re(d));return Rr(g,s,e)})):h}catch(h){let T=Lt(h,r,re(d));return Rr(T,s,e)}});return a?Promise.all(c):c}function Us(e,t){let r=e.serialize(t);if(r==null)throw new Error(`Expected \`${y(e)}.serialize(${y(t)})\` to return non-nullable value, returned: ${y(r)}`);return r}function $s(e,t,r,n,i,o){var s;let a=(s=t.resolveType)!==null&&s!==void 0?s:e.typeResolver,c=e.contextValue,p=a(o,c,n,t);return ue(p)?p.then(l=>Hn(e,Ji(l,e,t,r,n,o),r,n,i,o)):Hn(e,Ji(p,e,t,r,n,o),r,n,i,o)}function Ji(e,t,r,n,i,o){if(e==null)throw new f(`Abstract type "${r.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}". Either the "${r.name}" type should provide a "resolveType" function or each possible type should provide an "isTypeOf" function.`,n);if(L(e))throw new f("Support for returning GraphQLObjectType from resolveType was removed in graphql-js@16.0.0 please return type name instead.");if(typeof e!="string")throw new f(`Abstract type "${r.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}" with value ${y(o)}, received "${y(e)}".`);let s=t.schema.getType(e);if(s==null)throw new f(`Abstract type "${r.name}" was resolved to a type "${e}" that does not exist inside the schema.`,{nodes:n});if(!L(s))throw new f(`Abstract type "${r.name}" was resolved to a non-object type "${e}".`,{nodes:n});if(!t.schema.isSubType(r,s))throw new f(`Runtime Object type "${s.name}" is not a possible type for "${r.name}".`,{nodes:n});return s}function Hn(e,t,r,n,i,o){let s=Ds(e,t,r);if(t.isTypeOf){let a=t.isTypeOf(o,e.contextValue,n);if(ue(a))return a.then(c=>{if(!c)throw zi(t,o,r);return Ir(e,t,o,i,s)});if(!a)throw zi(t,o,r)}return Ir(e,t,o,i,s)}function zi(e,t,r){return new f(`Expected value of type "${e.name}" but got: ${y(t)}.`,{nodes:r})}var Jn=function(e,t,r,n){if(Y(e)&&typeof e.__typename=="string")return e.__typename;let i=r.schema.getPossibleTypes(n),o=[];for(let s=0;s<i.length;s++){let a=i[s];if(a.isTypeOf){let c=a.isTypeOf(e,t,r);if(ue(c))o[s]=c;else if(c)return o.length&&Promise.allSettled(o).catch(()=>{}),a.name}}if(o.length)return Promise.all(o).then(s=>{for(let a=0;a<s.length;a++)if(s[a])return i[a].name})},br=function(e,t,r,n){if(Y(e)||typeof e=="function"){let i=e[n.fieldName];return typeof i=="function"?e[n.fieldName](t,r,n):i}};function Vs(e,t,r){let n=r.name.value;return n===Ce.name&&e.getQueryType()===t?Ce:n===ke.name&&e.getQueryType()===t?ke:n===Me.name?Me:t.getFields()[n]}var E=require("@medplum/core"),Wi=require("rfc6902");var Dt={READER:"reader",WRITER:"writer"},Sr=class{async searchOne(t){return(await this.search({...t,count:1})).entry?.[0]?.resource}async searchResources(t){return(await this.search(t)).entry?.map(n=>n.resource)??[]}async conditionalCreate(t,r,n){if(r.resourceType!==t.resourceType)throw new E.OperationOutcomeError((0,E.badRequest)("Search type must match resource type for conditional update"));return r.count=2,r.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(r);if(i.length===1){let s=i[0];if(!n?.assignedId&&t.id&&t.id!==s.id)throw new E.OperationOutcomeError((0,E.badRequest)("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:i[0],outcome:E.allOk}}else if(i.length>1)throw new E.OperationOutcomeError(E.multipleMatches);return{resource:await this.createResource(t,n),outcome:E.created}},{serializable:!0})}async conditionalUpdate(t,r,n){if(r.resourceType!==t.resourceType)throw new E.OperationOutcomeError((0,E.badRequest)("Search type must match resource type for conditional update"));return r.count=2,r.sortRules=void 0,this.withTransaction(async()=>{let i=await this.searchResources(r);if(i.length===0){if(t.id&&!n?.assignedId)throw new E.OperationOutcomeError((0,E.badRequest)("Cannot perform create as update with client-assigned ID",t.resourceType+".id"));return{resource:await this.createResource(t,n),outcome:E.created}}else if(i.length>1)throw new E.OperationOutcomeError(E.multipleMatches);let o=i[0];if(t.id&&t.id!==o.id)throw new E.OperationOutcomeError((0,E.badRequest)("Resource ID did not match resolved ID",t.resourceType+".id"));return{resource:await this.updateResource({...t,id:o.id},n),outcome:E.allOk}},{serializable:!0})}async conditionalDelete(t){t.count=2,t.sortRules=void 0,await this.withTransaction(async()=>{let r=await this.searchResources(t);if(r.length>1)throw new E.OperationOutcomeError(E.multipleMatches);if(!r.length)return;let n=r[0];await this.deleteResource(n.resourceType,n.id)},{serializable:!0})}async conditionalPatch(t,r){return t.count=2,t.sortRules=void 0,this.withTransaction(async()=>{let n=await this.searchResources(t);if(n.length>1)throw new E.OperationOutcomeError(E.multipleMatches);if(!n.length)throw new E.OperationOutcomeError(E.notFound);let i=n[0];return this.patchResource(i.resourceType,i.id,r)},{serializable:!0})}},zn=class extends Sr{constructor(){super();U(this,"resources");U(this,"history");U(this,"seeding");this.resources=new Map,this.history=new Map,this.seeding=!1}async withSeeding(r){if(this.seeding)return r();this.seeding=!0;let n=await r();return this.seeding=!1,n}clear(){this.resources.clear(),this.history.clear()}setMode(r){}async createResource(r,n,i=!1){let o=JSON.parse((0,E.stringify)(r)),s={...o,id:o.id??this.generateId(),meta:o.meta??{}};this.seeding||(s.meta.versionId&&delete s.meta.versionId,s.meta.lastUpdated&&delete s.meta.lastUpdated),s.meta.versionId??=(0,E.generateId)(),s.meta.lastUpdated??=new Date().toISOString();let{resourceType:a,id:c}=s,p=this.resources.get(a);if(p||(p=new Map,this.resources.set(a,p)),!i&&p.has(c))throw new E.OperationOutcomeError((0,E.badRequest)("Assigned ID is already in use"));p.set(c,s);let l=this.history.get(a);l||(l=new Map,this.history.set(a,l));let d=l.get(c);return d||(d=[],l.set(c,d)),d.push(s),(0,E.deepClone)(s)}generateId(){return(0,E.generateId)()}updateResource(r,n){if(!r.id)throw new E.OperationOutcomeError((0,E.badRequest)("Missing id"));if(n?.ifMatch){let i=n.ifMatch,o=this.resources.get(r.resourceType)?.get(r.id);if(!o)throw new E.OperationOutcomeError(E.notFound);if(o.meta?.versionId!==i)throw new E.OperationOutcomeError(E.preconditionFailed)}return this.createResource(r,void 0,!0)}async patchResource(r,n,i){let o=await this.readResource(r,n);try{let s=(0,Wi.applyPatch)(o,i).filter(Boolean);if(s.length>0)throw new E.OperationOutcomeError((0,E.badRequest)(s.map(a=>a.message).join(`
|
|
60
|
+
`)))}catch(s){throw new E.OperationOutcomeError((0,E.normalizeOperationOutcome)(s))}return o.meta&&(delete o.meta.versionId,delete o.meta.lastUpdated),this.updateResource(o)}async readResource(r,n){let i=this.resources.get(r)?.get(n);if(!i)throw new E.OperationOutcomeError(E.notFound);return(0,E.deepClone)(i)}async readReference(r){let n=r.reference?.split("/");if(n?.length!==2)throw new E.OperationOutcomeError((0,E.badRequest)("Invalid reference"));return this.readResource(n[0],n[1])}async readReferences(r){return Promise.all(r.map(n=>this.readReference(n)))}async readHistory(r,n){await this.readResource(r,n);let i=(this.history.get(r)?.get(n)??[]).reverse().map(o=>({resource:(0,E.deepClone)(o)}));return{resourceType:"Bundle",type:"history",...i.length?{entry:i}:void 0}}async readVersion(r,n,i){await this.readResource(r,n);let o=this.history.get(r)?.get(n)?.find(s=>s.meta?.versionId===i);if(!o)throw new E.OperationOutcomeError(E.notFound);return(0,E.deepClone)(o)}async search(r){let{resourceType:n}=r,i=this.resources.get(n)??new Map,o=[];for(let a of i.values())(0,E.matchesSearchRequest)(a,r)&&o.push(a);let s=o.map(a=>({resource:(0,E.deepClone)(a)}));for(let a of r.sortRules??E.EMPTY)s=s.sort((c,p)=>pa(c.resource,p.resource,a));return r.offset!==void 0&&(s=s.slice(r.offset)),r.count!==void 0&&(s=s.slice(0,r.count)),{resourceType:"Bundle",type:"searchset",entry:s.length?s:void 0,total:o.length}}async searchByReference(r,n,i){r.filters??=[];let o={};for(let s of i){r.filters.push({code:n,operator:E.Operator.EQUALS,value:s});let a=await this.search(r);o[s]=[];for(let c of a.entry??E.EMPTY)c.resource&&o[s].push(c.resource);r.filters.pop()}return o}async deleteResource(r,n){if(!this.resources.get(r)?.get(n))throw new E.OperationOutcomeError(E.notFound);this.resources.get(r)?.delete(n)}withTransaction(r){return r(void 0)}},pa=(e,t,r)=>{let i=E.globalSchema.types[e.resourceType]?.searchParams?.[r.code]?.expression;if(!i)return 0;let o=JSON.stringify((0,E.evalFhirPath)(i,e)),s=JSON.stringify((0,E.evalFhirPath)(i,t));return o.localeCompare(s)*(r.descending?-1:1)};var je=require("@medplum/core");var ye=require("@medplum/core"),Ki=ui(require("dataloader"),1);var _r={base64Binary:N,boolean:q,canonical:N,code:N,date:N,dateTime:N,decimal:fe,id:me,instant:N,integer:fe,markdown:N,number:fe,oid:N,positiveInt:fe,string:N,time:N,unsignedInt:fe,uri:N,url:N,uuid:N,xhtml:N,"http://hl7.org/fhirpath/System.Boolean":q,"http://hl7.org/fhirpath/System.Date":N,"http://hl7.org/fhirpath/System.DateTime":N,"http://hl7.org/fhirpath/System.Decimal":fe,"http://hl7.org/fhirpath/System.Integer":fe,"http://hl7.org/fhirpath/System.String":N,"http://hl7.org/fhirpath/System.Time":N};function Zi(e,t,r){let n;if(t){let o=r._reference;delete r._reference,n={code:o,operator:ye.Operator.EQUALS,value:(0,ye.getReferenceString)(t)}}return r=Object.fromEntries(Object.entries(r).map(([o,s])=>[la(o),s])),{searchRequest:(0,ye.parseSearchRequest)(e,r),referenceFilter:n}}function eo(e,t){let r=e.filters||[];e.filters=[t,...r]}function to(e,t,r){let{searchRequest:n,referenceFilter:i}=Zi(e,t,r);return i&&eo(n,i),n}function Xn(e,t){e.count=Math.min(e.count??ye.DEFAULT_SEARCH_COUNT,t??ye.DEFAULT_MAX_SEARCH_COUNT)}function la(e){return e.startsWith("_")?e:e.replaceAll("_","-")}function Wn(e){return e.replaceAll("-","_")}function fa(e){return JSON.stringify(e,(r,n)=>n&&typeof n=="object"&&!Array.isArray(n)?Object.keys(n).sort((i,o)=>i.localeCompare(o)).reduce((i,o)=>(i[o]=n[o],i),{}):n)}async function xr(e,t,r,n){if(r.searchCount++,r.config?.graphqlMaxSearches&&r.searchCount>r.config.graphqlMaxSearches)throw new Error("Maximum number of searches exceeded");let i=n.fieldName,o=i.substring(0,i.length-4),{searchRequest:s,referenceFilter:a}=Zi(o,e,t);Xn(s,r.config?.graphqlMaxSearches);let c=r.config?.graphqlBatchedSearchSize??0;if(c===0||!a)return a&&eo(s,a),(await r.repo.search(s)).entry?.map(h=>h.resource);let p=fa(s);return(r.searchDataLoaders[p]??=da(r.repo,s,c)).load(a)}function da(e,t,r){return new Ki.default(async n=>{let i=await e.searchByReference(t,n[0].code,n.map(o=>o.value));return n.map(o=>i[o.value])},{maxBatchSize:r})}function At(e){let t={_count:{type:le,description:"Specify how many elements to return from a repeating list."},_offset:{type:le,description:"Specify the offset to start at for a repeating element."},_sort:{type:N,description:"Specify the sort order by comma-separated list of sort rules in priority order."},_id:{type:N,description:"Select resources based on the logical id of the resource."},_lastUpdated:{type:N,description:"Select resources based on the last time they were changed."},_filter:{type:N,description:" The _filter parameter provides a syntax for expressing a set of query expressions on the underlying resources."},_cursor:{type:N,description:"The _cursor parameter is used to retrieve the next page of results from a previous search."}},r=(0,ye.getSearchParameters)(e);if(r)for(let[n,i]of Object.entries(r))t[Wn(n)]={type:N,description:i.description};return t}function Kn(e,t){return e.fieldNodes.some(r=>r.selectionSet?.selections.some(n=>n.kind===u.FIELD&&n.name.value===t))}function ro(e){return{resourceType:"OperationOutcome",issue:e.map(t=>({severity:"error",code:"invalid",details:{text:t.message}}))}}var no={..._r},Zn;function Ft(e,t){let r=no[e];return r||(r=ma(e,t),no[e]=r),r}function ma(e,t){let r=(0,je.getDataType)(e);return new xe({name:e+t,description:r.description,fields:()=>ha(e,t)})}function ha(e,t){let r={};if((0,je.isResourceType)(e)){let n={description:"The type of resource",type:N};r.resourceType=n}return ya(e,r,t),r}function ya(e,t,r){let n=(0,je.getDataType)(e);for(let[i,o]of Object.entries(n.elements))for(let s of o.type)Ta(t,i,o,s,r)}function Ta(e,t,r,n,i){let o=n.code;if(o==="Resource")return;(o==="Element"||o==="BackboneElement")&&(o=r.type[0].code);let s={description:r.description,type:Ft(o,i)};r.max>1&&(s.type=new M(new I(Ft(o,i)))),r.min>0&&!t.endsWith("[x]")&&(s.type=new I(s.type));let a=t.split(".").pop().replace("[x]",(0,je.capitalize)(n.code));e[a]=s}function io(){return Zn||(Zn=new xe({name:"PatchOperationInput",description:"A JSON Patch operation as per RFC 6902",fields:{op:{type:new I(N),description:"The operation to perform"},path:{type:new I(N),description:"A JSON-Pointer"},value:{type:N,description:"The value to use within the operations. (May be any scalar, but GraphQL input types are limited.)"}}})),Zn}var C=require("@medplum/core");var Lr={..._r};function Qe(e){let t=Lr[e];return t||(t=ei(e),Lr[e]=t),t}function ei(e){if(e==="ResourceList")return new Fe({name:"ResourceList",types:()=>(0,C.getResourceTypes)().map(Qe).filter(r=>!!r),resolveType:_a});let t=(0,C.getDataType)(e);return new H({name:e,description:t.description,fields:()=>ga(e)})}function ga(e){let t={};return Ea(e,t),Ra(e,t),t}function Ea(e,t){let r=(0,C.getDataType)(e);(0,C.isResourceTypeSchema)(r)&&(t.resourceType={type:new I(N),description:"Resource Type"}),e==="Reference"&&(t.resource={description:"Reference",type:Qe("ResourceList"),resolve:Sa});for(let[n,i]of Object.entries(r.elements))for(let o of i.type)va(t,n,i,o)}function va(e,t,r,n){let i=n.code;(i==="Element"||i==="BackboneElement")&&(i=r.type[0].code),i==="Resource"&&(i="ResourceList");let o={description:r.description,type:ba(r,i,t),resolve:Oa};r.max>1&&(o.args=Na(i));let s=t.split(".").pop().replace("[x]",(0,C.capitalize)(n.code));e[s]=o}function Na(e){let t={_count:{type:le,description:"Specify how many elements to return from a repeating list."},_offset:{type:le,description:"Specify the offset to start at for a repeating element."}};if(!(0,C.isLowerCase)(e.charAt(0))){t.fhirpath={type:N,description:"A FHIRPath statement selecting which of the subnodes is to be included"};let r=(0,C.tryGetDataType)(e);if(r?.elements)for(let[n,i]of Object.entries(r.elements))for(let o of i.type)Ia(t,n,i,o)}return t}function Ia(e,t,r,n){let i=n.code,o=t.replace("[x]",(0,C.capitalize)(i));switch(i){case"canonical":case"code":case"id":case"oid":case"string":case"uri":case"url":case"uuid":case"http://hl7.org/fhirpath/System.String":e[o]={type:N,description:r.description};break}}function Ra(e,t){for(let r of(0,C.getResourceTypes)()){let n=Qe(r),i=(0,C.getSearchParameters)(r),o={},s=0;if(i)for(let[a,c]of Object.entries(i))c.target?.includes(e)&&(o[Wn(a)]={value:a},s++);if(s>0){let a=new be({name:e+"_"+r+"_reference",values:o}),c=At(r);c._reference={type:new I(a),description:`Specify which property to use for reverse lookup for ${r}`},t[r+"List"]={type:new M(n),args:c,resolve:xr}}}}function ba(e,t,r){let n=Qe(t);return e.max>1&&(n=new M(new I(n))),e.min!==0&&!r.endsWith("[x]")&&(n=new I(n)),n}async function Oa(e,t,r,n){let i=e?.[n.fieldName];if(!t||!i)return i;let{_offset:o,_count:s,fhirpath:a,...c}=t,p=i;for(let[l,d]of Object.entries(c))p=p.filter(h=>h[l]===d);return a&&(p=p.filter(l=>(0,C.toJsBoolean)((0,C.evalFhirPathTyped)(a,[(0,C.toTypedValue)(l)])))),o&&(p=p.slice(o)),s&&(p=p.slice(0,s)),p}async function Sa(e,t,r){if((0,C.isReference)(e))try{return await r.dataLoader.load(e)}catch(n){throw new C.OperationOutcomeError((0,C.normalizeOperationOutcome)(n),{cause:n})}}function _a(e){let t=e?.resourceType;if(t)return Qe(t).name}var xa=new A.LRUCache,ti;async function so(e,t,r,n){let{query:i,operationName:o,variables:s}=e.body;if(!i)return[(0,A.badRequest)("Must provide query.")];let a;try{a=jt(i)}catch{return[(0,A.badRequest)("GraphQL syntax error.")]}let c=Da(),p=[...st,Qa(r,e.config?.graphqlMaxDepth),qa(r)],l=vr(c,a,p);if(l.length>0)return[ro(l)];let d=La(i);if(d&&!r.options?.introspectionEnabled)return[A.forbidden];!n?.batch&&!wa(i)&&t.setMode(Dt.READER);let h=new oo.default(g=>t.readReferences(g)),T=d&&xa.get(i);if(!T){let g={repo:t,config:e.config,dataLoader:h,searchCount:0,searchDataLoaders:Object.create(null)};T=await Or({schema:c,document:a,contextValue:g,operationName:o,variableValues:s})}return[A.allOk,T,{contentType:A.ContentType.JSON}]}function La(e){return e.includes("query IntrospectionQuery")||e.includes("__schema")}function wa(e){return e.includes("mutation")}function Da(){return ti||(ti=Aa()),ti}function Aa(){for(let r of(0,A.getResourceTypes)())Lr[r]=ei(r);let e={},t={};for(let r of(0,A.getResourceTypes)()){let n=Qe(r);e[r]={type:n,args:{id:{type:new I(me),description:r+" ID"}},resolve:Pa},e[r+"List"]={type:new M(n),args:At(r),resolve:xr},e[r+"Connection"]={type:ka(r,n),args:At(r),resolve:Ma},t[r+"Create"]={type:n,args:Fa(r),resolve:Ua},t[r+"Update"]={type:n,args:Ca(r),resolve:$a},t[r+"Patch"]={type:n,args:za(r),resolve:Ga},t[r+"Delete"]={type:n,args:{id:{type:new I(me),description:r+" ID"}},resolve:Va}}return new Pe({query:new H({name:"QueryType",fields:e}),mutation:new H({name:"MutationType",fields:t})})}function Fa(e){return{res:{type:new I(Ft(e,"Create")),description:e+" Create"}}}function Ca(e){return{id:{type:new I(me),description:e+" ID"},res:{type:new I(Ft(e,"Update")),description:e+" Update"}}}function ka(e,t){return new H({name:e+"Connection",fields:{count:{type:le},offset:{type:le},pageSize:{type:le},first:{type:N},previous:{type:N},next:{type:N},last:{type:N},edges:{type:new M(new H({name:e+"ConnectionEdge",fields:{mode:{type:N},score:{type:fe},resource:{type:t}}}))}}})}async function Ma(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-10),s=to(o,e,t);Kn(n,"count")&&(s.total="accurate"),Kn(n,"edges")||(s.count=0),Xn(s,r.config?.graphqlMaxSearches);let a=await r.repo.search(s);return{count:a.total,offset:s.offset??0,pageSize:s.count??A.DEFAULT_SEARCH_COUNT,edges:a.entry?.map(c=>({mode:c.search?.mode,score:c.search?.score,resource:c.resource})),next:Ja(a)}}async function Pa(e,t,r,n){try{return await r.dataLoader.load({reference:`${n.fieldName}/${t.id}`})}catch(i){throw new A.OperationOutcomeError((0,A.normalizeOperationOutcome)(i),{cause:i})}}async function Ua(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-6),s=t.res;if(s.resourceType!==o)throw new A.OperationOutcomeError((0,A.badRequest)("Invalid resourceType"));return r.repo.createResource((0,A.deepClone)(s))}async function $a(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-6),s=t.res,a=t.id;if(s.resourceType!==o)throw new A.OperationOutcomeError((0,A.badRequest)("Invalid resourceType"));if(a!==s.id)throw new A.OperationOutcomeError((0,A.badRequest)("Invalid ID"));return r.repo.updateResource((0,A.deepClone)(s))}async function Va(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-6);await r.repo.deleteResource(o,t.id)}async function Ga(e,t,r,n){let i=n.fieldName,o=i.substring(0,i.length-5),s=t.id,a=t.patch;if(!o||!s||!Array.isArray(a))throw new A.OperationOutcomeError((0,A.badRequest)("Invalid patch arguments"));return r.repo.patchResource(o,s,a)}var ja=12,Qa=(e,t=ja)=>r=>new ri(r,e,t),ri=class{constructor(t,r,n){U(this,"context");U(this,"maxDepth");U(this,"fragmentDepths");U(this,"router");this.context=t,this.router=r,this.fragmentDepths=Object.create(null),this.maxDepth=n}OperationDefinition(t){let r=this.getDepth(...t.selectionSet.selections);r.depth>this.maxDepth&&this.router.log("warn","Query max depth too high",{depth:r.depth,limit:this.maxDepth,query:t.loc?.source?.body})}getDepth(...t){let r={depth:-1};for(let n of t){let i={depth:0};if(n.kind===u.FIELD)n.selectionSet?.selections?(i=this.getDepth(...n.selectionSet.selections),i.depth+=1):i={depth:0,node:n};else if(n.kind===u.FRAGMENT_SPREAD){let o=n.name.value,s=this.context.getFragment(o),a=this.fragmentDepths[o];a?i=a:s&&(i=this.getDepth(...s.selectionSet.selections),this.fragmentDepths[o]=i)}else n.kind===u.INLINE_FRAGMENT&&(i=this.getDepth(...n.selectionSet.selections));if(i.depth>this.maxDepth)return i;i.depth>r.depth&&(r=i)}return r}},Ba=1e4,qa=(e,t)=>r=>new ni(r,e,t),ni=class{constructor(t,r,n){U(this,"context");U(this,"maxCost");U(this,"debug");U(this,"router");U(this,"fragmentCosts");this.context=t,this.maxCost=n?.maxCost??Ba,this.debug=n?.debug??!1,this.router=r,this.fragmentCosts=Object.create(null)}OperationDefinition(t){let r=0;for(let n of t.selectionSet.selections){let i=performance.now(),o=this.calculateCost(n);r+=o,this.log(n.kind,"node has final cost",o,"(",performance.now()-i,"ms)"),r>this.maxCost&&this.router.log("warn","GraphQL query too complex",{cost:r,limit:this.maxCost,query:t.loc?.source?.body})}}calculateCost(...t){let r=0;for(let n of t){if(n.kind===u.FIELD&&n.selectionSet){let i=0,o=1;Ya(n)?(this.log("Found search field",n.name.value),i=8,o=this.getCount(n.arguments)??20):Ha(n)&&(this.log("Found linked resource"),i=1,o=2);let s=i+o*this.calculateCost(...n.selectionSet.selections);s&&this.log("Field",n.name.value,"costs",s),r+=s}else if(n.kind===u.FRAGMENT_SPREAD){let i=n.name.value,o=this.context.getFragment(i),s=this.fragmentCosts[i];if(s!==void 0)this.log("Fragment",i,"costs",s,"(cached)"),r+=s;else if(o){let a=this.calculateCost(...o.selectionSet.selections);this.fragmentCosts[i]=a,this.log("Fragment",i,"costs",a),r+=a}}else if(n.kind===u.INLINE_FRAGMENT){let i=this.calculateCost(...n.selectionSet.selections);this.log("Inline fragment on",n.typeCondition?.name.value,"costs",i),r+=i}if(r>this.maxCost)return r}return r}getCount(t){let r=t?.find(n=>n.name.value==="_count");if(r?.value.kind===u.INT)return Number.parseInt(r.value.value,10)}log(...t){this.debug&&console.log(...t)}};function Ya(e){return e.name.value.endsWith("List")}function Ha(e){return e.name.value==="resource"}function Ja(e){let t=e.link?.find(r=>r.relation==="next")?.url;if(t)return new URL(t).searchParams.get("_cursor")||void 0}function za(e){return{id:{type:new I(me),description:e+" ID"},patch:{type:new I(new M(new I(io()))),description:"Array of patch operations"}}}var Ct=class{constructor(){U(this,"routes",[])}add(t,r,n,i){let o=r.split("/").filter(s=>!!s).map(s=>s.startsWith(":")?{value:s.substring(1),param:!0}:{value:s});this.routes.push({method:t,path:o,handler:n,data:i})}find(t,r){let n=r.indexOf("?"),i=n>-1,o=r.substring(0,i?n:r.length).split("/").filter(Boolean),s,a=-1;for(let c of this.routes){let p=Xa(c,t,o);p>a&&(s=c,a=p)}if(s)return{handler:s.handler,path:o.join("/"),params:Wa(s,o),query:i?Ka(r):void 0,data:s.data}}};function Xa(e,t,r){if(t!==e.method||r.length!==e.path.length)return-1;let n=0;for(let i=0;i<r.length;i++)if(!e.path[i].param){if(r[i]!==e.path[i].value)return-1;n++}return n}function Wa(e,t){let r=Object.create(null);for(let n=0;n<t.length;n++)e.path[n].param&&(r[e.path[n].value]=t[n]);return r}function Ka(e){let t=new URL(e,"https://example.com/"),r=Object.create(null),n=t.searchParams;for(let i of n.keys()){let o=n.getAll(i);r[i]=o.length===1?o[0]:o}return r}async function Za(e,t,r){let n=e.body;if(n.resourceType!=="Bundle")return[(0,_.badRequest)("Not a bundle")];let i=await kt(e,t,r,n);return[_.allOk,i]}async function ec(e,t,r,n){oi(e,t,n);let{resourceType:i}=e.params,o=await t.search((0,_.parseSearchRequest)(i,e.query));return[_.allOk,o]}async function tc(e,t,r,n){oi(e,t,n);let i=(0,_.parseSearchRequest)("MultipleTypes",e.query);if(!i.types||i.types.length===0)return[(0,_.badRequest)("No types specified")];let o=await t.search(i);return[_.allOk,o]}async function rc(e,t,r,n){oi(e,t,n);let{resourceType:i}=e.params,o=e.body,s=await t.search((0,_.parseSearchRequest)(i,o));return[_.allOk,s]}function oi(e,t,r){!r?.batch&&e.config?.searchOnReader&&t.setMode(Dt.READER)}async function nc(e,t,r,n){let{resourceType:i}=e.params,o=e.body,s=!!n?.batch;if(e.query?._account&&typeof e.query._account=="string"&&(o.meta=o.meta||{},o.meta.account={reference:e.query._account}),e.headers?.["if-none-exist"]){let a=(0,_.singularize)(e.headers["if-none-exist"]),c=await t.conditionalCreate(o,(0,_.parseSearchRequest)(`${i}?${a}`),{assignedId:s});return[c.outcome,c.resource]}return co(i,o,t,{assignedId:s})}async function co(e,t,r,n){if(t.resourceType!==e)return[(0,_.badRequest)(`Incorrect resource type: expected ${e}, but found ${t.resourceType||"<EMPTY>"}`)];let i=await r.createResource(t,n);return[_.created,i]}async function ic(e,t){let{resourceType:r,id:n}=e.params,i=await t.readResource(r,n);return[_.allOk,i]}async function oc(e,t){let{resourceType:r,id:n}=e.params,i=ao(e.query,"_offset"),o=ao(e.query,"_count"),s=await t.readHistory(r,n,{offset:i,limit:o});return[_.allOk,s]}async function sc(e,t){let{resourceType:r,id:n,vid:i}=e.params,o=await t.readVersion(r,n,i);return[_.allOk,o]}async function ac(e,t){let{resourceType:r,id:n}=e.params,i=e.body;return uo(r,n,i,t,{ifMatch:dc(e.headers?.["if-match"])})}async function uo(e,t,r,n,i){if(r.resourceType!==e)return[(0,_.badRequest)("Incorrect resource type")];if(r.id!==t)return[(0,_.badRequest)("Incorrect resource ID")];let o=await n.updateResource(r,i);return[_.allOk,o]}async function cc(e,t,r,n){let{resourceType:i}=e.params,o=e.body,s=(0,_.parseSearchRequest)(i,e.query),a=await t.conditionalUpdate(o,s,{assignedId:n?.batch});return[a.outcome,a.resource]}async function uc(e,t){let{resourceType:r,id:n}=e.params;return await t.deleteResource(r,n),[_.allOk]}async function pc(e,t){let{resourceType:r}=e.params,n=(0,_.parseSearchRequest)(r,e.query);return await t.conditionalDelete(n),[_.allOk]}async function lc(e,t){let{resourceType:r,id:n}=e.params,i=e.body;if(!i)return[(0,_.badRequest)("Empty patch body")];if(!Array.isArray(i))return[(0,_.badRequest)("Patch body must be an array")];let o=await t.patchResource(r,n,i);return[_.allOk,o]}async function fc(e,t){let{resourceType:r}=e.params,n=e.body;if(!n)return[(0,_.badRequest)("Empty patch body")];if(!Array.isArray(n))return[(0,_.badRequest)("Patch body must be an array")];let i=(0,_.parseSearchRequest)(r,e.query),o=await t.conditionalPatch(i,n);return[_.allOk,o]}var ii=class extends _.EventTarget{constructor(r={}){super();U(this,"router",new Ct);U(this,"options");this.options=r,this.router.add("GET","",tc,{interaction:"search-system"}),this.router.add("POST","",Za,{interaction:"batch"}),this.router.add("GET",":resourceType",ec,{interaction:"search-type"}),this.router.add("POST",":resourceType/_search",rc,{interaction:"search-type"}),this.router.add("POST",":resourceType",nc,{interaction:"create"}),this.router.add("GET",":resourceType/:id",ic,{interaction:"read"}),this.router.add("GET",":resourceType/:id/_history",oc,{interaction:"history-instance"}),this.router.add("GET",":resourceType/:id/_history/:vid",sc,{interaction:"vread"}),this.router.add("PUT",":resourceType/:id",ac,{interaction:"update"}),this.router.add("PUT",":resourceType",cc,{interaction:"update"}),this.router.add("DELETE",":resourceType/:id",uc,{interaction:"delete"}),this.router.add("DELETE",":resourceType",pc,{interaction:"delete"}),this.router.add("PATCH",":resourceType/:id",lc,{interaction:"patch"}),this.router.add("PATCH",":resourceType",fc,{interaction:"patch"}),this.router.add("POST","$graphql",so,{interaction:"operation"})}add(r,n,i,o){this.router.add(r,n,i,{interaction:o??"operation"})}find(r,n){return this.router.find(r,n)}async handleRequest(r,n){let i=r.url;if(r.pathname)throw new _.OperationOutcomeError((0,_.badRequest)("FhirRequest must specify url instead of pathname"));let o=this.find(r.method,i);if(!o)return[_.notFound];let{handler:s,path:a,params:c,query:p}=o;r.params=c,r.pathname=a,p&&(r.query=p);try{return await s(r,n,this)}catch(l){return[(0,_.normalizeOperationOutcome)(l)]}}log(r,n,i){let o={type:r,message:n,data:i};this.dispatchEvent(o)}};function dc(e){if(!e)return;let t=/"([^"]+)"/.exec(e);return t?t[1]:void 0}function ao(e,t){let r=e[t],n;return Array.isArray(r)?n=r.at(-1):n=r,n?Number.parseInt(n,10):void 0}function mc(e,t,r){return{method:e,url:t,pathname:"",query:{},params:{},body:r}}0&&(module.exports={FhirRepository,FhirRouter,MemoryRepository,RepositoryMode,Router,createResourceImpl,makeSimpleRequest,processBatch,updateResourceImpl});
|
|
61
61
|
//# sourceMappingURL=index.cjs.map
|