ivant._68122
10/17/2024, 6:25 PMhttp://localhost:8103/fhir/R4/$graphql
locally return me full definition list data like that:
{
"data": {
"StructureDefinitionList": [
{
"resourceType": "StructureDefinition",
"name": "Patient",
"kind": "resource",
"description": "Demographics and other administrative information about an individual or animal receiving care or other health-related services.",
...
And that good. And works fine
But after deployment (everything works fine, no errors in server or redis or postgress). Exactly this request (graphql) return me empty fields, like that:
{"data":{"StructureDefinitionList":[],"SearchParameterList":[]}}
And the main question - I can't understand where all this definitions are stored, how and when they are pulled and why the object is empty. I'm trying to log everything, but the structure is huge and looks like i've missed something.
What else should I check to understand the root of the issue?