id
int64 1
100k
| graph_name
stringclasses 1
value | schema
stringclasses 1
value | input
stringlengths 43
565
| output
stringlengths 122
887
|
---|---|---|---|---|
201 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Find studies involving ADULT, OLDER_ADULT participants with both Human Flu and Weight loss. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Human Flu'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Weight loss'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT, OLDER_ADULT'}) RETURN study.title |
202 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the key collaborations in studies on Thalassemia Intermedia, and which universities are involved? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN collaborator.name AS university, COUNT(*) AS study_count ORDER BY study_count DESC |
203 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Find studies funded by NETWORK in EARLY_PHASE1 at Los Angeles. Include conditions, outcomes, sponsors, and collaborators. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NETWORK'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:STUDIES]->(condition:Condition) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, condition.name, primary.name, secondary.name, sponsor.name, collaborator.name |
204 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which studies funded by UNKNOWN focus on Ischemic Heart Disease (IHD), and what are their secondary outcomes? | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
205 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What interventions are being tested in PHASE2 studies on Pulmonary Tuberculoses, and what age groups are included? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup) RETURN intervention.name AS intervention, ageGroup.name AS age_group, COUNT(*) AS count ORDER BY count DESC |
206 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies sponsored by IHF GmbH - Institut für Herzinfarktforschung focusing on Caloric function as a primary outcome. | MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Caloric function'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'IHF GmbH - Institut für Herzinfarktforschung'}) RETURN study.title |
207 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the key collaborations in studies on Recurrent Hypopharyngeal Squamous Cell Carcinoma, and which universities are involved? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN collaborator.name AS university, COUNT(*) AS study_count ORDER BY study_count DESC |
208 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies with Refractory Pulmonary Edema and Guided bone regeneration involving participants from OLDER_ADULT. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Guided bone regeneration'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'OLDER_ADULT'}) RETURN study.title |
209 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies funded by OTHER in EARLY_PHASE1 at Chicago. Include conditions and outcomes studied. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, condition.name, primary.name, secondary.name |
210 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies in EARLY_PHASE1 funded by INDUSTRY at San Francisco involving Neurocognitive Dysfunction and Plasma. Include outcomes, sponsors, and collaborators. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Plasma'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, primary.name, secondary.name, sponsor.name, collaborator.name |
211 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Provide details of studies focusing on Kidney Carcinoma and their primary outcomes. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Kidney Carcinoma'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome |
212 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the secondary outcomes of EARLY_PHASE1 studies on Chronic Antibody-mediated Transplant Rejection. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Chronic Antibody-mediated Transplant Rejection'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
213 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the main interventions being tested for Refractory Pulmonary Edema across different study phases? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN phase.name AS phase, intervention.name AS intervention, COUNT(*) AS intervention_count ORDER BY intervention_count DESC |
214 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Provide details of studies on Chronic Antibody-mediated Transplant Rejection that include participants of both Male and Female genders and their primary outcomes. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Chronic Antibody-mediated Transplant Rejection'}) MATCH (study)-[:INCLUDES_SEX]->(sex1:Sex {name: 'Male'}), (study)-[:INCLUDES_SEX]->(sex2:Sex {name: 'Female'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome |
215 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies with pulmonory based home exercises conducted in Los Angeles. Include details of sponsors and primary outcomes. | MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'pulmonory based home exercises'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, sponsor.name, primary.name AS primary_outcome |
216 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What conditions are being studied at Hangzhou, Zhejiang, China, and which studies are involved? | MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN study.title AS study_title, condition.name AS condition |
217 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What interventions are being tested in studies conducted at Lund, Sweden for Laryngeal Dystonia? | MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN condition.name AS condition, intervention.name AS intervention, COUNT(*) AS count ORDER BY count DESC |
218 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Provide a list of studies focusing on Hand Injuries with interventions in PHASE4. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN study.title AS study_title, intervention.name AS intervention |
219 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies in PHASE1 phase focusing on Ketamine Treatment. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) RETURN study.title |
220 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the recruiting studies for Chorea Associated With Huntington Disease and their primary outcomes. | MATCH (study:Study {status: 'Recruiting'})-[:STUDIES]->(condition:Condition {name: 'Chorea Associated With Huntington Disease'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(study) AS study_count |
221 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the main conditions being studied in PHASE3 trials conducted in New York? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'New York'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC |
222 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which phases are most common for studies on Laryngeal Dystonia funded by NIH organizations? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN phase.name AS phase, COUNT(*) AS study_count ORDER BY study_count DESC |
223 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies on Kidney Carcinoma conducted in Boston along with their respective phases. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Kidney Carcinoma'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Boston'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN study.title AS study_title, phase.name AS phase |
224 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the phases and locations for studies on Ventricular Ectopic Beat(S) involving CHILD participants? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) MATCH (study)-[:CONDUCTED_AT]->(location:Location) RETURN phase.name AS phase, location.name AS location, COUNT(*) AS study_count ORDER BY study_count DESC |
225 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List conditions studied in PHASE2|PHASE3 trials conducted in New York. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'New York'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC |
226 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which studies in PHASE1 were conducted in San Francisco and studied Bleeding Cardiac Surgery Patients? What were the primary outcomes? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Bleeding Cardiac Surgery Patients'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name |
227 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which phases are most common for studies on Intervertebral Disc Disorder Lumbar With Radiculopathy funded by OTHER_GOV organizations? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN phase.name AS phase, COUNT(*) AS study_count ORDER BY study_count DESC |
228 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which interventions are most commonly researched in studies on Pulmonary Tuberculoses, and which one tops the list? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC LIMIT 1 |
229 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the studies on Alpha1-antitrypsin Deficiency funded by NIH organizations. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) RETURN study.title AS study_title, study.id AS study_id |
230 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which interventions are most commonly tried in studies involving the CHILD, ADULT, OLDER_ADULT age group? | MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT, OLDER_ADULT'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC |
231 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Find studies involving Mayo Clinic Foregut Surgery Report Card Questionnaire conducted in Helsingborg, Sweden. Who sponsored these studies and what were their primary outcomes? | MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Mayo Clinic Foregut Surgery Report Card Questionnaire'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Helsingborg, Sweden'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, sponsor.name, primary.name AS primary_outcome |
232 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the studies on Intervertebral Disc Disorder Lumbar With Radiculopathy funded by UNKNOWN organizations. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) RETURN study.title AS study_title, study.id AS study_id |
233 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which studies funded by OTHER organizations focus on Thalassemia Intermedia, and what are the secondary outcomes measured? | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC |
234 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the studies conducted at Chicago and their focus conditions. | MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN study.title AS study_title, condition.name AS condition |
235 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Find studies funded by NIH in PHASE1 at Chicago. Include conditions, outcomes, sponsors, and collaborators. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, condition.name, primary.name, secondary.name, sponsor.name, collaborator.name |
236 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List all studies sponsored by IHF GmbH - Institut für Herzinfarktforschung conducted in Hangzhou, Zhejiang, China that studied Post Cardiac Surgery. Include primary and secondary outcomes. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'IHF GmbH - Institut für Herzinfarktforschung'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, primary.name AS primary_outcome, secondary.name AS secondary_outcome |
237 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which studies in PHASE1 were conducted in Helsingborg, Sweden and studied Orthodontic Retainers? What were the primary outcomes? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Helsingborg, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name |
238 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies with diet and exercise conducted in San Francisco. Include details of sponsors and primary outcomes. | MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'diet and exercise'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, sponsor.name, primary.name AS primary_outcome |
239 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Provide details of studies on Chorea Associated With Huntington Disease that include participants of both Female and Female genders and their primary outcomes. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Chorea Associated With Huntington Disease'}) MATCH (study)-[:INCLUDES_SEX]->(sex1:Sex {name: 'Female'}), (study)-[:INCLUDES_SEX]->(sex2:Sex {name: 'Female'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome |
240 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Find studies funded by FED in PHASE3 at Lund, Sweden. Include conditions, outcomes, sponsors, and collaborators. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, condition.name, primary.name, secondary.name, sponsor.name, collaborator.name |
241 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies sponsored by IHF GmbH - Institut für Herzinfarktforschung that also focus on Ischemic Heart Disease (IHD). | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'IHF GmbH - Institut für Herzinfarktforschung'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) RETURN study.title |
242 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which phases are most common for studies on Human Flu funded by OTHER organizations? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Human Flu'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN phase.name AS phase, COUNT(*) AS study_count ORDER BY study_count DESC |
243 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What conditions are most commonly studied in PHASE2|PHASE3 trials, and what primary outcomes are measured? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:STUDIES]->(condition:Condition) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN condition.name AS condition, COLLECT(DISTINCT primaryOutcome.name) AS primary_outcomes, COUNT(*) AS study_count ORDER BY study_count DESC |
244 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Provide details of studies sponsored by Vancouver Prostate Centre studying Chronic Antibody-mediated Transplant Rejection. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Vancouver Prostate Centre'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Chronic Antibody-mediated Transplant Rejection'}) RETURN study.title |
245 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which studies have been funded by FED organizations and focus on Intervertebral Disc Disorder Lumbar With Radiculopathy? | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) RETURN study.title AS study_title, study.id AS study_id |
246 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the studies on Pulmonary Tuberculoses funded by AMBIG organizations. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) RETURN study.title AS study_title, study.id AS study_id |
247 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Find studies conducted at Kristianstad, Sweden that involve Caloric function as a primary outcome. | MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Caloric function'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Kristianstad, Sweden'}) RETURN study.title, study.id |
248 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Count studies sponsored by Anhui Palo Alto Pharmaceuticals, Inc. conducted in Chicago. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Anhui Palo Alto Pharmaceuticals, Inc.'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) RETURN COUNT(study) as number_of_studies |
249 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies including participants from CHILD, ADULT, OLDER_ADULT funded by UNKNOWN. | MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT, OLDER_ADULT'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) RETURN study.title, study.id |
250 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the outcomes measured in studies on Thalassemia Intermedia funded by NIH organizations. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_OTHER_OUTCOME]->(otherOutcome:OtherOutcomeMeasures) RETURN COLLECT(DISTINCT primaryOutcome.name) AS primary_outcomes, COLLECT(DISTINCT secondaryOutcome.name) AS secondary_outcomes, COLLECT(DISTINCT otherOutcome.name) AS other_outcomes |
251 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies with participants in the ADULT age group and funding from OTHER_GOV. | MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) RETURN study.title, study.id |
252 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List secondary outcomes assessed in studies of Thalassemia Intermedia funded by NETWORK. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'NETWORK'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
253 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the typical age groups and sexes included in Neurocognitive Dysfunction studies, and what phases are they in? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup) MATCH (study)-[:INCLUDES_SEX]->(sex:Sex) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN ageGroup.name AS age_group, sex.name AS sex, phase.name AS phase, COUNT(*) AS study_count ORDER BY study_count DESC |
254 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the number of studies involving BDP HFA Nasal Aerosol. | MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'BDP HFA Nasal Aerosol'}) RETURN COUNT(study) as number_of_studies |
255 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Find studies with primary outcomes of Decrease in Blood Sugar and sponsored by Novartis. | MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Decrease in Blood Sugar'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Novartis'}) RETURN study.title |
256 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies sponsored by Vancouver Prostate Centre and conducted in Boston. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Vancouver Prostate Centre'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Boston'}) RETURN study.title, study.id |
257 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List all studies sponsored by Novartis conducted in Chicago that studied Leukemia Relapse. Include primary and secondary outcomes. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Novartis'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, primary.name AS primary_outcome, secondary.name AS secondary_outcome |
258 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Provide details of studies investigating Laryngeal Dystonia in Boston and their associated phases. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Boston'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN study.title AS study_title, phase.name AS phase |
259 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Can you identify the top interventions being tested for participants in the CHILD age group? | MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC |
260 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List all studies sponsored by Novartis conducted in Hangzhou, Zhejiang, China that studied Thalassemia Intermedia. Include primary and secondary outcomes. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Novartis'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, primary.name AS primary_outcome, secondary.name AS secondary_outcome |
261 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the primary interventions being tested for Thalassemia Intermedia in various study phases. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN phase.name AS phase, intervention.name AS intervention, COUNT(*) AS intervention_count ORDER BY intervention_count DESC |
262 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies sponsored by IHF GmbH - Institut für Herzinfarktforschung with Harvard Medical School (HMS and HSDM)|University of Sussex|London School of Hygiene and Tropical Medicine as a collaborator. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'IHF GmbH - Institut für Herzinfarktforschung'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator {name: 'Harvard Medical School (HMS and HSDM)|University of Sussex|London School of Hygiene and Tropical Medicine'}) RETURN study.title |
263 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies in PHASE2 phase focusing on Hand Injuries. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) RETURN study.title |
264 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the primary and secondary outcomes measured in studies on Orthodontic Retainers involving the CHILD, ADULT, OLDER_ADULT age group? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT, OLDER_ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN primaryOutcome.name AS primary_outcome, secondaryOutcome.name AS secondary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC |
265 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies supported by Peter Rossing that involved Pulmonary Tuberculoses and EHR clinical decision support nudges in Boston. Include collaborators and outcomes. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Peter Rossing'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Boston'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'EHR clinical decision support nudges'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, primary.name, secondary.name, collaborator.name |
266 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies sponsored by NSABP Foundation Inc with Xinxiang Central Hospital as a collaborator. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'NSABP Foundation Inc'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator {name: 'Xinxiang Central Hospital'}) RETURN study.title |
267 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List secondary outcomes assessed in studies of Refractory Pulmonary Edema funded by OTHER_GOV. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
268 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which studies in EARLY_PHASE1 were conducted in Kristianstad, Sweden and studied Ventricular Ectopic Beat(S)? What were the primary outcomes? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Kristianstad, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name |
269 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List interventions frequently tested in studies including participants from the CHILD age group. | MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS count ORDER BY count DESC |
270 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | How many studies involve Recombinant new coronavirus vaccine (CHO cell) low-dose group? | MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Recombinant new coronavirus vaccine (CHO cell) low-dose group'}) RETURN COUNT(study) as number_of_studies |
271 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the primary outcomes in PHASE4 studies focused on Alpha1-antitrypsin Deficiency. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN primaryOutcome.name AS primary_outcome, COUNT(*) AS count ORDER BY count DESC |
272 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies conducted by Quadras Scientific Solutions in Lund, Sweden involving Leukemia Relapse and Recombinant new coronavirus vaccine (CHO cell) low-dose group. Include collaborators and outcome details. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Quadras Scientific Solutions'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Recombinant new coronavirus vaccine (CHO cell) low-dose group'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, primary.name, secondary.name, collaborator.name |
273 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show all studies with Intervertebral Disc Disorder Lumbar With Radiculopathy that also have Intraoperative heart rate as a secondary outcome. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(outcome:SecondaryOutcomeMeasures {name: 'Intraoperative heart rate'}) RETURN study.title |
274 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List all studies that received funding from UNKNOWN and were in PHASE2|PHASE3. What interventions and conditions were involved? | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN study.title, intervention.name, condition.name |
275 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which conditions are the focus of studies funded by OTHER and carried out in Chicago? | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC |
276 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Provide details of studies funded by AMBIG focusing on Hand Injuries and their secondary outcomes. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
277 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which universities are collaborating on studies about Laryngeal Dystonia, and what primary outcomes are measured? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN collaborator.name AS university, primaryOutcome.name AS primary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC |
278 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies funded by AMBIG in PHASE1|PHASE2 at Helsingborg, Sweden involving Refractory Pulmonary Edema and 10 % lidocaine spray without adrenaline. Include details of outcomes, sponsors, and collaborators. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Helsingborg, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: '10 % lidocaine spray without adrenaline'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, primary.name, secondary.name, sponsor.name, collaborator.name |
279 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies conducted at New York having ACTIVE_NOT_RECRUITING status. | MATCH (study:Study {status: 'ACTIVE_NOT_RECRUITING'})-[:CONDUCTED_AT]->(location:Location {name: 'New York'}) RETURN study.title, study.id |
280 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which studies on Thalassemia Intermedia are currently recruiting, and what interventions are being tested? | MATCH (study:Study {status: 'Recruiting'})-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN study.title AS study_title, intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC |
281 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | How many studies are currently recruiting for Alpha1-antitrypsin Deficiency and what are their primary outcomes? | MATCH (study:Study {status: 'Recruiting'})-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(study) AS study_count |
282 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which studies in EARLY_PHASE1 phase focus on Neurocognitive Dysfunction? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) RETURN study.title |
283 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the interventions being tested in EARLY_PHASE1 for Kidney Carcinoma, along with the age groups involved. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Kidney Carcinoma'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup) RETURN intervention.name AS intervention, ageGroup.name AS age_group, COUNT(*) AS count ORDER BY count DESC |
284 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies with Post Cardiac Surgery and Combination therapy (S81694 + paclitaxel) phase I involving participants from OLDER_ADULT. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Combination therapy (S81694 + paclitaxel) phase I'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'OLDER_ADULT'}) RETURN study.title |
285 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies in PHASE3 at Los Angeles that studied Laryngeal Dystonia. Include details of primary outcomes. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name |
286 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What is the count of studies focused on Ischemic Heart Disease (IHD) that include participants from the OLDER_ADULT age group and what are their primary outcomes? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'OLDER_ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(*) AS count |
287 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which interventions are tested in PHASE2 studies for Recurrent Hypopharyngeal Squamous Cell Carcinoma, and what are the age groups? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup) RETURN intervention.name AS intervention, ageGroup.name AS age_group, COUNT(*) AS count ORDER BY count DESC |
288 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies at Chicago with Caloric function as a primary outcome. | MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Caloric function'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) RETURN study.title, study.id |
289 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which locations are most frequently used for studies on Chronic Antibody-mediated Transplant Rejection, and what interventions are being tested there? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Chronic Antibody-mediated Transplant Rejection'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN location.name AS location, intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC |
290 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the interventions being tested in PHASE1|PHASE2 for Post Cardiac Surgery, along with the age groups involved. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup) RETURN intervention.name AS intervention, ageGroup.name AS age_group, COUNT(*) AS count ORDER BY count DESC |
291 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the typical age groups and sexes included in Intervertebral Disc Disorder Lumbar With Radiculopathy studies, and what phases are they in? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup) MATCH (study)-[:INCLUDES_SEX]->(sex:Sex) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN ageGroup.name AS age_group, sex.name AS sex, phase.name AS phase, COUNT(*) AS study_count ORDER BY study_count DESC |
292 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What conditions are being studied at Lund, Sweden, and which studies are involved? | MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN study.title AS study_title, condition.name AS condition |
293 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the secondary outcomes measured in studies about Pulmonary Tuberculoses and funded by INDUSTRY? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
294 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies in PHASE1 conducted at Kristianstad, Sweden studying Post Cardiac Surgery. Include primary outcome details. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Kristianstad, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name |
295 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which secondary outcomes are evaluated in studies on Post Cardiac Surgery funded by INDUSTRY? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
296 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the primary and secondary outcomes measured in studies on Pulmonary Tuberculoses funded by FED organizations? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN COLLECT(DISTINCT primaryOutcome.name) AS primary_outcomes, COLLECT(DISTINCT secondaryOutcome.name) AS secondary_outcomes |
297 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Identify studies conducted by IHF GmbH - Institut für Herzinfarktforschung involving Ketamine Treatment and Nalmefene (Selincro®) 18 mg tablet in Hangzhou, Zhejiang, China. Who collaborated, and what were the outcomes? | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'IHF GmbH - Institut für Herzinfarktforschung'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Nalmefene (Selincro®) 18 mg tablet'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, primary.name, secondary.name, collaborator.name |
298 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Identify studies in PHASE1|PHASE2 that studied Post Cardiac Surgery and were conducted at Hangzhou, Zhejiang, China. What were their secondary outcomes? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, secondary.name AS secondary_outcome |
299 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Find studies funded by UNKNOWN in PHASE2|PHASE3 and conducted at Boston. Include details of conditions and outcomes. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Boston'}) MATCH (study)-[:STUDIES]->(condition:Condition) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, condition.name, primary.name, secondary.name |
300 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the most common primary outcomes measured in PHASE1 studies about Post Cardiac Surgery? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN primaryOutcome.name AS primary_outcome, COUNT(*) AS count ORDER BY count DESC |