id
int64
1
100k
graph_name
stringclasses
1 value
schema
stringclasses
1 value
input
stringlengths
43
565
output
stringlengths
122
887
101
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 funded by NIH that investigate Ventricular Ectopic Beat(S) and their secondary outcomes.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
102
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 Intervertebral Disc Disorder Lumbar With Radiculopathy funded by FED organizations.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) 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
103
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 Hand Injuries and funded by FED?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
104
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 Leukemia Relapse funded by OTHER_GOV organizations?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) 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
105
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 Anhui Palo Alto Pharmaceuticals, Inc. involving Bleeding Cardiac Surgery Patients and Active MBM in San Francisco. Who collaborated, and what were the outcomes?
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Anhui Palo Alto Pharmaceuticals, Inc.'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Bleeding Cardiac Surgery Patients'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Active MBM'}) 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
106
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 studies funded by FED and conducted in Los Angeles.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Los Angeles'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC
107
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 outcomes measured in studies involving CHILD, ADULT and what phases are these studies in?
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_OTHER_OUTCOME]->(otherOutcome:OtherOutcomeMeasures) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN phase.name AS phase, COLLECT(DISTINCT primaryOutcome.name) AS primary_outcomes, COLLECT(DISTINCT secondaryOutcome.name) AS secondary_outcomes, COLLECT(DISTINCT otherOutcome.name) AS other_outcomes
108
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 Ketamine Treatment studies, and what phases are they in?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) 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
109
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 funded by INDIV in EARLY_PHASE1 at Hangzhou, Zhejiang, China that involved Chronic Antibody-mediated Transplant Rejection and Nalmefene (Selincro®) 18 mg tablet. Include primary and secondary outcomes, sponsors, and collaborators.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDIV'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Chronic Antibody-mediated Transplant Rejection'}) 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)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, primary.name, secondary.name, sponsor.name, collaborator.name
110
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 FED in PHASE2 at Chicago involving Intervertebral Disc Disorder Lumbar With Radiculopathy and Plasma. Include details of outcomes, sponsors, and collaborators.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) 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
111
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 locations and sponsors of studies on Pulmonary Tuberculoses.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) RETURN location.name AS location, sponsor.name AS sponsor, COUNT(*) AS study_count ORDER BY study_count DESC
112
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)
Where are the studies on Refractory Pulmonary Edema being conducted, and who are the sponsors?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) RETURN location.name AS location, sponsor.name AS sponsor, COUNT(*) AS study_count ORDER BY study_count DESC
113
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 an overview of conditions studied in PHASE1|PHASE2 trials conducted in Hangzhou, Zhejiang, China.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC
114
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 outcomes measured in Alpha1-antitrypsin Deficiency studies funded by OTHER_GOV organizations?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) 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
115
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 sponsors have funded studies on Orthodontic Retainers, and what are the primary outcomes measured?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN sponsor.name AS sponsor, primaryOutcome.name AS primary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC
116
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 predominantly being tested for the OLDER_ADULT age group?
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'OLDER_ADULT'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC
117
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 Los Angeles having TERMINATED status.
MATCH (study:Study {status: 'TERMINATED'})-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) RETURN study.title, study.id
118
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 UNKNOWN in PHASE2 at Hangzhou, Zhejiang, China involving Chorea Associated With Huntington Disease and Plasma. Include details of outcomes, sponsors, and collaborators.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Chorea Associated With Huntington Disease'}) 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
119
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 Kristianstad, Sweden, and which studies are involved?
MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'Kristianstad, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN study.title AS study_title, condition.name AS condition
120
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 PHASE3 conducted at Los Angeles studying Post Cardiac Surgery. Include primary outcome details.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
121
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 PHASE1|PHASE2 trials, and what primary outcomes are measured?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) 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
122
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 an overview of interventions commonly tested in studies involving participants from 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 count ORDER BY count DESC
123
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 investigating Ketamine Treatment that include PHASE1 interventions.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN study.title AS study_title, intervention.name AS intervention
124
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 Pulmonary Tuberculoses, and which universities are involved?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN collaborator.name AS university, COUNT(*) AS study_count ORDER BY study_count DESC
125
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 J&J 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: 'J&J'}) RETURN study.title
126
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 Amivantamab (to be determined)?
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Amivantamab (to be determined)'}) RETURN COUNT(study) as number_of_studies
127
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 count of studies with Combination therapy (S81694 + paclitaxel) phase I as an intervention.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Combination therapy (S81694 + paclitaxel) phase I'}) RETURN COUNT(study) as number_of_studies
128
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 study designs are used in Intervertebral Disc Disorder Lumbar With Radiculopathy research and who are the sponsors?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) MATCH (study)-[:TYPE_OF]->(studyType:StudyType) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) RETURN studyType.name AS study_design, sponsor.name AS sponsor, COUNT(*) AS count ORDER BY count DESC
129
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 how many studies involved Weight loss and were conducted at Lund, Sweden.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Weight loss'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDIV'}) RETURN COUNT(study) as number_of_studies
130
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 Anhui Palo Alto Pharmaceuticals, Inc. that involved Chorea Associated With Huntington Disease and Guided bone regeneration in Hangzhou, Zhejiang, China. Include collaborators and outcomes.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Anhui Palo Alto Pharmaceuticals, Inc.'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Chorea Associated With Huntington Disease'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Guided bone regeneration'}) 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
131
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 supported by UNKNOWN that were in PHASE4. Include details of interventions and studied conditions.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN study.title, intervention.name, condition.name
132
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 different study designs used in studies about Alpha1-antitrypsin Deficiency and who are the sponsors?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) MATCH (study)-[:TYPE_OF]->(studyType:StudyType) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) RETURN studyType.name AS study_design, sponsor.name AS sponsor, COUNT(*) AS count ORDER BY count DESC
133
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 outcomes measured in studies involving OLDER_ADULT and what phases are these studies in?
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'OLDER_ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_OTHER_OUTCOME]->(otherOutcome:OtherOutcomeMeasures) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN phase.name AS phase, COLLECT(DISTINCT primaryOutcome.name) AS primary_outcomes, COLLECT(DISTINCT secondaryOutcome.name) AS secondary_outcomes, COLLECT(DISTINCT otherOutcome.name) AS other_outcomes
134
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 Helsingborg, Sweden that involve Intraoperative sufentanil as a primary outcome.
MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Intraoperative sufentanil'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Helsingborg, Sweden'}) RETURN study.title, study.id
135
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 Peter Rossing that also had Maternal Fetal Medicine and Perinatology Society of Turkey as a collaborator.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Peter Rossing'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator {name: 'Maternal Fetal Medicine and Perinatology Society of Turkey'}) RETURN study.title
136
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 Leukemia Relapse are in PHASE1|PHASE2, and what are their secondary outcomes?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
137
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 conducted at Boston studying Neurocognitive Dysfunction. Include primary outcome details.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Boston'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
138
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 NIH and carried out in Kristianstad, Sweden?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Kristianstad, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC
139
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 PHASE1 studies for Orthodontic Retainers, and what are the age groups?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) 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
140
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 conditions frequently studied in PHASE3 trials and their primary outcomes.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: '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
141
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 Pulmonary Tuberculoses funded by FED organizations.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) 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
142
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 FED in PHASE1|PHASE2 at Los Angeles. Include conditions and outcomes studied.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) 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) RETURN study.title, condition.name, primary.name, secondary.name
143
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 investigating Refractory Pulmonary Edema with both Male and Male participants and their primary outcome measures.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) MATCH (study)-[:INCLUDES_SEX]->(sex1:Sex {name: 'Male'}), (study)-[:INCLUDES_SEX]->(sex2:Sex {name: 'Male'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome
144
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 EARLY_PHASE1 studies for Thalassemia Intermedia, and what are the age groups?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) 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
145
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 INDIV focus on Laryngeal Dystonia, and what are their secondary outcomes?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDIV'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
146
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 Lund, Sweden involving Gelfoam as an intervention.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Gelfoam'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) RETURN study.title, study.id
147
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 conditions frequently studied in PHASE2 trials and their primary outcomes.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) 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
148
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 locations and sponsors of studies on Alpha1-antitrypsin Deficiency.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) RETURN location.name AS location, sponsor.name AS sponsor, COUNT(*) AS study_count ORDER BY study_count DESC
149
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 trials conducted in Hangzhou, Zhejiang, China.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC
150
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, ADULT age group.
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS count ORDER BY count DESC
151
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 PHASE4 trials conducted in Hangzhou, Zhejiang, China?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC
152
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 recruiting studies for Ischemic Heart Disease (IHD) and their primary outcomes?
MATCH (study:Study {status: 'Recruiting'})-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(study) AS study_count
153
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 Laryngeal Dystonia, and which one tops the list?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC LIMIT 1
154
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 supported by IHF GmbH - Institut für Herzinfarktforschung involving participants from ADULT, OLDER_ADULT age group and Female sex.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'IHF GmbH - Institut für Herzinfarktforschung'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT, OLDER_ADULT'}) MATCH (study)-[:INCLUDES_SEX]->(sex:Sex {name: 'Female'}) RETURN study.title
155
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 funded by AMBIG in PHASE1 and conducted at Lund, Sweden. What conditions and outcomes were recorded?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) 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) RETURN study.title, condition.name, primary.name, secondary.name
156
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 Thalassemia Intermedia with interventions in PHASE1|PHASE2.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN study.title AS study_title, intervention.name AS intervention
157
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 studies were conducted by NSABP Foundation Inc in Kristianstad, Sweden and involved Chorea Associated With Huntington Disease as well as delandistrogene moxeparvovec? What were the primary and secondary outcomes?
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'NSABP Foundation Inc'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Kristianstad, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Chorea Associated With Huntington Disease'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'delandistrogene moxeparvovec'}) 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
158
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 Lund, Sweden that involve Plasma as an intervention.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Plasma'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) RETURN study.title, study.id
159
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 NSABP Foundation Inc that also had Children's Hospital Colorado as a collaborator.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'NSABP Foundation Inc'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator {name: 'Children's Hospital Colorado'}) RETURN study.title
160
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 Human Flu. 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: 'Human Flu'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
161
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 on Alpha1-antitrypsin Deficiency include participants from the ADULT, OLDER_ADULT age group and what are their primary outcomes?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT, OLDER_ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(*) AS count
162
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 PHASE4 trials, and what primary outcomes are measured?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) 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
163
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 Lund, Sweden involving diet and exercise as an intervention.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'diet and exercise'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) RETURN study.title, study.id
164
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 primary and secondary outcomes are measured in Recurrent Hypopharyngeal Squamous Cell Carcinoma studies funded by FED?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) 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
165
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 EARLY_PHASE1 at Kristianstad, Sweden that studied Ketamine Treatment. Include details of 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: 'Ketamine Treatment'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
166
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 count of studies with vHIT measurement as a secondary outcome and involving Nalmefene (Selincro®) 18 mg tablet.
MATCH (study:Study)-[:MEASURES_SECONDARY_OUTCOME]->(outcome:SecondaryOutcomeMeasures {name: 'vHIT measurement'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Nalmefene (Selincro®) 18 mg tablet'}) RETURN COUNT(study) as number_of_studies
167
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 Hand Injuries funded by AMBIG organizations.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) 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
168
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 Chorea Associated With Huntington Disease funded by FED?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Chorea Associated With Huntington Disease'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
169
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 different study types used for research on Intervertebral Disc Disorder Lumbar With Radiculopathy?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) MATCH (study)-[:TYPE_OF]->(studyType:StudyType) RETURN studyType.name AS study_type, COUNT(*) AS count ORDER BY count DESC
170
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 the studies examining Chorea Associated With Huntington Disease with participants from the CHILD, ADULT, OLDER_ADULT age group and list their primary outcomes.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Chorea Associated With Huntington Disease'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT, OLDER_ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(*) AS count
171
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 J&J and collaborated with The Ottawa Hospital|Lotte & John Hecht Memorial Foundation|Gateway for Cancer Research.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'J&J'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator {name: 'The Ottawa Hospital|Lotte & John Hecht Memorial Foundation|Gateway for Cancer Research'}) RETURN study.title
172
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 PHASE1 trials, and what primary outcomes are measured?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) 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
173
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 Orthodontic Retainers are in PHASE1, and what are their secondary outcomes?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
174
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 Ventricular Ectopic Beat(S) conducted in San Francisco along with their respective phases.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'San Francisco'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN study.title AS study_title, phase.name AS phase
175
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 Anhui Palo Alto Pharmaceuticals, Inc. in Helsingborg, Sweden that studied Ketamine Treatment and Weight loss. Include primary and secondary outcomes.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Anhui Palo Alto Pharmaceuticals, Inc.'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Helsingborg, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Weight loss'}) 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
176
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 CHILD, ADULT, OLDER_ADULT age group and funding from OTHER.
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT, OLDER_ADULT'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) RETURN study.title, study.id
177
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 Gelfoam conducted in Lund, Sweden. Who sponsored these studies and what were their primary outcomes?
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Gelfoam'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, sponsor.name, primary.name AS primary_outcome
178
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 study types for Laryngeal Dystonia research.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:TYPE_OF]->(studyType:StudyType) RETURN studyType.name AS study_type, COUNT(*) AS count ORDER BY count DESC
179
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 San Francisco that studied Ketamine Treatment. Include secondary outcome details.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE3'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, secondary.name AS secondary_outcome
180
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 involving pulmonory based home exercises with Intraoperative cardiac index as a secondary outcome.
MATCH (study:Study)-[:MEASURES_SECONDARY_OUTCOME]->(outcome:SecondaryOutcomeMeasures {name: 'Intraoperative cardiac index'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'pulmonory based home exercises'}) RETURN COUNT(study) as number_of_studies
181
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 CHILD, ADULT participants with both Intervertebral Disc Disorder Lumbar With Radiculopathy and BLOOD SAMPLE.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'BLOOD SAMPLE'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT'}) RETURN study.title
182
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 PHASE1 studies focused on Refractory Pulmonary Edema.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN primaryOutcome.name AS primary_outcome, COUNT(*) AS count ORDER BY count DESC
183
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 count of studies with Intraoperative cardiac index as a secondary outcome and involving EHR clinical decision support nudges.
MATCH (study:Study)-[:MEASURES_SECONDARY_OUTCOME]->(outcome:SecondaryOutcomeMeasures {name: 'Intraoperative cardiac index'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'EHR clinical decision support nudges'}) RETURN COUNT(study) as number_of_studies
184
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 Leukemia Relapse funded by INDIV organizations?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDIV'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN phase.name AS phase, COUNT(*) AS study_count ORDER BY study_count DESC
185
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 most frequently studied interventions for Thalassemia Intermedia and highlight the top one?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC LIMIT 1
186
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 different study designs used in studies about Ventricular Ectopic Beat(S) and who are the sponsors?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) MATCH (study)-[:TYPE_OF]->(studyType:StudyType) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) RETURN studyType.name AS study_design, sponsor.name AS sponsor, COUNT(*) AS count ORDER BY count DESC
187
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 PHASE1|PHASE2 at New York. Include conditions, outcomes, sponsors, and collaborators.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NETWORK'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'New York'}) 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
188
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 Chronic Antibody-mediated Transplant Rejection with Intraoperative cardiac index as a secondary outcome.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Chronic Antibody-mediated Transplant Rejection'}) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(outcome:SecondaryOutcomeMeasures {name: 'Intraoperative cardiac index'}) RETURN study.title
189
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 Boston?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Boston'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC
190
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 Ischemic Heart Disease (IHD), and which universities are involved?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN collaborator.name AS university, COUNT(*) AS study_count ORDER BY study_count DESC
191
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 age groups and sexes involved in Pulmonary Tuberculoses studies, along with study types.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup) MATCH (study)-[:INCLUDES_SEX]->(sex:Sex) MATCH (study)-[:TYPE_OF]->(studyType:StudyType) RETURN ageGroup.name AS age_group, sex.name AS sex, studyType.name AS study_type, COUNT(*) AS count ORDER BY count DESC
192
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 and secondary outcomes of Laryngeal Dystonia studies funded by OTHER_GOV organizations.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) 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
193
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 Boston and studied Thalassemia Intermedia? What were the primary outcomes?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Boston'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
194
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 NIH in PHASE1|PHASE2 at San Francisco involving Post Cardiac Surgery and EHR clinical decision support nudges. Include details of outcomes, sponsors, and collaborators.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) 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)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, primary.name, secondary.name, sponsor.name, collaborator.name
195
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 PHASE2|PHASE3 trials conducted in Boston?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Boston'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC
196
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 Orthodontic Retainers.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN primaryOutcome.name AS primary_outcome, COUNT(*) AS count ORDER BY count DESC
197
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 Laryngeal Dystonia and their primary outcomes.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome
198
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 Pulmonary Tuberculoses involving OLDER_ADULT participants?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'OLDER_ADULT'}) 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
199
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 funded by FED in PHASE3 at Los Angeles that involved Bleeding Cardiac Surgery Patients and relaxation response- meditation. Include primary and secondary 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: 'Los Angeles'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Bleeding Cardiac Surgery Patients'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'relaxation response- meditation'}) 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
200
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 Ketamine Treatment and their primary outcomes.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome