├── .gitignore ├── .travis.yml ├── README.md ├── config.js ├── dist ├── client │ └── index.html └── notify.js ├── gulpfile.js ├── package.json ├── src ├── client │ ├── .babelrc │ ├── common │ │ ├── fhir │ │ │ └── helpers │ │ │ │ ├── to-human-name.js │ │ │ │ └── to-national-id.js │ │ ├── forms │ │ │ └── Index.jsx │ │ └── formsy │ │ │ ├── input.js │ │ │ └── photon │ │ │ ├── checkbox.js │ │ │ ├── index.js │ │ │ └── input.js │ ├── components │ │ ├── dashboard │ │ │ └── index.js │ │ ├── layout │ │ │ ├── index.js │ │ │ ├── nav.js │ │ │ └── style │ │ │ │ └── style.css │ │ └── patient │ │ │ ├── delete │ │ │ └── index.js │ │ │ ├── details │ │ │ ├── Evals.js │ │ │ ├── FOut.js │ │ │ └── index.js │ │ │ ├── form │ │ │ ├── form.js │ │ │ └── index.js │ │ │ ├── i18n │ │ │ ├── ar.js │ │ │ ├── en.js │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── list │ │ │ ├── filter.js │ │ │ └── index.js │ │ │ ├── route.js │ │ │ └── stores │ │ │ └── index.js │ ├── index.js │ ├── routes.js │ └── webpack.js ├── data │ ├── common │ │ ├── acl │ │ │ ├── role │ │ │ │ ├── model │ │ │ │ │ └── index.js │ │ │ │ ├── mutations │ │ │ │ │ ├── index.js │ │ │ │ │ ├── remove-all.js │ │ │ │ │ ├── remove.js │ │ │ │ │ └── upsert.js │ │ │ │ ├── passport │ │ │ │ │ └── index.js │ │ │ │ ├── queries │ │ │ │ │ ├── index.js │ │ │ │ │ ├── multiple.js │ │ │ │ │ └── single.js │ │ │ │ └── types │ │ │ │ │ ├── fields.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── input.js │ │ │ └── user │ │ │ │ ├── model │ │ │ │ ├── index.js │ │ │ │ └── model.js │ │ │ │ ├── mutations │ │ │ │ ├── index.js │ │ │ │ ├── login.js │ │ │ │ ├── logout.js │ │ │ │ ├── register.js │ │ │ │ ├── remove-all.js │ │ │ │ ├── remove.js │ │ │ │ └── upsert.js │ │ │ │ ├── passport │ │ │ │ └── index.js │ │ │ │ ├── queries │ │ │ │ ├── index.js │ │ │ │ ├── multiple.js │ │ │ │ └── single.js │ │ │ │ ├── resolvers.js │ │ │ │ └── types │ │ │ │ ├── fields.js │ │ │ │ ├── index.js │ │ │ │ └── input.js │ │ ├── base │ │ │ └── model.js │ │ └── errors │ │ │ └── foo.js │ ├── fhir │ │ ├── helpers │ │ │ ├── gql-schema │ │ │ │ ├── fields.js │ │ │ │ ├── index.js │ │ │ │ ├── type-map.js │ │ │ │ └── types │ │ │ │ │ └── primitive │ │ │ │ │ ├── code.js │ │ │ │ │ ├── date-time.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── instant.js │ │ │ │ │ ├── positive-integer.js │ │ │ │ │ └── unsigned-integer.js │ │ │ └── mongoose-schema │ │ │ │ ├── json-to-schema.js │ │ │ │ ├── type-map.js │ │ │ │ └── types │ │ │ │ └── meta.js │ │ ├── profiles │ │ │ ├── base │ │ │ │ ├── abstract │ │ │ │ │ ├── backbone-element.json │ │ │ │ │ ├── domain-resource.json │ │ │ │ │ ├── element.json │ │ │ │ │ ├── extension.json │ │ │ │ │ └── resource.json │ │ │ │ ├── data │ │ │ │ │ ├── address.json │ │ │ │ │ ├── annotation.json │ │ │ │ │ ├── attachment.json │ │ │ │ │ ├── codeable-concept.json │ │ │ │ │ ├── coding.json │ │ │ │ │ ├── contact-point.json │ │ │ │ │ ├── element-definition.json │ │ │ │ │ ├── human-name.json │ │ │ │ │ ├── identifier.json │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── narrative.json │ │ │ │ │ ├── period.json │ │ │ │ │ ├── quantity.json │ │ │ │ │ ├── range.json │ │ │ │ │ ├── ratio.json │ │ │ │ │ ├── reference.json │ │ │ │ │ ├── sampled-data.json │ │ │ │ │ ├── signature.json │ │ │ │ │ └── timing.json │ │ │ │ ├── index.js │ │ │ │ └── primitive │ │ │ │ │ └── boolean.json │ │ │ └── resources │ │ │ │ ├── account.json │ │ │ │ ├── allergy-intolerance.json │ │ │ │ ├── appointment-response.json │ │ │ │ ├── appointment.json │ │ │ │ ├── audit-event.json │ │ │ │ ├── basic.json │ │ │ │ ├── binary.json │ │ │ │ ├── body-site.json │ │ │ │ ├── bundle.json │ │ │ │ ├── care-plan.json │ │ │ │ ├── claim-response.json │ │ │ │ ├── claim.json │ │ │ │ ├── clinical-impression.json │ │ │ │ ├── communication-request.json │ │ │ │ ├── communication.json │ │ │ │ ├── composition.json │ │ │ │ ├── concept-map.json │ │ │ │ ├── condition.json │ │ │ │ ├── conformance.json │ │ │ │ ├── contract.json │ │ │ │ ├── coverage.json │ │ │ │ ├── data-element.json │ │ │ │ ├── detected-issue.json │ │ │ │ ├── device-component.json │ │ │ │ ├── device-metric.json │ │ │ │ ├── device-use-request.json │ │ │ │ ├── device-use-statement.json │ │ │ │ ├── device.json │ │ │ │ ├── diagnostic-order.json │ │ │ │ ├── diagnostice-report.json │ │ │ │ ├── document-manifest.json │ │ │ │ ├── document-reference.json │ │ │ │ ├── eligibility-request.json │ │ │ │ ├── eligibility-response.json │ │ │ │ ├── encounter.json │ │ │ │ ├── enrollment-request.json │ │ │ │ ├── enrollment-response.json │ │ │ │ ├── episode-of-care.json │ │ │ │ ├── explanation-of-benifit.json │ │ │ │ ├── family-member-history.json │ │ │ │ ├── flag.json │ │ │ │ ├── goal.json │ │ │ │ ├── group.json │ │ │ │ ├── healthcare-service.json │ │ │ │ ├── imaging-object-selection.json │ │ │ │ ├── imaging-study.json │ │ │ │ ├── immunization-recommendation.json │ │ │ │ ├── immunization.json │ │ │ │ ├── implementation-guide.json │ │ │ │ ├── index.js │ │ │ │ ├── list.json │ │ │ │ ├── location.json │ │ │ │ ├── media.json │ │ │ │ ├── medication-administration.json │ │ │ │ ├── medication-despense.json │ │ │ │ ├── medication-order.json │ │ │ │ ├── medication-statement.json │ │ │ │ ├── medication.json │ │ │ │ ├── message-header.json │ │ │ │ ├── naming-system.json │ │ │ │ ├── nutrition-order.json │ │ │ │ ├── observation.json │ │ │ │ ├── operation-definition.json │ │ │ │ ├── operation-outcome.json │ │ │ │ ├── order-response.json │ │ │ │ ├── order.json │ │ │ │ ├── organization.json │ │ │ │ ├── patient.json │ │ │ │ ├── payment-notice.json │ │ │ │ ├── payment-reconciliation.json │ │ │ │ ├── person.json │ │ │ │ ├── practitioner.json │ │ │ │ ├── procedure-request.json │ │ │ │ ├── procedure.json │ │ │ │ ├── process-request.json │ │ │ │ ├── process-response.json │ │ │ │ ├── provenance.json │ │ │ │ ├── questionnaire-response.json │ │ │ │ ├── questionnaire.json │ │ │ │ ├── referral-request.json │ │ │ │ ├── related-person.json │ │ │ │ ├── schedule.json │ │ │ │ ├── search-parameter.json │ │ │ │ ├── slot.json │ │ │ │ ├── specimen.json │ │ │ │ ├── structure-definition.json │ │ │ │ ├── subscription.json │ │ │ │ ├── substance.json │ │ │ │ ├── supply-delivery.json │ │ │ │ ├── supply-request.json │ │ │ │ ├── test-script.json │ │ │ │ ├── value-set.json │ │ │ │ └── vision-prescription.json │ │ ├── resources │ │ │ ├── bundle │ │ │ │ ├── model │ │ │ │ │ ├── index.js │ │ │ │ │ └── model.js │ │ │ │ ├── mutations │ │ │ │ │ ├── index.js │ │ │ │ │ ├── remove-all.js │ │ │ │ │ ├── remove.js │ │ │ │ │ └── upsert.js │ │ │ │ ├── queries │ │ │ │ │ ├── find-one.js │ │ │ │ │ ├── find.js │ │ │ │ │ └── index.js │ │ │ │ └── resolvers.js │ │ │ ├── domain-resource │ │ │ │ ├── interface.js │ │ │ │ └── model.js │ │ │ ├── encounter │ │ │ │ ├── model │ │ │ │ │ ├── index.js │ │ │ │ │ └── model.js │ │ │ │ ├── mutations │ │ │ │ │ ├── index.js │ │ │ │ │ ├── remove-all.js │ │ │ │ │ ├── remove.js │ │ │ │ │ └── upsert.js │ │ │ │ ├── queries │ │ │ │ │ ├── find-one.js │ │ │ │ │ ├── find.js │ │ │ │ │ └── index.js │ │ │ │ └── resolvers.js │ │ │ ├── episode-of-care │ │ │ │ ├── model │ │ │ │ │ ├── index.js │ │ │ │ │ └── model.js │ │ │ │ ├── mutations │ │ │ │ │ ├── index.js │ │ │ │ │ ├── remove-all.js │ │ │ │ │ ├── remove.js │ │ │ │ │ └── upsert.js │ │ │ │ ├── queries │ │ │ │ │ ├── find-one.js │ │ │ │ │ ├── find.js │ │ │ │ │ └── index.js │ │ │ │ └── resolvers.js │ │ │ ├── patient │ │ │ │ ├── model │ │ │ │ │ ├── index.js │ │ │ │ │ └── model.js │ │ │ │ ├── mutations │ │ │ │ │ ├── index.js │ │ │ │ │ ├── remove-all.js │ │ │ │ │ ├── remove.js │ │ │ │ │ └── upsert.js │ │ │ │ ├── queries │ │ │ │ │ ├── find-one.js │ │ │ │ │ ├── find.js │ │ │ │ │ └── index.js │ │ │ │ └── resolvers.js │ │ │ ├── practitioner │ │ │ │ ├── model │ │ │ │ │ ├── index.js │ │ │ │ │ └── model.js │ │ │ │ ├── mutations │ │ │ │ │ ├── index.js │ │ │ │ │ ├── remove-all.js │ │ │ │ │ ├── remove.js │ │ │ │ │ └── upsert.js │ │ │ │ ├── queries │ │ │ │ │ ├── find-one.js │ │ │ │ │ ├── find.js │ │ │ │ │ └── index.js │ │ │ │ └── resolvers.js │ │ │ ├── related-person │ │ │ │ ├── model │ │ │ │ │ ├── index.js │ │ │ │ │ └── model.js │ │ │ │ ├── mutations │ │ │ │ │ ├── index.js │ │ │ │ │ ├── remove-all.js │ │ │ │ │ ├── remove.js │ │ │ │ │ └── upsert.js │ │ │ │ ├── queries │ │ │ │ │ ├── find-one.js │ │ │ │ │ ├── find.js │ │ │ │ │ └── index.js │ │ │ │ └── resolvers.js │ │ │ ├── resource │ │ │ │ ├── interface.js │ │ │ │ ├── model │ │ │ │ │ ├── index.js │ │ │ │ │ └── resources.js │ │ │ │ └── queries │ │ │ │ │ ├── index.js │ │ │ │ │ ├── multiple.js │ │ │ │ │ └── single.js │ │ │ ├── search-parameter │ │ │ │ ├── model │ │ │ │ │ ├── index.js │ │ │ │ │ └── model.js │ │ │ │ ├── mutations │ │ │ │ │ ├── index.js │ │ │ │ │ ├── remove-all.js │ │ │ │ │ ├── remove.js │ │ │ │ │ └── upsert.js │ │ │ │ ├── queries │ │ │ │ │ ├── find-one.js │ │ │ │ │ ├── find.js │ │ │ │ │ └── index.js │ │ │ │ └── resolvers.js │ │ │ └── value-set │ │ │ │ ├── model │ │ │ │ ├── index.js │ │ │ │ └── model.js │ │ │ │ ├── mutations │ │ │ │ ├── index.js │ │ │ │ ├── remove-all.js │ │ │ │ ├── remove.js │ │ │ │ └── upsert.js │ │ │ │ ├── queries │ │ │ │ ├── find-one.js │ │ │ │ ├── find.js │ │ │ │ └── index.js │ │ │ │ └── resolvers.js │ │ └── types │ │ │ └── primitive │ │ │ ├── code.js │ │ │ ├── date-time.js │ │ │ ├── date.js │ │ │ ├── id.js │ │ │ ├── instant.js │ │ │ ├── positive-integer.js │ │ │ └── unsigned-integer.js │ ├── mutations.js │ ├── queries.js │ ├── resolvers.js │ ├── schema.graphql │ └── schema.js ├── loaders │ ├── index.js │ └── mongo.js ├── main.dev.js ├── main.js ├── notify.js └── server │ ├── express-webpack.js │ ├── index.js │ └── server.js ├── webpack.electron.js └── webpack.server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/README.md -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/config.js -------------------------------------------------------------------------------- /dist/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/dist/client/index.html -------------------------------------------------------------------------------- /dist/notify.js: -------------------------------------------------------------------------------- 1 | require('electron-notification-shim')(); 2 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/package.json -------------------------------------------------------------------------------- /src/client/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/.babelrc -------------------------------------------------------------------------------- /src/client/common/fhir/helpers/to-human-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/common/fhir/helpers/to-human-name.js -------------------------------------------------------------------------------- /src/client/common/fhir/helpers/to-national-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/common/fhir/helpers/to-national-id.js -------------------------------------------------------------------------------- /src/client/common/forms/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/common/forms/Index.jsx -------------------------------------------------------------------------------- /src/client/common/formsy/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/common/formsy/input.js -------------------------------------------------------------------------------- /src/client/common/formsy/photon/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/common/formsy/photon/checkbox.js -------------------------------------------------------------------------------- /src/client/common/formsy/photon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/common/formsy/photon/index.js -------------------------------------------------------------------------------- /src/client/common/formsy/photon/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/common/formsy/photon/input.js -------------------------------------------------------------------------------- /src/client/components/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/dashboard/index.js -------------------------------------------------------------------------------- /src/client/components/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/layout/index.js -------------------------------------------------------------------------------- /src/client/components/layout/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/layout/nav.js -------------------------------------------------------------------------------- /src/client/components/layout/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/layout/style/style.css -------------------------------------------------------------------------------- /src/client/components/patient/delete/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/delete/index.js -------------------------------------------------------------------------------- /src/client/components/patient/details/Evals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/details/Evals.js -------------------------------------------------------------------------------- /src/client/components/patient/details/FOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/details/FOut.js -------------------------------------------------------------------------------- /src/client/components/patient/details/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/details/index.js -------------------------------------------------------------------------------- /src/client/components/patient/form/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/form/form.js -------------------------------------------------------------------------------- /src/client/components/patient/form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/form/index.js -------------------------------------------------------------------------------- /src/client/components/patient/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/i18n/ar.js -------------------------------------------------------------------------------- /src/client/components/patient/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/i18n/en.js -------------------------------------------------------------------------------- /src/client/components/patient/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/i18n/index.js -------------------------------------------------------------------------------- /src/client/components/patient/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/index.js -------------------------------------------------------------------------------- /src/client/components/patient/list/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/list/filter.js -------------------------------------------------------------------------------- /src/client/components/patient/list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/list/index.js -------------------------------------------------------------------------------- /src/client/components/patient/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/route.js -------------------------------------------------------------------------------- /src/client/components/patient/stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/components/patient/stores/index.js -------------------------------------------------------------------------------- /src/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/index.js -------------------------------------------------------------------------------- /src/client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/routes.js -------------------------------------------------------------------------------- /src/client/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/client/webpack.js -------------------------------------------------------------------------------- /src/data/common/acl/role/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/role/model/index.js -------------------------------------------------------------------------------- /src/data/common/acl/role/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/role/mutations/index.js -------------------------------------------------------------------------------- /src/data/common/acl/role/mutations/remove-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/role/mutations/remove-all.js -------------------------------------------------------------------------------- /src/data/common/acl/role/mutations/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/role/mutations/remove.js -------------------------------------------------------------------------------- /src/data/common/acl/role/mutations/upsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/role/mutations/upsert.js -------------------------------------------------------------------------------- /src/data/common/acl/role/passport/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/role/passport/index.js -------------------------------------------------------------------------------- /src/data/common/acl/role/queries/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | }; 3 | -------------------------------------------------------------------------------- /src/data/common/acl/role/queries/multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/role/queries/multiple.js -------------------------------------------------------------------------------- /src/data/common/acl/role/queries/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/role/queries/single.js -------------------------------------------------------------------------------- /src/data/common/acl/role/types/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/role/types/fields.js -------------------------------------------------------------------------------- /src/data/common/acl/role/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/role/types/index.js -------------------------------------------------------------------------------- /src/data/common/acl/role/types/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/role/types/input.js -------------------------------------------------------------------------------- /src/data/common/acl/user/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/model/index.js -------------------------------------------------------------------------------- /src/data/common/acl/user/model/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/model/model.js -------------------------------------------------------------------------------- /src/data/common/acl/user/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/mutations/index.js -------------------------------------------------------------------------------- /src/data/common/acl/user/mutations/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/mutations/login.js -------------------------------------------------------------------------------- /src/data/common/acl/user/mutations/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/mutations/logout.js -------------------------------------------------------------------------------- /src/data/common/acl/user/mutations/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/mutations/register.js -------------------------------------------------------------------------------- /src/data/common/acl/user/mutations/remove-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/mutations/remove-all.js -------------------------------------------------------------------------------- /src/data/common/acl/user/mutations/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/mutations/remove.js -------------------------------------------------------------------------------- /src/data/common/acl/user/mutations/upsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/mutations/upsert.js -------------------------------------------------------------------------------- /src/data/common/acl/user/passport/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/passport/index.js -------------------------------------------------------------------------------- /src/data/common/acl/user/queries/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | }; 3 | -------------------------------------------------------------------------------- /src/data/common/acl/user/queries/multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/queries/multiple.js -------------------------------------------------------------------------------- /src/data/common/acl/user/queries/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/queries/single.js -------------------------------------------------------------------------------- /src/data/common/acl/user/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/resolvers.js -------------------------------------------------------------------------------- /src/data/common/acl/user/types/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/types/fields.js -------------------------------------------------------------------------------- /src/data/common/acl/user/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/types/index.js -------------------------------------------------------------------------------- /src/data/common/acl/user/types/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/acl/user/types/input.js -------------------------------------------------------------------------------- /src/data/common/base/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/base/model.js -------------------------------------------------------------------------------- /src/data/common/errors/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/common/errors/foo.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/gql-schema/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/gql-schema/fields.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/gql-schema/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/gql-schema/index.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/gql-schema/type-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/gql-schema/type-map.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/gql-schema/types/primitive/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/gql-schema/types/primitive/code.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/gql-schema/types/primitive/date-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/gql-schema/types/primitive/date-time.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/gql-schema/types/primitive/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/gql-schema/types/primitive/date.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/gql-schema/types/primitive/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/gql-schema/types/primitive/id.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/gql-schema/types/primitive/instant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/gql-schema/types/primitive/instant.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/gql-schema/types/primitive/positive-integer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/gql-schema/types/primitive/positive-integer.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/gql-schema/types/primitive/unsigned-integer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/gql-schema/types/primitive/unsigned-integer.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/mongoose-schema/json-to-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/mongoose-schema/json-to-schema.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/mongoose-schema/type-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/mongoose-schema/type-map.js -------------------------------------------------------------------------------- /src/data/fhir/helpers/mongoose-schema/types/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/helpers/mongoose-schema/types/meta.js -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/abstract/backbone-element.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/abstract/backbone-element.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/abstract/domain-resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/abstract/domain-resource.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/abstract/element.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/abstract/element.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/abstract/extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/abstract/extension.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/abstract/resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/abstract/resource.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/address.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/annotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/annotation.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/attachment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/attachment.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/codeable-concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/codeable-concept.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/coding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/coding.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/contact-point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/contact-point.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/element-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/element-definition.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/human-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/human-name.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/identifier.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/meta.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/narrative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/narrative.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/period.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/period.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/quantity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/quantity.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/range.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/ratio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/ratio.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/reference.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/sampled-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/sampled-data.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/signature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/signature.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/data/timing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/data/timing.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/index.js -------------------------------------------------------------------------------- /src/data/fhir/profiles/base/primitive/boolean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/base/primitive/boolean.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/account.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/allergy-intolerance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/allergy-intolerance.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/appointment-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/appointment-response.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/appointment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/appointment.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/audit-event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/audit-event.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/basic.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/binary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/binary.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/body-site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/body-site.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/bundle.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/care-plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/care-plan.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/claim-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/claim-response.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/claim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/claim.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/clinical-impression.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/clinical-impression.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/communication-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/communication-request.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/communication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/communication.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/composition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/composition.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/concept-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/concept-map.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/condition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/condition.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/conformance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/conformance.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/contract.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/coverage.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/data-element.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/data-element.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/detected-issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/detected-issue.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/device-component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/device-component.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/device-metric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/device-metric.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/device-use-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/device-use-request.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/device-use-statement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/device-use-statement.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/device.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/diagnostic-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/diagnostic-order.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/diagnostice-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/diagnostice-report.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/document-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/document-manifest.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/document-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/document-reference.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/eligibility-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/eligibility-request.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/eligibility-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/eligibility-response.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/encounter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/encounter.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/enrollment-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/enrollment-request.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/enrollment-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/enrollment-response.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/episode-of-care.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/episode-of-care.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/explanation-of-benifit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/explanation-of-benifit.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/family-member-history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/family-member-history.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/flag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/flag.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/goal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/goal.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/group.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/healthcare-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/healthcare-service.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/imaging-object-selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/imaging-object-selection.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/imaging-study.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/imaging-study.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/immunization-recommendation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/immunization-recommendation.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/immunization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/immunization.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/implementation-guide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/implementation-guide.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/index.js -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/list.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/location.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/media.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/medication-administration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/medication-administration.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/medication-despense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/medication-despense.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/medication-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/medication-order.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/medication-statement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/medication-statement.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/medication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/medication.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/message-header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/message-header.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/naming-system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/naming-system.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/nutrition-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/nutrition-order.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/observation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/observation.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/operation-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/operation-definition.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/operation-outcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/operation-outcome.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/order-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/order-response.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/order.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/organization.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/patient.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/payment-notice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/payment-notice.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/payment-reconciliation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/payment-reconciliation.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/person.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/practitioner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/practitioner.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/procedure-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/procedure-request.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/procedure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/procedure.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/process-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/process-request.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/process-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/process-response.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/provenance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/provenance.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/questionnaire-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/questionnaire-response.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/questionnaire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/questionnaire.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/referral-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/referral-request.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/related-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/related-person.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/schedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/schedule.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/search-parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/search-parameter.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/slot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/slot.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/specimen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/specimen.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/structure-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/structure-definition.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/subscription.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/substance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/substance.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/supply-delivery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/supply-delivery.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/supply-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/supply-request.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/test-script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/test-script.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/value-set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/value-set.json -------------------------------------------------------------------------------- /src/data/fhir/profiles/resources/vision-prescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/profiles/resources/vision-prescription.json -------------------------------------------------------------------------------- /src/data/fhir/resources/bundle/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/bundle/model/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/bundle/model/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/bundle/model/model.js -------------------------------------------------------------------------------- /src/data/fhir/resources/bundle/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/bundle/mutations/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/bundle/mutations/remove-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/bundle/mutations/remove-all.js -------------------------------------------------------------------------------- /src/data/fhir/resources/bundle/mutations/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/bundle/mutations/remove.js -------------------------------------------------------------------------------- /src/data/fhir/resources/bundle/mutations/upsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/bundle/mutations/upsert.js -------------------------------------------------------------------------------- /src/data/fhir/resources/bundle/queries/find-one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/bundle/queries/find-one.js -------------------------------------------------------------------------------- /src/data/fhir/resources/bundle/queries/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/bundle/queries/find.js -------------------------------------------------------------------------------- /src/data/fhir/resources/bundle/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/bundle/queries/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/bundle/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/bundle/resolvers.js -------------------------------------------------------------------------------- /src/data/fhir/resources/domain-resource/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/domain-resource/interface.js -------------------------------------------------------------------------------- /src/data/fhir/resources/domain-resource/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/domain-resource/model.js -------------------------------------------------------------------------------- /src/data/fhir/resources/encounter/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/encounter/model/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/encounter/model/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/encounter/model/model.js -------------------------------------------------------------------------------- /src/data/fhir/resources/encounter/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/encounter/mutations/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/encounter/mutations/remove-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/encounter/mutations/remove-all.js -------------------------------------------------------------------------------- /src/data/fhir/resources/encounter/mutations/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/encounter/mutations/remove.js -------------------------------------------------------------------------------- /src/data/fhir/resources/encounter/mutations/upsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/encounter/mutations/upsert.js -------------------------------------------------------------------------------- /src/data/fhir/resources/encounter/queries/find-one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/encounter/queries/find-one.js -------------------------------------------------------------------------------- /src/data/fhir/resources/encounter/queries/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/encounter/queries/find.js -------------------------------------------------------------------------------- /src/data/fhir/resources/encounter/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/encounter/queries/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/encounter/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/encounter/resolvers.js -------------------------------------------------------------------------------- /src/data/fhir/resources/episode-of-care/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/episode-of-care/model/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/episode-of-care/model/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/episode-of-care/model/model.js -------------------------------------------------------------------------------- /src/data/fhir/resources/episode-of-care/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/episode-of-care/mutations/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/episode-of-care/mutations/remove-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/episode-of-care/mutations/remove-all.js -------------------------------------------------------------------------------- /src/data/fhir/resources/episode-of-care/mutations/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/episode-of-care/mutations/remove.js -------------------------------------------------------------------------------- /src/data/fhir/resources/episode-of-care/mutations/upsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/episode-of-care/mutations/upsert.js -------------------------------------------------------------------------------- /src/data/fhir/resources/episode-of-care/queries/find-one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/episode-of-care/queries/find-one.js -------------------------------------------------------------------------------- /src/data/fhir/resources/episode-of-care/queries/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/episode-of-care/queries/find.js -------------------------------------------------------------------------------- /src/data/fhir/resources/episode-of-care/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/episode-of-care/queries/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/episode-of-care/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/episode-of-care/resolvers.js -------------------------------------------------------------------------------- /src/data/fhir/resources/patient/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/patient/model/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/patient/model/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/patient/model/model.js -------------------------------------------------------------------------------- /src/data/fhir/resources/patient/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/patient/mutations/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/patient/mutations/remove-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/patient/mutations/remove-all.js -------------------------------------------------------------------------------- /src/data/fhir/resources/patient/mutations/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/patient/mutations/remove.js -------------------------------------------------------------------------------- /src/data/fhir/resources/patient/mutations/upsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/patient/mutations/upsert.js -------------------------------------------------------------------------------- /src/data/fhir/resources/patient/queries/find-one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/patient/queries/find-one.js -------------------------------------------------------------------------------- /src/data/fhir/resources/patient/queries/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/patient/queries/find.js -------------------------------------------------------------------------------- /src/data/fhir/resources/patient/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/patient/queries/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/patient/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/patient/resolvers.js -------------------------------------------------------------------------------- /src/data/fhir/resources/practitioner/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/practitioner/model/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/practitioner/model/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/practitioner/model/model.js -------------------------------------------------------------------------------- /src/data/fhir/resources/practitioner/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/practitioner/mutations/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/practitioner/mutations/remove-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/practitioner/mutations/remove-all.js -------------------------------------------------------------------------------- /src/data/fhir/resources/practitioner/mutations/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/practitioner/mutations/remove.js -------------------------------------------------------------------------------- /src/data/fhir/resources/practitioner/mutations/upsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/practitioner/mutations/upsert.js -------------------------------------------------------------------------------- /src/data/fhir/resources/practitioner/queries/find-one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/practitioner/queries/find-one.js -------------------------------------------------------------------------------- /src/data/fhir/resources/practitioner/queries/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/practitioner/queries/find.js -------------------------------------------------------------------------------- /src/data/fhir/resources/practitioner/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/practitioner/queries/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/practitioner/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/practitioner/resolvers.js -------------------------------------------------------------------------------- /src/data/fhir/resources/related-person/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/related-person/model/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/related-person/model/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/related-person/model/model.js -------------------------------------------------------------------------------- /src/data/fhir/resources/related-person/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/related-person/mutations/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/related-person/mutations/remove-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/related-person/mutations/remove-all.js -------------------------------------------------------------------------------- /src/data/fhir/resources/related-person/mutations/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/related-person/mutations/remove.js -------------------------------------------------------------------------------- /src/data/fhir/resources/related-person/mutations/upsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/related-person/mutations/upsert.js -------------------------------------------------------------------------------- /src/data/fhir/resources/related-person/queries/find-one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/related-person/queries/find-one.js -------------------------------------------------------------------------------- /src/data/fhir/resources/related-person/queries/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/related-person/queries/find.js -------------------------------------------------------------------------------- /src/data/fhir/resources/related-person/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/related-person/queries/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/related-person/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/related-person/resolvers.js -------------------------------------------------------------------------------- /src/data/fhir/resources/resource/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/resource/interface.js -------------------------------------------------------------------------------- /src/data/fhir/resources/resource/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/resource/model/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/resource/model/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/resource/model/resources.js -------------------------------------------------------------------------------- /src/data/fhir/resources/resource/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/resource/queries/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/resource/queries/multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/resource/queries/multiple.js -------------------------------------------------------------------------------- /src/data/fhir/resources/resource/queries/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/resource/queries/single.js -------------------------------------------------------------------------------- /src/data/fhir/resources/search-parameter/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/search-parameter/model/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/search-parameter/model/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/search-parameter/model/model.js -------------------------------------------------------------------------------- /src/data/fhir/resources/search-parameter/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/search-parameter/mutations/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/search-parameter/mutations/remove-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/search-parameter/mutations/remove-all.js -------------------------------------------------------------------------------- /src/data/fhir/resources/search-parameter/mutations/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/search-parameter/mutations/remove.js -------------------------------------------------------------------------------- /src/data/fhir/resources/search-parameter/mutations/upsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/search-parameter/mutations/upsert.js -------------------------------------------------------------------------------- /src/data/fhir/resources/search-parameter/queries/find-one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/search-parameter/queries/find-one.js -------------------------------------------------------------------------------- /src/data/fhir/resources/search-parameter/queries/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/search-parameter/queries/find.js -------------------------------------------------------------------------------- /src/data/fhir/resources/search-parameter/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/search-parameter/queries/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/search-parameter/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/search-parameter/resolvers.js -------------------------------------------------------------------------------- /src/data/fhir/resources/value-set/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/value-set/model/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/value-set/model/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/value-set/model/model.js -------------------------------------------------------------------------------- /src/data/fhir/resources/value-set/mutations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/value-set/mutations/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/value-set/mutations/remove-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/value-set/mutations/remove-all.js -------------------------------------------------------------------------------- /src/data/fhir/resources/value-set/mutations/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/value-set/mutations/remove.js -------------------------------------------------------------------------------- /src/data/fhir/resources/value-set/mutations/upsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/value-set/mutations/upsert.js -------------------------------------------------------------------------------- /src/data/fhir/resources/value-set/queries/find-one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/value-set/queries/find-one.js -------------------------------------------------------------------------------- /src/data/fhir/resources/value-set/queries/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/value-set/queries/find.js -------------------------------------------------------------------------------- /src/data/fhir/resources/value-set/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/value-set/queries/index.js -------------------------------------------------------------------------------- /src/data/fhir/resources/value-set/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/resources/value-set/resolvers.js -------------------------------------------------------------------------------- /src/data/fhir/types/primitive/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/types/primitive/code.js -------------------------------------------------------------------------------- /src/data/fhir/types/primitive/date-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/types/primitive/date-time.js -------------------------------------------------------------------------------- /src/data/fhir/types/primitive/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/types/primitive/date.js -------------------------------------------------------------------------------- /src/data/fhir/types/primitive/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/types/primitive/id.js -------------------------------------------------------------------------------- /src/data/fhir/types/primitive/instant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/types/primitive/instant.js -------------------------------------------------------------------------------- /src/data/fhir/types/primitive/positive-integer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/types/primitive/positive-integer.js -------------------------------------------------------------------------------- /src/data/fhir/types/primitive/unsigned-integer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/fhir/types/primitive/unsigned-integer.js -------------------------------------------------------------------------------- /src/data/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/mutations.js -------------------------------------------------------------------------------- /src/data/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/queries.js -------------------------------------------------------------------------------- /src/data/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/resolvers.js -------------------------------------------------------------------------------- /src/data/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/schema.graphql -------------------------------------------------------------------------------- /src/data/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/data/schema.js -------------------------------------------------------------------------------- /src/loaders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/loaders/index.js -------------------------------------------------------------------------------- /src/loaders/mongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/loaders/mongo.js -------------------------------------------------------------------------------- /src/main.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/main.dev.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/main.js -------------------------------------------------------------------------------- /src/notify.js: -------------------------------------------------------------------------------- 1 | require('electron-notification-shim')(); 2 | -------------------------------------------------------------------------------- /src/server/express-webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/server/express-webpack.js -------------------------------------------------------------------------------- /src/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/server/index.js -------------------------------------------------------------------------------- /src/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/src/server/server.js -------------------------------------------------------------------------------- /webpack.electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/webpack.electron.js -------------------------------------------------------------------------------- /webpack.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalkam/gql-fhir/HEAD/webpack.server.js --------------------------------------------------------------------------------