├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── action-transforms ├── airtable │ ├── README.md │ ├── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ └── metadata │ │ │ ├── actions.graphql │ │ │ ├── actions.yaml │ │ │ ├── allow_list.yaml │ │ │ ├── cron_triggers.yaml │ │ │ ├── databases │ │ │ └── databases.yaml │ │ │ ├── query_collections.yaml │ │ │ ├── remote_schemas │ │ │ └── remote_schemas.yaml │ │ │ ├── rest_endpoints.yaml │ │ │ └── version.yaml │ └── images │ │ ├── .DS_Store │ │ └── guide-image-1.png ├── algolia │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ └── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ ├── databases.yaml │ │ └── default │ │ │ └── tables │ │ │ ├── public_users.yaml │ │ │ └── tables.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas │ │ └── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml ├── auth0 │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ └── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ └── databases.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas │ │ └── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml ├── elasticsearch │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ └── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ └── databases.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas │ │ └── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml ├── firebase │ ├── README.md │ ├── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ └── metadata │ │ │ ├── actions.graphql │ │ │ ├── actions.yaml │ │ │ ├── allow_list.yaml │ │ │ ├── cron_triggers.yaml │ │ │ ├── databases │ │ │ └── databases.yaml │ │ │ ├── query_collections.yaml │ │ │ ├── remote_schemas │ │ │ └── remote_schemas.yaml │ │ │ ├── rest_endpoints.yaml │ │ │ └── version.yaml │ └── images │ │ ├── guide-image-1.png │ │ └── guide-image-2.png ├── meilisearch │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ └── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ ├── databases.yaml │ │ └── default │ │ │ └── tables │ │ │ └── tables.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml ├── openweather │ ├── README.md │ ├── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ └── metadata │ │ │ ├── actions.graphql │ │ │ ├── actions.yaml │ │ │ ├── allow_list.yaml │ │ │ ├── cron_triggers.yaml │ │ │ ├── databases │ │ │ └── databases.yaml │ │ │ ├── query_collections.yaml │ │ │ ├── remote_schemas │ │ │ └── remote_schemas.yaml │ │ │ ├── rest_endpoints.yaml │ │ │ └── version.yaml │ └── images │ │ ├── guide-image-1.png │ │ └── guide-image-2.png ├── prismic │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ └── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ └── databases.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas │ │ └── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml └── sparkpost │ ├── README.md │ └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── cron_triggers.yaml │ ├── databases │ ├── databases.yaml │ └── default │ │ └── tables │ │ └── tables.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── config.json ├── data-models └── postgres │ ├── chinook │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── api_limits.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_Album.yaml │ │ │ │ ├── public_Artist.yaml │ │ │ │ ├── public_Customer.yaml │ │ │ │ ├── public_Employee.yaml │ │ │ │ ├── public_Genre.yaml │ │ │ │ ├── public_Invoice.yaml │ │ │ │ ├── public_InvoiceLine.yaml │ │ │ │ ├── public_MediaType.yaml │ │ │ │ ├── public_Playlist.yaml │ │ │ │ ├── public_PlaylistTrack.yaml │ │ │ │ ├── public_Track.yaml │ │ │ │ └── tables.yaml │ │ ├── graphql_schema_introspection.yaml │ │ ├── inherited_roles.yaml │ │ ├── network.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ ├── migrations │ │ └── default │ │ │ └── 1649882144684_create_tables │ │ │ └── up.sql │ │ ├── sample-requests.graphql │ │ └── seeds │ │ └── default │ │ └── 01_chinook_seed.sql │ ├── ecommerce │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_address.yaml │ │ │ │ ├── public_order.yaml │ │ │ │ ├── public_order_product.yaml │ │ │ │ ├── public_order_status.yaml │ │ │ │ ├── public_product.yaml │ │ │ │ ├── public_product_category_enum.yaml │ │ │ │ ├── public_product_review.yaml │ │ │ │ ├── public_site_admin.yaml │ │ │ │ ├── public_user.yaml │ │ │ │ └── tables.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ ├── migrations │ │ └── default │ │ │ └── 1646834482402_init │ │ │ └── up.sql │ │ ├── sample-requests.graphql │ │ └── seeds │ │ └── default │ │ ├── 01_A_user_seeds.sql │ │ ├── 01_B_user_address_seeds.sql │ │ ├── 02_product_seeds_sanitized.sql │ │ ├── 03_A_order_seeds.sql │ │ ├── 03_B_order_product_seeds.sql │ │ └── 04_default_user_login_seeds.sql │ ├── fhirbase │ ├── README.md │ ├── docker-compose.yaml │ └── hasura │ │ ├── config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── api_limits.yaml │ │ ├── backend_configs.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── fhirbase │ │ │ │ └── tables │ │ │ │ ├── public_account.yaml │ │ │ │ ├── public_account_history.yaml │ │ │ │ ├── public_activitydefinition.yaml │ │ │ │ ├── public_activitydefinition_history.yaml │ │ │ │ ├── public_adverseevent.yaml │ │ │ │ ├── public_adverseevent_history.yaml │ │ │ │ ├── public_allergyintolerance.yaml │ │ │ │ ├── public_allergyintolerance_history.yaml │ │ │ │ ├── public_appointment.yaml │ │ │ │ ├── public_appointment_history.yaml │ │ │ │ ├── public_appointmentresponse.yaml │ │ │ │ ├── public_appointmentresponse_history.yaml │ │ │ │ ├── public_auditevent.yaml │ │ │ │ ├── public_auditevent_history.yaml │ │ │ │ ├── public_basic.yaml │ │ │ │ ├── public_basic_history.yaml │ │ │ │ ├── public_binary.yaml │ │ │ │ ├── public_binary_history.yaml │ │ │ │ ├── public_biologicallyderivedproduct.yaml │ │ │ │ ├── public_biologicallyderivedproduct_history.yaml │ │ │ │ ├── public_bodystructure.yaml │ │ │ │ ├── public_bodystructure_history.yaml │ │ │ │ ├── public_capabilitystatement.yaml │ │ │ │ ├── public_capabilitystatement_history.yaml │ │ │ │ ├── public_careplan.yaml │ │ │ │ ├── public_careplan_history.yaml │ │ │ │ ├── public_careteam.yaml │ │ │ │ ├── public_careteam_history.yaml │ │ │ │ ├── public_chargeitem.yaml │ │ │ │ ├── public_chargeitem_history.yaml │ │ │ │ ├── public_claim.yaml │ │ │ │ ├── public_claim_history.yaml │ │ │ │ ├── public_claimresponse.yaml │ │ │ │ ├── public_claimresponse_history.yaml │ │ │ │ ├── public_clinicalimpression.yaml │ │ │ │ ├── public_clinicalimpression_history.yaml │ │ │ │ ├── public_codesystem.yaml │ │ │ │ ├── public_codesystem_history.yaml │ │ │ │ ├── public_communication.yaml │ │ │ │ ├── public_communication_history.yaml │ │ │ │ ├── public_communicationrequest.yaml │ │ │ │ ├── public_communicationrequest_history.yaml │ │ │ │ ├── public_compartmentdefinition.yaml │ │ │ │ ├── public_compartmentdefinition_history.yaml │ │ │ │ ├── public_composition.yaml │ │ │ │ ├── public_composition_history.yaml │ │ │ │ ├── public_concept.yaml │ │ │ │ ├── public_concept_history.yaml │ │ │ │ ├── public_conceptmap.yaml │ │ │ │ ├── public_conceptmap_history.yaml │ │ │ │ ├── public_condition.yaml │ │ │ │ ├── public_condition_history.yaml │ │ │ │ ├── public_consent.yaml │ │ │ │ ├── public_consent_history.yaml │ │ │ │ ├── public_contract.yaml │ │ │ │ ├── public_contract_history.yaml │ │ │ │ ├── public_coverage.yaml │ │ │ │ ├── public_coverage_history.yaml │ │ │ │ ├── public_detectedissue.yaml │ │ │ │ ├── public_detectedissue_history.yaml │ │ │ │ ├── public_device.yaml │ │ │ │ ├── public_device_history.yaml │ │ │ │ ├── public_devicecomponent.yaml │ │ │ │ ├── public_devicecomponent_history.yaml │ │ │ │ ├── public_devicemetric.yaml │ │ │ │ ├── public_devicemetric_history.yaml │ │ │ │ ├── public_devicerequest.yaml │ │ │ │ ├── public_devicerequest_history.yaml │ │ │ │ ├── public_deviceusestatement.yaml │ │ │ │ ├── public_deviceusestatement_history.yaml │ │ │ │ ├── public_diagnosticreport.yaml │ │ │ │ ├── public_diagnosticreport_history.yaml │ │ │ │ ├── public_documentmanifest.yaml │ │ │ │ ├── public_documentmanifest_history.yaml │ │ │ │ ├── public_documentreference.yaml │ │ │ │ ├── public_documentreference_history.yaml │ │ │ │ ├── public_eligibilityrequest.yaml │ │ │ │ ├── public_eligibilityrequest_history.yaml │ │ │ │ ├── public_eligibilityresponse.yaml │ │ │ │ ├── public_eligibilityresponse_history.yaml │ │ │ │ ├── public_encounter.yaml │ │ │ │ ├── public_encounter_history.yaml │ │ │ │ ├── public_endpoint.yaml │ │ │ │ ├── public_endpoint_history.yaml │ │ │ │ ├── public_enrollmentrequest.yaml │ │ │ │ ├── public_enrollmentrequest_history.yaml │ │ │ │ ├── public_enrollmentresponse.yaml │ │ │ │ ├── public_enrollmentresponse_history.yaml │ │ │ │ ├── public_entrydefinition.yaml │ │ │ │ ├── public_entrydefinition_history.yaml │ │ │ │ ├── public_episodeofcare.yaml │ │ │ │ ├── public_episodeofcare_history.yaml │ │ │ │ ├── public_eventdefinition.yaml │ │ │ │ ├── public_eventdefinition_history.yaml │ │ │ │ ├── public_examplescenario.yaml │ │ │ │ ├── public_examplescenario_history.yaml │ │ │ │ ├── public_expansionprofile.yaml │ │ │ │ ├── public_expansionprofile_history.yaml │ │ │ │ ├── public_explanationofbenefit.yaml │ │ │ │ ├── public_explanationofbenefit_history.yaml │ │ │ │ ├── public_familymemberhistory.yaml │ │ │ │ ├── public_familymemberhistory_history.yaml │ │ │ │ ├── public_flag.yaml │ │ │ │ ├── public_flag_history.yaml │ │ │ │ ├── public_goal.yaml │ │ │ │ ├── public_goal_history.yaml │ │ │ │ ├── public_graphdefinition.yaml │ │ │ │ ├── public_graphdefinition_history.yaml │ │ │ │ ├── public_group.yaml │ │ │ │ ├── public_group_history.yaml │ │ │ │ ├── public_guidanceresponse.yaml │ │ │ │ ├── public_guidanceresponse_history.yaml │ │ │ │ ├── public_healthcareservice.yaml │ │ │ │ ├── public_healthcareservice_history.yaml │ │ │ │ ├── public_imagingstudy.yaml │ │ │ │ ├── public_imagingstudy_history.yaml │ │ │ │ ├── public_immunization.yaml │ │ │ │ ├── public_immunization_history.yaml │ │ │ │ ├── public_immunizationevaluation.yaml │ │ │ │ ├── public_immunizationevaluation_history.yaml │ │ │ │ ├── public_immunizationrecommendation.yaml │ │ │ │ ├── public_immunizationrecommendation_history.yaml │ │ │ │ ├── public_implementationguide.yaml │ │ │ │ ├── public_implementationguide_history.yaml │ │ │ │ ├── public_invoice.yaml │ │ │ │ ├── public_invoice_history.yaml │ │ │ │ ├── public_iteminstance.yaml │ │ │ │ ├── public_iteminstance_history.yaml │ │ │ │ ├── public_library.yaml │ │ │ │ ├── public_library_history.yaml │ │ │ │ ├── public_linkage.yaml │ │ │ │ ├── public_linkage_history.yaml │ │ │ │ ├── public_list.yaml │ │ │ │ ├── public_list_history.yaml │ │ │ │ ├── public_location.yaml │ │ │ │ ├── public_location_history.yaml │ │ │ │ ├── public_measure.yaml │ │ │ │ ├── public_measure_history.yaml │ │ │ │ ├── public_measurereport.yaml │ │ │ │ ├── public_measurereport_history.yaml │ │ │ │ ├── public_media.yaml │ │ │ │ ├── public_media_history.yaml │ │ │ │ ├── public_medication.yaml │ │ │ │ ├── public_medication_history.yaml │ │ │ │ ├── public_medicationadministration.yaml │ │ │ │ ├── public_medicationadministration_history.yaml │ │ │ │ ├── public_medicationdispense.yaml │ │ │ │ ├── public_medicationdispense_history.yaml │ │ │ │ ├── public_medicationrequest.yaml │ │ │ │ ├── public_medicationrequest_history.yaml │ │ │ │ ├── public_medicationstatement.yaml │ │ │ │ ├── public_medicationstatement_history.yaml │ │ │ │ ├── public_medicinalproduct.yaml │ │ │ │ ├── public_medicinalproduct_history.yaml │ │ │ │ ├── public_medicinalproductauthorization.yaml │ │ │ │ ├── public_medicinalproductauthorization_history.yaml │ │ │ │ ├── public_medicinalproductclinicals.yaml │ │ │ │ ├── public_medicinalproductclinicals_history.yaml │ │ │ │ ├── public_medicinalproductdevicespec.yaml │ │ │ │ ├── public_medicinalproductdevicespec_history.yaml │ │ │ │ ├── public_medicinalproductingredient.yaml │ │ │ │ ├── public_medicinalproductingredient_history.yaml │ │ │ │ ├── public_medicinalproductpackaged.yaml │ │ │ │ ├── public_medicinalproductpackaged_history.yaml │ │ │ │ ├── public_medicinalproductpharmaceutical.yaml │ │ │ │ ├── public_medicinalproductpharmaceutical_history.yaml │ │ │ │ ├── public_messagedefinition.yaml │ │ │ │ ├── public_messagedefinition_history.yaml │ │ │ │ ├── public_messageheader.yaml │ │ │ │ ├── public_messageheader_history.yaml │ │ │ │ ├── public_metadataresource.yaml │ │ │ │ ├── public_metadataresource_history.yaml │ │ │ │ ├── public_namingsystem.yaml │ │ │ │ ├── public_namingsystem_history.yaml │ │ │ │ ├── public_nutritionorder.yaml │ │ │ │ ├── public_nutritionorder_history.yaml │ │ │ │ ├── public_observation.yaml │ │ │ │ ├── public_observation_history.yaml │ │ │ │ ├── public_observationdefinition.yaml │ │ │ │ ├── public_observationdefinition_history.yaml │ │ │ │ ├── public_occupationaldata.yaml │ │ │ │ ├── public_occupationaldata_history.yaml │ │ │ │ ├── public_operationdefinition.yaml │ │ │ │ ├── public_operationdefinition_history.yaml │ │ │ │ ├── public_operationoutcome.yaml │ │ │ │ ├── public_operationoutcome_history.yaml │ │ │ │ ├── public_organization.yaml │ │ │ │ ├── public_organization_history.yaml │ │ │ │ ├── public_organizationrole.yaml │ │ │ │ ├── public_organizationrole_history.yaml │ │ │ │ ├── public_parameters.yaml │ │ │ │ ├── public_parameters_history.yaml │ │ │ │ ├── public_patient.yaml │ │ │ │ ├── public_patient_history.yaml │ │ │ │ ├── public_paymentnotice.yaml │ │ │ │ ├── public_paymentnotice_history.yaml │ │ │ │ ├── public_paymentreconciliation.yaml │ │ │ │ ├── public_paymentreconciliation_history.yaml │ │ │ │ ├── public_person.yaml │ │ │ │ ├── public_person_history.yaml │ │ │ │ ├── public_plandefinition.yaml │ │ │ │ ├── public_plandefinition_history.yaml │ │ │ │ ├── public_practitioner.yaml │ │ │ │ ├── public_practitioner_history.yaml │ │ │ │ ├── public_practitionerrole.yaml │ │ │ │ ├── public_practitionerrole_history.yaml │ │ │ │ ├── public_procedure.yaml │ │ │ │ ├── public_procedure_history.yaml │ │ │ │ ├── public_processrequest.yaml │ │ │ │ ├── public_processrequest_history.yaml │ │ │ │ ├── public_processresponse.yaml │ │ │ │ ├── public_processresponse_history.yaml │ │ │ │ ├── public_productplan.yaml │ │ │ │ ├── public_productplan_history.yaml │ │ │ │ ├── public_provenance.yaml │ │ │ │ ├── public_provenance_history.yaml │ │ │ │ ├── public_questionnaire.yaml │ │ │ │ ├── public_questionnaire_history.yaml │ │ │ │ ├── public_questionnaireresponse.yaml │ │ │ │ ├── public_questionnaireresponse_history.yaml │ │ │ │ ├── public_relatedperson.yaml │ │ │ │ ├── public_relatedperson_history.yaml │ │ │ │ ├── public_requestgroup.yaml │ │ │ │ ├── public_requestgroup_history.yaml │ │ │ │ ├── public_researchstudy.yaml │ │ │ │ ├── public_researchstudy_history.yaml │ │ │ │ ├── public_researchsubject.yaml │ │ │ │ ├── public_researchsubject_history.yaml │ │ │ │ ├── public_riskassessment.yaml │ │ │ │ ├── public_riskassessment_history.yaml │ │ │ │ ├── public_schedule.yaml │ │ │ │ ├── public_schedule_history.yaml │ │ │ │ ├── public_sequence.yaml │ │ │ │ ├── public_sequence_history.yaml │ │ │ │ ├── public_servicerequest.yaml │ │ │ │ ├── public_servicerequest_history.yaml │ │ │ │ ├── public_slot.yaml │ │ │ │ ├── public_slot_history.yaml │ │ │ │ ├── public_specimen.yaml │ │ │ │ ├── public_specimen_history.yaml │ │ │ │ ├── public_specimendefinition.yaml │ │ │ │ ├── public_specimendefinition_history.yaml │ │ │ │ ├── public_structuredefinition.yaml │ │ │ │ ├── public_structuredefinition_history.yaml │ │ │ │ ├── public_structuremap.yaml │ │ │ │ ├── public_structuremap_history.yaml │ │ │ │ ├── public_subscription.yaml │ │ │ │ ├── public_subscription_history.yaml │ │ │ │ ├── public_substance.yaml │ │ │ │ ├── public_substance_history.yaml │ │ │ │ ├── public_substancepolymer.yaml │ │ │ │ ├── public_substancepolymer_history.yaml │ │ │ │ ├── public_substancereferenceinformation.yaml │ │ │ │ ├── public_substancereferenceinformation_history.yaml │ │ │ │ ├── public_substancespecification.yaml │ │ │ │ ├── public_substancespecification_history.yaml │ │ │ │ ├── public_supplydelivery.yaml │ │ │ │ ├── public_supplydelivery_history.yaml │ │ │ │ ├── public_supplyrequest.yaml │ │ │ │ ├── public_supplyrequest_history.yaml │ │ │ │ ├── public_task.yaml │ │ │ │ ├── public_task_history.yaml │ │ │ │ ├── public_terminologycapabilities.yaml │ │ │ │ ├── public_terminologycapabilities_history.yaml │ │ │ │ ├── public_testreport.yaml │ │ │ │ ├── public_testreport_history.yaml │ │ │ │ ├── public_testscript.yaml │ │ │ │ ├── public_testscript_history.yaml │ │ │ │ ├── public_transaction.yaml │ │ │ │ ├── public_usersession.yaml │ │ │ │ ├── public_usersession_history.yaml │ │ │ │ ├── public_valueset.yaml │ │ │ │ ├── public_valueset_history.yaml │ │ │ │ ├── public_verificationresult.yaml │ │ │ │ ├── public_verificationresult_history.yaml │ │ │ │ ├── public_visionprescription.yaml │ │ │ │ ├── public_visionprescription_history.yaml │ │ │ │ └── tables.yaml │ │ ├── graphql_schema_introspection.yaml │ │ ├── inherited_roles.yaml │ │ ├── metrics_config.yaml │ │ ├── network.yaml │ │ ├── opentelemetry.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── fhirbase │ │ └── 1678724092180_init │ │ └── up.sql │ ├── gatsby-contentful-auth0 │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── api_limits.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_album.yaml │ │ │ │ ├── public_playlist.yaml │ │ │ │ ├── public_playlist_track.yaml │ │ │ │ ├── public_track.yaml │ │ │ │ ├── public_users.yaml │ │ │ │ └── tables.yaml │ │ ├── graphql_schema_introspection.yaml │ │ ├── inherited_roles.yaml │ │ ├── network.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1613666112230_init │ │ └── up.sql │ ├── location-tracking │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── api_limits.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_vehicle.yaml │ │ │ │ ├── public_vehicle_location.yaml │ │ │ │ └── tables.yaml │ │ ├── graphql_schema_introspection.yaml │ │ ├── inherited_roles.yaml │ │ ├── network.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1614593585596_init │ │ └── up.sql │ ├── nextjs-incremental-static-regeneration │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_post.yaml │ │ │ │ └── tables.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1647304090289_init │ │ └── up.sql │ ├── nextjs-serverless-jwt │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_article.yaml │ │ │ │ ├── public_role.yaml │ │ │ │ ├── public_user.yaml │ │ │ │ ├── public_user_role.yaml │ │ │ │ └── tables.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1613664987061_init │ │ └── up.sql │ ├── ohdsi │ ├── README.md │ ├── docker-compose.yaml │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── api_limits.yaml │ │ ├── backend_configs.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── postgres │ │ │ │ └── tables │ │ │ │ ├── cdm_care_site.yaml │ │ │ │ ├── cdm_cdm_source.yaml │ │ │ │ ├── cdm_cohort.yaml │ │ │ │ ├── cdm_cohort_definition.yaml │ │ │ │ ├── cdm_concept.yaml │ │ │ │ ├── cdm_concept_ancestor.yaml │ │ │ │ ├── cdm_concept_class.yaml │ │ │ │ ├── cdm_concept_relationship.yaml │ │ │ │ ├── cdm_concept_synonym.yaml │ │ │ │ ├── cdm_condition_era.yaml │ │ │ │ ├── cdm_condition_occurrence.yaml │ │ │ │ ├── cdm_cost.yaml │ │ │ │ ├── cdm_death.yaml │ │ │ │ ├── cdm_device_exposure.yaml │ │ │ │ ├── cdm_domain.yaml │ │ │ │ ├── cdm_dose_era.yaml │ │ │ │ ├── cdm_drug_era.yaml │ │ │ │ ├── cdm_drug_exposure.yaml │ │ │ │ ├── cdm_drug_strength.yaml │ │ │ │ ├── cdm_episode.yaml │ │ │ │ ├── cdm_episode_event.yaml │ │ │ │ ├── cdm_fact_relationship.yaml │ │ │ │ ├── cdm_location.yaml │ │ │ │ ├── cdm_measurement.yaml │ │ │ │ ├── cdm_metadata.yaml │ │ │ │ ├── cdm_note.yaml │ │ │ │ ├── cdm_note_nlp.yaml │ │ │ │ ├── cdm_observation.yaml │ │ │ │ ├── cdm_observation_period.yaml │ │ │ │ ├── cdm_payer_plan_period.yaml │ │ │ │ ├── cdm_person.yaml │ │ │ │ ├── cdm_procedure_occurrence.yaml │ │ │ │ ├── cdm_provider.yaml │ │ │ │ ├── cdm_relationship.yaml │ │ │ │ ├── cdm_source_to_concept_map.yaml │ │ │ │ ├── cdm_specimen.yaml │ │ │ │ ├── cdm_visit_detail.yaml │ │ │ │ ├── cdm_visit_occurrence.yaml │ │ │ │ ├── cdm_vocabulary.yaml │ │ │ │ └── tables.yaml │ │ ├── graphql_schema_introspection.yaml │ │ ├── inherited_roles.yaml │ │ ├── metrics_config.yaml │ │ ├── network.yaml │ │ ├── opentelemetry.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── postgres │ │ └── 1678717706990_init │ │ └── up.sql │ ├── react-apollo-todo │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_online_users.yaml │ │ │ │ ├── public_todos.yaml │ │ │ │ └── public_users.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1613664692358_init │ │ └── up.sql │ ├── realtime-chat │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_message.yaml │ │ │ │ ├── public_user.yaml │ │ │ │ ├── public_user_online.yaml │ │ │ │ └── public_user_typing.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1613650170829_init │ │ └── up.sql │ ├── sakila │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── api_limits.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_actor.yaml │ │ │ │ ├── public_actor_info.yaml │ │ │ │ ├── public_address.yaml │ │ │ │ ├── public_category.yaml │ │ │ │ ├── public_city.yaml │ │ │ │ ├── public_country.yaml │ │ │ │ ├── public_customer.yaml │ │ │ │ ├── public_customer_list.yaml │ │ │ │ ├── public_film.yaml │ │ │ │ ├── public_film_actor.yaml │ │ │ │ ├── public_film_category.yaml │ │ │ │ ├── public_film_list.yaml │ │ │ │ ├── public_inventory.yaml │ │ │ │ ├── public_language.yaml │ │ │ │ ├── public_nicer_but_slower_film_list.yaml │ │ │ │ ├── public_payment.yaml │ │ │ │ ├── public_payment_p2007_01.yaml │ │ │ │ ├── public_payment_p2007_02.yaml │ │ │ │ ├── public_payment_p2007_03.yaml │ │ │ │ ├── public_payment_p2007_04.yaml │ │ │ │ ├── public_payment_p2007_05.yaml │ │ │ │ ├── public_payment_p2007_06.yaml │ │ │ │ ├── public_rental.yaml │ │ │ │ ├── public_sales_by_film_category.yaml │ │ │ │ ├── public_sales_by_store.yaml │ │ │ │ ├── public_staff.yaml │ │ │ │ ├── public_staff_list.yaml │ │ │ │ ├── public_store.yaml │ │ │ │ └── tables.yaml │ │ ├── graphql_schema_introspection.yaml │ │ ├── inherited_roles.yaml │ │ ├── network.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ ├── migrations │ │ └── default │ │ │ └── 1649882144685_create_schemas │ │ │ └── up.sql │ │ └── seeds │ │ └── default │ │ └── 01_sakila_seed.sql │ ├── serverless-etl │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ └── public_book.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1613663969839_init │ │ └── up.sql │ ├── serverless-push │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ └── public_message.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1613664119718_init │ │ └── up.sql │ ├── tic-tac-toe-react │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_board.yaml │ │ │ │ ├── public_move.yaml │ │ │ │ └── public_user.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1557215655320_init.up.sql │ └── whatsapp-clone-typescript-react │ ├── README.md │ └── hasura │ ├── config.yaml │ ├── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── cron_triggers.yaml │ ├── databases │ │ ├── databases.yaml │ │ └── default │ │ │ └── tables │ │ │ ├── public_chat.yaml │ │ │ ├── public_chat_group_admins.yaml │ │ │ ├── public_chat_users.yaml │ │ │ ├── public_message.yaml │ │ │ ├── public_message_user.yaml │ │ │ ├── public_recipient.yaml │ │ │ └── public_users.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ └── version.yaml │ └── migrations │ └── default │ └── 1613665372189_init │ └── up.sql ├── event-transforms ├── circleci │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_blog.yaml │ │ │ │ └── tables.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1646783084511_create_table_public_blog │ │ ├── down.sql │ │ └── up.sql ├── netlify │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_blog.yaml │ │ │ │ └── tables.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas │ │ │ └── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1639193304879_init │ │ └── up.sql ├── sendgrid │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_users.yaml │ │ │ │ └── tables.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas │ │ │ └── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1639142689273_init │ │ └── up.sql ├── sparkpost │ ├── README.md │ └── hasura │ │ ├── config.yaml │ │ ├── hasura-cloud-deploy-config.yaml │ │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── public_users.yaml │ │ │ │ └── tables.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas │ │ │ └── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ │ └── migrations │ │ └── default │ │ └── 1639139753375_init │ │ └── up.sql └── vercel │ ├── README.md │ └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ ├── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── cron_triggers.yaml │ ├── databases │ │ ├── databases.yaml │ │ └── default │ │ │ └── tables │ │ │ ├── public_blog.yaml │ │ │ └── tables.yaml │ ├── query_collections.yaml │ ├── remote_schemas │ │ └── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml │ └── migrations │ └── default │ └── 1639193482796_init │ └── up.sql └── remote-schemas ├── contentful ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── directus ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── drupal ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── github ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── gitlab ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── graphql-mesh ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── hygraph ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── magento ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── openapi-swagger ├── .gitignore ├── README.md ├── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── api_limits.yaml │ │ ├── backend_configs.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ └── databases.yaml │ │ ├── graphql_schema_introspection.yaml │ │ ├── inherited_roles.yaml │ │ ├── metrics_config.yaml │ │ ├── network.yaml │ │ ├── opentelemetry.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml ├── index.js ├── openapi.json ├── package-lock.json └── package.json ├── sanity ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── shopify ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── stateset ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── strapi ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── webiny ├── README.md └── hasura │ ├── config.yaml │ ├── hasura-cloud-deploy-config.yaml │ └── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ └── databases.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml └── wordpress ├── README.md └── hasura ├── config.yaml ├── hasura-cloud-deploy-config.yaml └── metadata ├── actions.graphql ├── actions.yaml ├── allow_list.yaml ├── api_limits.yaml ├── backend_configs.yaml ├── cron_triggers.yaml ├── databases └── databases.yaml ├── graphql_schema_introspection.yaml ├── inherited_roles.yaml ├── metrics_config.yaml ├── network.yaml ├── opentelemetry.yaml ├── query_collections.yaml ├── remote_schemas.yaml ├── rest_endpoints.yaml └── version.yaml /action-transforms/airtable/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /action-transforms/airtable/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/airtable/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/airtable/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/airtable/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/airtable/hasura/metadata/remote_schemas/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/airtable/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/airtable/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /action-transforms/airtable/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/action-transforms/airtable/images/.DS_Store -------------------------------------------------------------------------------- /action-transforms/airtable/images/guide-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/action-transforms/airtable/images/guide-image-1.png -------------------------------------------------------------------------------- /action-transforms/algolia/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /action-transforms/algolia/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/algolia/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/algolia/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/algolia/hasura/metadata/databases/default/tables/public_users.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: users 3 | schema: public 4 | -------------------------------------------------------------------------------- /action-transforms/algolia/hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- 1 | - "!include public_users.yaml" 2 | -------------------------------------------------------------------------------- /action-transforms/algolia/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/algolia/hasura/metadata/remote_schemas/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/algolia/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/algolia/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /action-transforms/auth0/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /action-transforms/auth0/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/auth0/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/auth0/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/auth0/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/auth0/hasura/metadata/remote_schemas/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/auth0/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/auth0/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /action-transforms/elasticsearch/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /action-transforms/elasticsearch/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- 1 | type Query { 2 | searchCustomerId( 3 | customer_id: Int 4 | ): SearchOutput 5 | } 6 | 7 | type SearchOutput { 8 | hits: jsonb 9 | } 10 | 11 | scalar jsonb 12 | 13 | -------------------------------------------------------------------------------- /action-transforms/elasticsearch/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/elasticsearch/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/elasticsearch/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/elasticsearch/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/elasticsearch/hasura/metadata/remote_schemas/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/elasticsearch/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/elasticsearch/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /action-transforms/firebase/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /action-transforms/firebase/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/firebase/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/firebase/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/firebase/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/firebase/hasura/metadata/remote_schemas/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/firebase/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/firebase/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /action-transforms/firebase/images/guide-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/action-transforms/firebase/images/guide-image-1.png -------------------------------------------------------------------------------- /action-transforms/firebase/images/guide-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/action-transforms/firebase/images/guide-image-2.png -------------------------------------------------------------------------------- /action-transforms/meilisearch/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /action-transforms/meilisearch/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- 1 | type Query { 2 | meilisearchSearch(query: String!, limit: Int, offset: Int): searchOutput 3 | } 4 | 5 | type searchOutput { 6 | hits: jsonb 7 | } 8 | -------------------------------------------------------------------------------- /action-transforms/meilisearch/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/meilisearch/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/meilisearch/hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/meilisearch/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/meilisearch/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/meilisearch/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/meilisearch/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /action-transforms/openweather/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /action-transforms/openweather/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/openweather/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/openweather/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/openweather/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/openweather/hasura/metadata/remote_schemas/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/openweather/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/openweather/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /action-transforms/openweather/images/guide-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/action-transforms/openweather/images/guide-image-1.png -------------------------------------------------------------------------------- /action-transforms/openweather/images/guide-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/action-transforms/openweather/images/guide-image-2.png -------------------------------------------------------------------------------- /action-transforms/prismic/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /action-transforms/prismic/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/prismic/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/prismic/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/prismic/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/prismic/hasura/metadata/remote_schemas/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/prismic/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/prismic/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /action-transforms/sparkpost/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /action-transforms/sparkpost/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/sparkpost/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/sparkpost/hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/sparkpost/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/sparkpost/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/sparkpost/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /action-transforms/sparkpost/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/hasura-cloud-deploy-config.yaml: -------------------------------------------------------------------------------- 1 | name: "Chinook Database" 2 | 3 | static-env: 4 | HASURA_GRAPHQL_UNAUTHORIZED_ROLE: anonymous 5 | 6 | user-env: 7 | PG_DATABASE_URL: 8 | description: "Postgres database URL" 9 | mandatory: true -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/data-models/postgres/chinook/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/chinook/hasura/sample-requests.graphql: -------------------------------------------------------------------------------- 1 | # fetch album and tracks 2 | query fetchAlbum { 3 | Album { 4 | AlbumId 5 | Title 6 | Tracks { 7 | TrackId 8 | Name 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /data-models/postgres/ecommerce/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | admin_secret: my-secret 4 | metadata_directory: metadata 5 | actions: 6 | kind: synchronous 7 | handler_webhook_baseurl: http://localhost:3000 8 | -------------------------------------------------------------------------------- /data-models/postgres/ecommerce/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/ecommerce/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/ecommerce/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/ecommerce/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/ecommerce/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/ecommerce/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/data-models/postgres/fhirbase/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_account.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: account 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_account_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: account_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_activitydefinition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: activitydefinition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_activitydefinition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: activitydefinition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_adverseevent.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: adverseevent 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_adverseevent_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: adverseevent_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_allergyintolerance.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: allergyintolerance 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_allergyintolerance_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: allergyintolerance_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_appointment.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: appointment 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_appointment_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: appointment_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_appointmentresponse.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: appointmentresponse 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_appointmentresponse_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: appointmentresponse_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_auditevent.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: auditevent 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_auditevent_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: auditevent_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_basic.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: basic 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_basic_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: basic_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_binary.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: binary 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_binary_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: binary_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_biologicallyderivedproduct.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: biologicallyderivedproduct 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_biologicallyderivedproduct_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: biologicallyderivedproduct_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_bodystructure.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: bodystructure 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_bodystructure_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: bodystructure_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_capabilitystatement.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: capabilitystatement 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_capabilitystatement_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: capabilitystatement_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_careplan.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: careplan 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_careplan_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: careplan_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_careteam.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: careteam 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_careteam_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: careteam_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_chargeitem.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: chargeitem 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_chargeitem_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: chargeitem_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_claim.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: claim 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_claim_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: claim_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_claimresponse.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: claimresponse 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_claimresponse_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: claimresponse_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_clinicalimpression.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: clinicalimpression 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_clinicalimpression_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: clinicalimpression_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_codesystem.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: codesystem 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_codesystem_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: codesystem_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_communication.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: communication 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_communication_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: communication_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_communicationrequest.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: communicationrequest 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_communicationrequest_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: communicationrequest_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_compartmentdefinition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: compartmentdefinition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_compartmentdefinition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: compartmentdefinition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_composition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: composition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_composition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: composition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_concept.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: concept 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_concept_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: concept_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_conceptmap.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: conceptmap 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_conceptmap_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: conceptmap_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_condition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: condition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_condition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: condition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_consent.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: consent 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_consent_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: consent_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_contract.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: contract 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_contract_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: contract_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_coverage.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: coverage 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_coverage_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: coverage_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_detectedissue.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: detectedissue 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_detectedissue_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: detectedissue_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_device.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: device 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_device_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: device_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_devicecomponent.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: devicecomponent 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_devicecomponent_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: devicecomponent_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_devicemetric.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: devicemetric 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_devicemetric_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: devicemetric_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_devicerequest.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: devicerequest 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_devicerequest_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: devicerequest_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_deviceusestatement.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: deviceusestatement 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_deviceusestatement_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: deviceusestatement_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_diagnosticreport.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: diagnosticreport 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_diagnosticreport_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: diagnosticreport_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_documentmanifest.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: documentmanifest 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_documentmanifest_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: documentmanifest_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_documentreference.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: documentreference 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_documentreference_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: documentreference_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_eligibilityrequest.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: eligibilityrequest 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_eligibilityrequest_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: eligibilityrequest_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_eligibilityresponse.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: eligibilityresponse 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_eligibilityresponse_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: eligibilityresponse_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_encounter.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: encounter 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_encounter_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: encounter_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_endpoint.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: endpoint 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_endpoint_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: endpoint_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_enrollmentrequest.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: enrollmentrequest 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_enrollmentrequest_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: enrollmentrequest_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_enrollmentresponse.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: enrollmentresponse 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_enrollmentresponse_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: enrollmentresponse_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_entrydefinition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: entrydefinition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_entrydefinition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: entrydefinition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_episodeofcare.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: episodeofcare 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_episodeofcare_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: episodeofcare_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_eventdefinition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: eventdefinition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_eventdefinition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: eventdefinition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_examplescenario.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: examplescenario 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_examplescenario_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: examplescenario_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_expansionprofile.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: expansionprofile 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_expansionprofile_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: expansionprofile_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_explanationofbenefit.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: explanationofbenefit 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_explanationofbenefit_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: explanationofbenefit_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_familymemberhistory.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: familymemberhistory 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_familymemberhistory_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: familymemberhistory_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_flag.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: flag 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_flag_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: flag_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_goal.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: goal 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_goal_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: goal_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_graphdefinition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: graphdefinition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_graphdefinition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: graphdefinition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_group.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: group 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_group_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: group_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_guidanceresponse.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: guidanceresponse 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_guidanceresponse_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: guidanceresponse_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_healthcareservice.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: healthcareservice 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_healthcareservice_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: healthcareservice_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_imagingstudy.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: imagingstudy 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_imagingstudy_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: imagingstudy_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_immunization.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: immunization 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_immunization_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: immunization_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_immunizationevaluation.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: immunizationevaluation 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_immunizationevaluation_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: immunizationevaluation_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_immunizationrecommendation.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: immunizationrecommendation 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_immunizationrecommendation_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: immunizationrecommendation_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_implementationguide.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: implementationguide 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_implementationguide_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: implementationguide_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_invoice.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: invoice 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_invoice_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: invoice_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_iteminstance.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: iteminstance 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_iteminstance_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: iteminstance_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_library.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: library 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_library_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: library_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_linkage.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: linkage 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_linkage_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: linkage_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_list.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: list 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_list_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: list_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_location.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: location 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_location_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: location_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_measure.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: measure 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_measure_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: measure_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_measurereport.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: measurereport 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_measurereport_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: measurereport_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_media.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: media 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_media_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: media_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medication.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medication 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medication_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medication_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicationadministration.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicationadministration 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicationadministration_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicationadministration_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicationdispense.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicationdispense 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicationdispense_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicationdispense_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicationrequest.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicationrequest 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicationrequest_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicationrequest_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicationstatement.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicationstatement 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicationstatement_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicationstatement_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproduct.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproduct 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproduct_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproduct_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproductauthorization.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproductauthorization 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproductauthorization_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproductauthorization_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproductclinicals.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproductclinicals 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproductclinicals_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproductclinicals_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproductdevicespec.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproductdevicespec 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproductdevicespec_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproductdevicespec_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproductingredient.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproductingredient 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproductingredient_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproductingredient_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproductpackaged.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproductpackaged 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproductpackaged_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproductpackaged_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproductpharmaceutical.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproductpharmaceutical 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_medicinalproductpharmaceutical_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: medicinalproductpharmaceutical_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_messagedefinition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: messagedefinition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_messagedefinition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: messagedefinition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_messageheader.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: messageheader 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_messageheader_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: messageheader_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_metadataresource.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: metadataresource 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_metadataresource_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: metadataresource_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_namingsystem.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: namingsystem 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_namingsystem_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: namingsystem_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_nutritionorder.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: nutritionorder 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_nutritionorder_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: nutritionorder_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_observation.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: observation 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_observation_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: observation_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_observationdefinition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: observationdefinition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_observationdefinition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: observationdefinition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_occupationaldata.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: occupationaldata 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_occupationaldata_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: occupationaldata_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_operationdefinition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: operationdefinition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_operationdefinition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: operationdefinition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_operationoutcome.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: operationoutcome 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_operationoutcome_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: operationoutcome_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_organization.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: organization 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_organization_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: organization_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_organizationrole.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: organizationrole 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_organizationrole_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: organizationrole_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_parameters.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: parameters 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_parameters_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: parameters_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_patient.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: patient 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_patient_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: patient_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_paymentnotice.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: paymentnotice 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_paymentnotice_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: paymentnotice_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_paymentreconciliation.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: paymentreconciliation 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_paymentreconciliation_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: paymentreconciliation_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_person.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: person 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_person_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: person_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_plandefinition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: plandefinition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_plandefinition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: plandefinition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_practitioner.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: practitioner 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_practitioner_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: practitioner_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_practitionerrole.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: practitionerrole 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_practitionerrole_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: practitionerrole_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_procedure.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: procedure 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_procedure_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: procedure_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_processrequest.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: processrequest 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_processrequest_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: processrequest_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_processresponse.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: processresponse 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_processresponse_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: processresponse_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_productplan.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: productplan 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_productplan_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: productplan_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_provenance.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: provenance 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_provenance_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: provenance_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_questionnaire.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: questionnaire 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_questionnaire_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: questionnaire_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_questionnaireresponse.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: questionnaireresponse 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_questionnaireresponse_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: questionnaireresponse_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_relatedperson.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: relatedperson 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_relatedperson_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: relatedperson_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_requestgroup.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: requestgroup 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_requestgroup_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: requestgroup_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_researchstudy.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: researchstudy 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_researchstudy_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: researchstudy_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_researchsubject.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: researchsubject 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_researchsubject_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: researchsubject_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_riskassessment.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: riskassessment 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_riskassessment_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: riskassessment_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_schedule.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: schedule 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_schedule_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: schedule_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_sequence.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: sequence 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_sequence_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: sequence_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_servicerequest.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: servicerequest 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_servicerequest_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: servicerequest_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_slot.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: slot 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_slot_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: slot_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_specimen.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: specimen 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_specimen_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: specimen_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_specimendefinition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: specimendefinition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_specimendefinition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: specimendefinition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_structuredefinition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: structuredefinition 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_structuredefinition_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: structuredefinition_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_structuremap.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: structuremap 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_structuremap_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: structuremap_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_subscription.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: subscription 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_subscription_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: subscription_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_substance.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: substance 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_substance_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: substance_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_substancepolymer.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: substancepolymer 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_substancepolymer_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: substancepolymer_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_substancereferenceinformation.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: substancereferenceinformation 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_substancereferenceinformation_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: substancereferenceinformation_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_substancespecification.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: substancespecification 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_substancespecification_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: substancespecification_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_supplydelivery.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: supplydelivery 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_supplydelivery_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: supplydelivery_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_supplyrequest.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: supplyrequest 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_supplyrequest_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: supplyrequest_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_task.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: task 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_task_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: task_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_terminologycapabilities.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: terminologycapabilities 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_terminologycapabilities_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: terminologycapabilities_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_testreport.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: testreport 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_testreport_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: testreport_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_testscript.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: testscript 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_testscript_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: testscript_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_transaction.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: transaction 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_usersession.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: usersession 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_usersession_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: usersession_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_valueset.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: valueset 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_valueset_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: valueset_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_verificationresult.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: verificationresult 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_verificationresult_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: verificationresult_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_visionprescription.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: visionprescription 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/databases/fhirbase/tables/public_visionprescription_history.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: visionprescription_history 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/fhirbase/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080/ 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/data-models/postgres/gatsby-contentful-auth0/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- 1 | - "!include public_album.yaml" 2 | - "!include public_playlist.yaml" 3 | - "!include public_playlist_track.yaml" 4 | - "!include public_track.yaml" 5 | - "!include public_users.yaml" 6 | -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/gatsby-contentful-auth0/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/data-models/postgres/location-tracking/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/databases/default/tables/public_vehicle_location.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | schema: public 3 | name: vehicle_location 4 | object_relationships: 5 | - name: vehicle 6 | using: 7 | foreign_key_constraint_on: vehicle_id 8 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- 1 | - "!include public_vehicle.yaml" 2 | - "!include public_vehicle_location.yaml" 3 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/location-tracking/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-incremental-static-regeneration/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-incremental-static-regeneration/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/data-models/postgres/nextjs-incremental-static-regeneration/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /data-models/postgres/nextjs-incremental-static-regeneration/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-incremental-static-regeneration/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-incremental-static-regeneration/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-incremental-static-regeneration/hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- 1 | - "!include public_post.yaml" 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-incremental-static-regeneration/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-incremental-static-regeneration/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-incremental-static-regeneration/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-incremental-static-regeneration/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-serverless-jwt/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080/ 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-serverless-jwt/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/data-models/postgres/nextjs-serverless-jwt/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /data-models/postgres/nextjs-serverless-jwt/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-serverless-jwt/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-serverless-jwt/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-serverless-jwt/hasura/metadata/databases/default/tables/public_article.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: article 3 | schema: public 4 | object_relationships: 5 | - name: user 6 | using: 7 | foreign_key_constraint_on: user_id 8 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-serverless-jwt/hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- 1 | - "!include public_article.yaml" 2 | - "!include public_role.yaml" 3 | - "!include public_user.yaml" 4 | - "!include public_user_role.yaml" 5 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-serverless-jwt/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-serverless-jwt/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-serverless-jwt/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/nextjs-serverless-jwt/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/hasura-cloud-deploy-config.yaml: -------------------------------------------------------------------------------- 1 | name: "ohdsi" 2 | 3 | static-env: 4 | HASURA_GRAPHQL_UNAUTHORIZED_ROLE: anonymous 5 | 6 | user-env: 7 | PG_DATABASE_URL: 8 | description: "Postgres database URL" 9 | mandatory: true -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/data-models/postgres/ohdsi/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/databases/postgres/tables/cdm_cdm_source.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: cdm_source 3 | schema: cdm 4 | object_relationships: 5 | - name: concept 6 | using: 7 | foreign_key_constraint_on: cdm_version_concept_id 8 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/databases/postgres/tables/cdm_cohort.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: cohort 3 | schema: cdm 4 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/databases/postgres/tables/cdm_cohort_definition.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: cohort_definition 3 | schema: cdm 4 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/ohdsi/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/react-apollo-todo/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data-models/postgres/react-apollo-todo/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/react-apollo-todo/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/react-apollo-todo/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/react-apollo-todo/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/react-apollo-todo/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/react-apollo-todo/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/realtime-chat/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data-models/postgres/realtime-chat/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/realtime-chat/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/realtime-chat/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/realtime-chat/hasura/metadata/databases/default/tables/public_message.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: message 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/realtime-chat/hasura/metadata/databases/default/tables/public_user.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: user 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/realtime-chat/hasura/metadata/databases/default/tables/public_user_online.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: user_online 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/realtime-chat/hasura/metadata/databases/default/tables/public_user_typing.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: user_typing 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/realtime-chat/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/realtime-chat/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/realtime-chat/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/hasura-cloud-deploy-config.yaml: -------------------------------------------------------------------------------- 1 | name: "Sakila Database" 2 | 3 | static-env: 4 | HASURA_GRAPHQL_UNAUTHORIZED_ROLE: anonymous 5 | 6 | user-env: 7 | PG_DATABASE_URL: 8 | description: "Postgres database URL" 9 | mandatory: true -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/data-models/postgres/sakila/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/databases/default/tables/public_actor_info.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | schema: public 3 | name: actor_info 4 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/databases/default/tables/public_film_list.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | schema: public 3 | name: film_list 4 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/databases/default/tables/public_nicer_but_slower_film_list.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | schema: public 3 | name: nicer_but_slower_film_list 4 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/databases/default/tables/public_sales_by_film_category.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | schema: public 3 | name: sales_by_film_category 4 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/databases/default/tables/public_sales_by_store.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | schema: public 3 | name: sales_by_store 4 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/sakila/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-etl/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-etl/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-etl/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-etl/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-etl/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-etl/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-etl/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-push/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-push/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-push/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-push/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-push/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-push/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/serverless-push/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/tic-tac-toe-react/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data-models/postgres/tic-tac-toe-react/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/tic-tac-toe-react/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/tic-tac-toe-react/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/tic-tac-toe-react/hasura/metadata/databases/default/tables/public_move.yaml: -------------------------------------------------------------------------------- 1 | object_relationships: 2 | - name: user 3 | using: 4 | foreign_key_constraint_on: user_id 5 | table: 6 | name: move 7 | schema: public 8 | -------------------------------------------------------------------------------- /data-models/postgres/tic-tac-toe-react/hasura/metadata/databases/default/tables/public_user.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: user 3 | schema: public 4 | -------------------------------------------------------------------------------- /data-models/postgres/tic-tac-toe-react/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/tic-tac-toe-react/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | - name: tic-tac-toe 2 | definition: 3 | url_from_env: TIC_TAC_REMOTE_SCHEMA_URL 4 | timeout_seconds: 60 5 | forward_client_headers: true 6 | -------------------------------------------------------------------------------- /data-models/postgres/tic-tac-toe-react/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /data-models/postgres/whatsapp-clone-typescript-react/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data-models/postgres/whatsapp-clone-typescript-react/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /data-models/postgres/whatsapp-clone-typescript-react/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/whatsapp-clone-typescript-react/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/whatsapp-clone-typescript-react/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/whatsapp-clone-typescript-react/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data-models/postgres/whatsapp-clone-typescript-react/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /event-transforms/circleci/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /event-transforms/circleci/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/event-transforms/circleci/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /event-transforms/circleci/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /event-transforms/circleci/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/circleci/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/circleci/hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- 1 | - "!include public_blog.yaml" 2 | -------------------------------------------------------------------------------- /event-transforms/circleci/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/circleci/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/circleci/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/circleci/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /event-transforms/circleci/hasura/migrations/default/1646783084511_create_table_public_blog/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."blog"; 2 | -------------------------------------------------------------------------------- /event-transforms/circleci/hasura/migrations/default/1646783084511_create_table_public_blog/up.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE "public"."blog" ("id" uuid NOT NULL DEFAULT gen_random_uuid(), "title" text NOT NULL, "content" text NOT NULL, PRIMARY KEY ("id") ); 2 | CREATE EXTENSION IF NOT EXISTS pgcrypto; 3 | -------------------------------------------------------------------------------- /event-transforms/netlify/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /event-transforms/netlify/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/event-transforms/netlify/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /event-transforms/netlify/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /event-transforms/netlify/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/netlify/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/netlify/hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- 1 | - "!include public_blog.yaml" 2 | -------------------------------------------------------------------------------- /event-transforms/netlify/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/netlify/hasura/metadata/remote_schemas/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/netlify/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/netlify/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /event-transforms/sendgrid/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /event-transforms/sendgrid/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/event-transforms/sendgrid/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /event-transforms/sendgrid/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /event-transforms/sendgrid/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/sendgrid/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/sendgrid/hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- 1 | - "!include public_users.yaml" 2 | -------------------------------------------------------------------------------- /event-transforms/sendgrid/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/sendgrid/hasura/metadata/remote_schemas/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/sendgrid/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/sendgrid/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /event-transforms/sparkpost/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /event-transforms/sparkpost/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/event-transforms/sparkpost/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /event-transforms/sparkpost/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /event-transforms/sparkpost/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/sparkpost/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/sparkpost/hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- 1 | - "!include public_users.yaml" 2 | -------------------------------------------------------------------------------- /event-transforms/sparkpost/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/sparkpost/hasura/metadata/remote_schemas/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/sparkpost/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/sparkpost/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /event-transforms/vercel/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /event-transforms/vercel/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/event-transforms/vercel/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /event-transforms/vercel/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /event-transforms/vercel/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/vercel/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/vercel/hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- 1 | - "!include public_blog.yaml" 2 | -------------------------------------------------------------------------------- /event-transforms/vercel/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/vercel/hasura/metadata/remote_schemas/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/vercel/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /event-transforms/vercel/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/contentful/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/contentful/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/directus/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/directus/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/drupal/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | - name: Drupal 2 | definition: 3 | url_from_env: DRUPAL_GRAPHQL_ENDPOINT 4 | timeout_seconds: 60 5 | customization: {} 6 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/drupal/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/github/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/github/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/gitlab/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/gitlab/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/graphql-mesh/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | - name: GraphQLMesh 2 | definition: 3 | url_from_env: GRAPHQL_MESH_ENDPOINT 4 | timeout_seconds: 60 5 | customization: {} 6 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/graphql-mesh/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/hygraph/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/hygraph/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/magento/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | - name: Magento 2 | definition: 3 | url_from_env: MAGENTO_GRAPHQL_ENDPOINT 4 | timeout_seconds: 60 5 | customization: {} 6 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/magento/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/openapi-swagger/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | - name: OpenAPISwagger 2 | definition: 3 | url_from_env: OPENAPI_SWAGGER_ENDPOINT 4 | timeout_seconds: 60 5 | customization: {} 6 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/openapi-swagger/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/sanity/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | - name: Sanity 2 | definition: 3 | url_from_env: SANITY_GRAPHQL_ENDPOINT 4 | timeout_seconds: 60 5 | customization: {} 6 | headers: 7 | - name: Authorization 8 | value_from_env: SANITY_API_TOKEN 9 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/sanity/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/shopify/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/shopify/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/stateset/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/stateset/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/strapi/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | - name: Strapi 2 | definition: 3 | url_from_env: STRAPI_GRAPHQL_ENDPOINT 4 | timeout_seconds: 60 5 | customization: {} 6 | headers: 7 | - name: Authorization 8 | value_from_env: STRAPI_API_TOKEN 9 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/strapi/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/webiny/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | - name: Webiny 2 | definition: 3 | url_from_env: WEBINY_GRAPHQL_ENDPOINT 4 | timeout_seconds: 60 5 | customization: {} 6 | headers: 7 | - name: Authorization 8 | value_from_env: WEBINY_API_TOKEN 9 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/webiny/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/config.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | endpoint: http://localhost:8080 3 | metadata_directory: metadata 4 | actions: 5 | kind: synchronous 6 | handler_webhook_baseurl: http://localhost:3000 7 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-hub/5fcffc1d97616028297304bf9699a02692ec702b/remote-schemas/wordpress/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- 1 | actions: [] 2 | custom_types: 3 | enums: [] 4 | input_objects: [] 5 | objects: [] 6 | scalars: [] 7 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | - name: Wordpress 2 | definition: 3 | url_from_env: WORDPRESS_GRAPHQL_ENDPOINT 4 | timeout_seconds: 60 5 | customization: {} 6 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /remote-schemas/wordpress/hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | --------------------------------------------------------------------------------