GraphQL FHIR definitions Request
# support
i
Hello Medplum team! First of all - thanks for you amazing work, it's the best solution on the market - simple and clear. Could you help me to understand the source of the issue. So basically I'm running the medplum app with no critical modifications and locally everything works fine - both apps (server and app) running in Docker with postgres and Redis instances. But after deploy I see that some FHIR definitions isn't present in. the project. So this graphql request:
http://localhost:8103/fhir/R4/$graphql
locally return me full definition list data like that:
Copy code
{
    "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?