Read

Read is an Instance Level Interaction that read's the current state of the resource. All resources supported will include a query by id; named after the resource, to retrieve a specific resource record. The following is an example of a Directory GraphQL Practitioner read:

example

query ReadExample ($practitionerId: String!) { practitioner(id: $practitionerId) { id name { given family } } }

variables

{ "practitionerId": "b70af54e-6930-4eb1-abd4-e3477643ad94" }