GraphQL API
Last updated
Was this helpful?
Last updated
Was this helpful?
Aidbox supports default GraphQL implementation without any extensions () Queries are supported, but mutations are not.
In Aidbox UI there is GraphiQL interface, you can try your queries there.
GraphQL console sends all your requests to $graphql
endpoint which you can use from your application too
POST
/$graphql
This endpoint allows you to execute GraphQL queries .
query
string
GraphQL query
variables
object
JSON object with variables
Aidbox generates different GraphQL scalars, objects, queries with arguments and unions from FHIR metadata.
For each ResourceType these queries are generated:
<resourceType>
— get fields of the specified resource.
Accepts a single argument id
and returns a resource with the specified id
.
Example: Patient (id: "pat-1")
\
<resourceType>List
— search resources of given resource type.
Accepts FHIR search parameters for that resourceType. SearchParameters have underscores instead of dashes and referenced later in this documentation as search_parameter
. For each SearchParameter two arguments are generated:
<search_parameter>
e.g.: PatientList(address_state: "CA")
Accepts a string. Is an equivalent of using FHIR search parameter
<search_parameter>_list
e.g.: PatientList(language_list: ["en", "de"])
Accepts a list of strings. It is an equivalent of repeating search parameters in FHIR search. <search_parameter>_list
arg is needed because args can't be repeated in the GraphQL query.
<resourceType>History
— get resource history.
Accepts id
argument and returns history of the resource with the specified id
.
Example: PatientHistory(id: "pt1", _sort: "txid") {name}
PatientList(language_list: ["en", "de"])
will return a set of Patients the same as GET /Patient?language=en&language=de
and those will be patients with en
AND de
as their communication language specified\
PatientList(language: "en,de")
will return a set of Patients the same as GET /Patient?language=en,de
and those will be patients with en
OR de
as their communication language specified\
PatientList(language_list: ["en", "de,fr"])
will return a set of Patients the same as GET /Patient?language=en&language=de,fr
and those will be patients with en
AND (de
OR fr
) as their communication language specified\
PatientList(language: "en", language: "de")
is an error, it will ignore all language
arg repetitions except of the last and will return a set of Patients the same as
GET /Patient?language=de
For each ResourceType object with fields is generated. For every FHIR resource attribute field is created. Also for attributes with Reference type unions are created for direct and reverse includes.
For example:
observations_as_subject
for Patient will be equivalent of _revinclude=Observation:subject
This example demonstrates how to use fragments, both types of search parameter arguments and reverse includes.
By default, Aidbox does in memory index cache warmup when the first request comes in.
You can change it to warmup cache on startup.
FHIR GraphQL Search parameter. In Aidbox you can use reverse include in such format:
Here's an example showing how to create , search parameter and use it in GraphQL: