id
int64
1
100k
graph_name
stringclasses
1 value
schema
stringclasses
1 value
input
stringlengths
43
565
output
stringlengths
122
887
1
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 Boston.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) 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
2
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Which universities are collaborating on studies about Alpha1-antitrypsin Deficiency, and what outcomes are these studies measuring?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) 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 collaborator.name AS university, COLLECT(DISTINCT primaryOutcome.name) AS primary_outcomes, COLLECT(DISTINCT secondaryOutcome.name) AS secondary_outcomes, COLLECT(DISTINCT otherOutcome.name) AS other_outcomes
3
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 collaborators and interventions in studies about Human Flu.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Human Flu'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN collaborator.name AS collaborator, intervention.name AS intervention
4
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, OLDER_ADULT and what phases are these studies in?
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT, OLDER_ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) 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
5
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 Hand Injuries research.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) MATCH (study)-[:TYPE_OF]->(studyType:StudyType) RETURN studyType.name AS study_type, COUNT(*) AS count ORDER BY count DESC
6
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 Intervertebral Disc Disorder Lumbar With Radiculopathy include participants from the CHILD, ADULT age group and what are their primary outcomes?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(*) AS count
7
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List studies with WITHDRAWN status that include Chronic Antibody-mediated Transplant Rejection.
MATCH (study:Study {status: 'WITHDRAWN'})-[:STUDIES]->(condition:Condition {name: 'Chronic Antibody-mediated Transplant Rejection'}) RETURN study.title, study.id
8
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
How many studies are currently recruiting for Human Flu and what are their primary outcomes?
MATCH (study:Study {status: 'Recruiting'})-[:STUDIES]->(condition:Condition {name: 'Human Flu'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(study) AS study_count
9
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Which studies funded by UNKNOWN organizations are focused on Laryngeal Dystonia, and what outcomes are they measuring?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) 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
10
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 in PHASE1|PHASE2 and conducted at New York. Include conditions, outcomes, sponsors, and collaborators.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) 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
11
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List the number of studies involving Active MBM.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Active MBM'}) RETURN COUNT(study) as number_of_studies
12
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 with CHILD, ADULT age group participants and Male sex participants.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Peter Rossing'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT'}) MATCH (study)-[:INCLUDES_SEX]->(sex:Sex {name: 'Male'}) RETURN study.title
13
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 Intervertebral Disc Disorder Lumbar With Radiculopathy, and what are their secondary outcomes?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDIV'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
14
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 INDUSTRY.
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT, OLDER_ADULT'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) RETURN study.title, study.id
15
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 Orthodontic Retainers studies, and what types of studies are they?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) 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
16
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 Bleeding Cardiac Surgery Patients with Intraoperative heart rate as a secondary outcome.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Bleeding Cardiac Surgery Patients'}) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(outcome:SecondaryOutcomeMeasures {name: 'Intraoperative heart rate'}) RETURN study.title
17
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 Lund, Sweden that studied Laryngeal Dystonia. Include details of primary outcomes.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
18
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 PHASE4 studies for Ischemic Heart Disease (IHD), and what are the age groups?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) 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
19
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List studies including participants from CHILD, ADULT funded by NIH.
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) RETURN study.title, study.id
20
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 with Chronic Antibody-mediated Transplant Rejection in PHASE4 funded by FED, involving delandistrogene moxeparvovec. What were the primary and secondary outcomes, and who collaborated and sponsored them?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Chronic Antibody-mediated Transplant Rejection'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'delandistrogene moxeparvovec'}) 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
21
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
What are the primary and secondary outcomes measured in studies on Thalassemia Intermedia involving the CHILD, ADULT, OLDER_ADULT age group?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT, OLDER_ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN primaryOutcome.name AS primary_outcome, secondaryOutcome.name AS secondary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC
22
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 PHASE2 trials conducted in Lund, Sweden.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Lund, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC
23
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 studies on Ventricular Ectopic Beat(S) conducted at Boston?
MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'Boston'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN condition.name AS condition, intervention.name AS intervention, COUNT(*) AS count ORDER BY count DESC
24
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 PHASE4 conducted at Hangzhou, Zhejiang, China studying Ischemic Heart Disease (IHD). Include details of secondary outcomes.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, secondary.name AS secondary_outcome
25
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
What interventions are being studied in PHASE2 studies on Leukemia Relapse, and which sponsors are involved?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) RETURN intervention.name AS intervention, sponsor.name AS sponsor, COUNT(*) AS study_count ORDER BY study_count DESC
26
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 Neurocognitive Dysfunction research and who are the sponsors?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) 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
27
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 UNKNOWN that investigate Hand Injuries and their secondary outcomes.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
28
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 can be learnt on a whole landscape of studies being conducted for COPD?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'COPD'}) OPTIONAL MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) OPTIONAL MATCH (study)-[:CONDUCTED_AT]->(location:Location) OPTIONAL MATCH (study)-[:PHASE_OF]->(phase:Phase) OPTIONAL MATCH (study)-[:INTERVENTION]->(intervention:Intervention) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) OPTIONAL MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title AS study_title, sponsor.name AS sponsor, location.name AS location, phase.name AS phase, intervention.name AS intervention, COLLECT(DISTINCT primaryOutcome.name) AS primary_outcomes, COLLECT(DISTINCT secondaryOutcome.name) AS secondary_outcomes, collaborator.name AS collaborator ORDER BY study.title
29
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, sponsored by Vancouver Prostate Centre, included participants from ADULT, OLDER_ADULT age group and Male sex?
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Vancouver Prostate Centre'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT, OLDER_ADULT'}) MATCH (study)-[:INCLUDES_SEX]->(sex:Sex {name: 'Male'}) RETURN study.title
30
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List studies sponsored by IHF GmbH - Institut für Herzinfarktforschung and conducted at Boston.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'IHF GmbH - Institut für Herzinfarktforschung'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Boston'}) RETURN study.title, study.id
31
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 PHASE3 were conducted in Chicago and studied Kidney Carcinoma? What were the primary outcomes?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Kidney Carcinoma'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
32
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List all studies that received funding from INDUSTRY and were in PHASE1. What interventions and conditions were involved?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN study.title, intervention.name, condition.name
33
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 PHASE2|PHASE3 and conducted at Hangzhou, Zhejiang, China. What conditions and outcomes were recorded? Who were the sponsors and collaborators?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) 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
34
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 Hand Injuries, and what phases are these studies in?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN sponsor.name AS sponsor, phase.name AS phase, COUNT(*) AS study_count ORDER BY study_count DESC
35
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List the recruiting studies for Refractory Pulmonary Edema and their primary outcomes.
MATCH (study:Study {status: 'Recruiting'})-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(study) AS study_count
36
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 the number of studies that included BDP HFA Nasal Aerosol and were conducted at Los Angeles.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'BDP HFA Nasal Aerosol'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) RETURN COUNT(study) as number_of_studies
37
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Which interventions are most commonly tried in studies involving the ADULT, OLDER_ADULT age group?
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT, OLDER_ADULT'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC
38
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 Bleeding Cardiac Surgery Patients studies funded by AMBIG?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Bleeding Cardiac Surgery Patients'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) 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
39
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Provide details of studies sponsored by Vancouver Prostate Centre and collaborated with Hospital Ambroise Paré Paris|Nestlé Foundation.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Vancouver Prostate Centre'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator {name: 'Hospital Ambroise Paré Paris|Nestlé Foundation'}) RETURN study.title
40
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 PHASE2|PHASE3 at Hangzhou, Zhejiang, China that studied Ketamine Treatment. Include secondary outcome details.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, secondary.name AS secondary_outcome
41
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 OTHER in PHASE2|PHASE3 and conducted at Kristianstad, Sweden. What conditions and outcomes were recorded? Who were the sponsors and collaborators?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Kristianstad, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, condition.name, primary.name, secondary.name, sponsor.name, collaborator.name
42
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List studies with Ketamine Treatment and Placebo to SHP-141C involving participants from OLDER_ADULT.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Placebo to SHP-141C'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'OLDER_ADULT'}) RETURN study.title
43
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 types of studies conducted on Hand Injuries and their primary outcomes?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) MATCH (study)-[:TYPE_OF]->(studyType:StudyType) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN studyType.name AS study_type, primaryOutcome.name AS primary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC
44
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 focus on Ventricular Ectopic Beat(S) and are funded by OTHER?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) RETURN study.title AS study_title, study.id AS study_id
45
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 Leukemia Relapse?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) MATCH (study)-[:TYPE_OF]->(studyType:StudyType) RETURN studyType.name AS study_type, COUNT(*) AS count ORDER BY count DESC
46
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|PHASE2 were conducted in Boston and studied Ventricular Ectopic Beat(S)? What were the primary outcomes?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Boston'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
47
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List secondary outcomes assessed in studies of Laryngeal Dystonia funded by OTHER_GOV.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
48
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 Xiaoping Fan. MD that also had General Hospital of Ningxia Medical University|Beijing Chao Yang Hospital|West China Hospital|Shanghai Chest Hospital|Peking University Cancer Hospital & Institute|The First Affiliated Hospital of Nanchang University|Changzhi Medical College|Zhangzhou Affiliated Hospital of Fujian Medical University|Harbin Medical University|Hubei Cancer Hospital|Jining First People's Hospital|Jiangsu Cancer Institute & Hospital|Nanfang Hospital, Southern Medical University as a collaborator.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Xiaoping Fan. MD'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator {name: 'General Hospital of Ningxia Medical University|Beijing Chao Yang Hospital|West China Hospital|Shanghai Chest Hospital|Peking University Cancer Hospital & Institute|The First Affiliated Hospital of Nanchang University|Changzhi Medical College|Zhangzhou Affiliated Hospital of Fujian Medical University|Harbin Medical University|Hubei Cancer Hospital|Jining First People's Hospital|Jiangsu Cancer Institute & Hospital|Nanfang Hospital, Southern Medical University'}) RETURN study.title
49
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
What interventions are being tested in studies conducted at Hangzhou, Zhejiang, China for Intervertebral Disc Disorder Lumbar With Radiculopathy?
MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN condition.name AS condition, intervention.name AS intervention, COUNT(*) AS count ORDER BY count DESC
50
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 Neurocognitive Dysfunction and funded by UNKNOWN?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
51
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Can you identify the top interventions being tested for participants in the CHILD, 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 study_count ORDER BY study_count DESC
52
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 Orthodontic Retainers being conducted, and who are the sponsors?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) 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
53
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 INDIV in PHASE3 at Lund, Sweden. Include conditions, outcomes, sponsors, and collaborators.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDIV'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, condition.name, primary.name, secondary.name, sponsor.name, collaborator.name
54
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List the secondary outcomes of PHASE2|PHASE3 studies on Alpha1-antitrypsin Deficiency.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
55
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
How many studies are currently recruiting for Kidney Carcinoma and what are their primary outcomes?
MATCH (study:Study {status: 'Recruiting'})-[:STUDIES]->(condition:Condition {name: 'Kidney Carcinoma'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(study) AS study_count
56
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 Hand Injuries studies funded by OTHER organizations?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) 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
57
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 Ventricular Ectopic Beat(S) studies funded by OTHER_GOV organizations?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) 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
58
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 frequently used in studies on Thalassemia Intermedia, and who are their sponsors?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) RETURN intervention.name AS intervention, sponsor.name AS sponsor, COUNT(*) AS study_count ORDER BY study_count DESC
59
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Provide details of studies on Ketamine Treatment that include participants of both All and Female genders and their primary outcomes.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:INCLUDES_SEX]->(sex1:Sex {name: 'All'}), (study)-[:INCLUDES_SEX]->(sex2:Sex {name: 'Female'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome
60
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 Peter Rossing and collaborated with Harvard Medical School (HMS and HSDM)|University of Sussex|London School of Hygiene and Tropical Medicine.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Peter Rossing'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator {name: 'Harvard Medical School (HMS and HSDM)|University of Sussex|London School of Hygiene and Tropical Medicine'}) RETURN study.title
61
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List the studies on Orthodontic Retainers funded by NETWORK organizations.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NETWORK'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) RETURN study.title AS study_title, study.id AS study_id
62
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 J&J that focused on Bleeding Cardiac Surgery Patients. Include primary and secondary outcomes.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Bleeding Cardiac Surgery Patients'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'J&J'}) 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
63
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 Thalassemia Intermedia, and what phases are these studies in?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN sponsor.name AS sponsor, phase.name AS phase, COUNT(*) AS study_count ORDER BY study_count DESC
64
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Show studies conducted by J&J in San Francisco involving Hand Injuries and diet and exercise. Include collaborators and outcome details.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'J&J'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'diet and exercise'}) 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
65
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Provide details of studies on Refractory Pulmonary Edema that include participants of both All and Female genders and their primary outcomes.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) MATCH (study)-[:INCLUDES_SEX]->(sex1:Sex {name: 'All'}), (study)-[:INCLUDES_SEX]->(sex2:Sex {name: 'Female'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome
66
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 Helsingborg, Sweden, and which studies are involved?
MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'Helsingborg, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN study.title AS study_title, condition.name AS condition
67
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 Human Flu and funded by AMBIG?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Human Flu'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
68
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 OTHER in PHASE2|PHASE3 and conducted at San Francisco. What conditions and outcomes were recorded?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) 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
69
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List the interventions for Ketamine Treatment studies conducted at Helsingborg, Sweden.
MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'Helsingborg, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN condition.name AS condition, intervention.name AS intervention, COUNT(*) AS count ORDER BY count DESC
70
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 Los Angeles that have AVAILABLE status.
MATCH (study:Study {status: 'AVAILABLE'})-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) RETURN study.title, study.id
71
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Which phases are most common for studies on Laryngeal Dystonia funded by NETWORK organizations?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'NETWORK'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN phase.name AS phase, COUNT(*) AS study_count ORDER BY study_count DESC
72
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 studied by studies funded by FED and conducted in Helsingborg, Sweden?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Helsingborg, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC
73
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 involve participants from the OLDER_ADULT age group, and what are the primary and secondary outcomes?
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) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, secondaryOutcome.name AS secondary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC
74
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 Hand Injuries studies, along with study types.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) 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
75
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 Alpha1-antitrypsin Deficiency involving OLDER_ADULT participants?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) 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
76
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List secondary outcomes assessed in studies of Laryngeal Dystonia funded by AMBIG.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
77
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 trials conducted in Chicago?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC
78
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
What interventions are being primarily studied for Recurrent Hypopharyngeal Squamous Cell Carcinoma, and which intervention is the most studied?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC LIMIT 1
79
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
What are the most common interventions being tested in studies involving Recurrent Hypopharyngeal Squamous Cell Carcinoma?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC
80
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|PHASE2 were conducted in Hangzhou, Zhejiang, China and studied Refractory Pulmonary Edema? What were the primary outcomes?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
81
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 ADULT, OLDER_ADULT age group.
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT, OLDER_ADULT'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS count ORDER BY count DESC
82
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 types of studies conducted on Pulmonary Tuberculoses and their primary outcomes?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:TYPE_OF]->(studyType:StudyType) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN studyType.name AS study_type, primaryOutcome.name AS primary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC
83
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List studies with UNKNOWN status that include Recurrent Hypopharyngeal Squamous Cell Carcinoma.
MATCH (study:Study {status: 'UNKNOWN'})-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) RETURN study.title, study.id
84
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 Boston 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: 'Boston'}) RETURN study.title, study.id
85
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 conducted at New York involved Placebo to SHP-141C?
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Placebo to SHP-141C'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'New York'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) RETURN COUNT(study) as number_of_studies
86
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 PHASE4 at Kristianstad, Sweden. Include conditions and outcomes studied.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Kristianstad, 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
87
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 Ischemic Heart Disease (IHD) studies, and what phases are they in?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) 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
88
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 EARLY_PHASE1 trials conducted in Lund, Sweden?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Lund, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC
89
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 Ketamine Treatment being conducted, and who are the sponsors?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) 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
90
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 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 count ORDER BY count DESC
91
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 Thalassemia Intermedia funded by INDUSTRY?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
92
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 Pulmonary Tuberculoses with both Female and All participants and their primary outcome measures.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:INCLUDES_SEX]->(sex1:Sex {name: 'Female'}), (study)-[:INCLUDES_SEX]->(sex2:Sex {name: 'All'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome
93
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 Leukemia Relapse, and which universities are involved?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN collaborator.name AS university, COUNT(*) AS study_count ORDER BY study_count DESC
94
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 relaxation response- meditation and were conducted at Helsingborg, Sweden.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'relaxation response- meditation'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Helsingborg, Sweden'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) RETURN COUNT(study) as number_of_studies
95
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List the number of studies involving BLOOD SAMPLE.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'BLOOD SAMPLE'}) RETURN COUNT(study) as number_of_studies
96
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List the number of studies supported by Xiaoping Fan. MD carried out in San Francisco.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Xiaoping Fan. MD'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) RETURN COUNT(study) as number_of_studies
97
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 involve participants from the ADULT age group, and what are the primary and secondary outcomes?
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, secondaryOutcome.name AS secondary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC
98
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 conducted at Chicago with primary outcomes focusing on Reduction in Blood Pressure.
MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Reduction in Blood Pressure'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) RETURN study.title, study.id
99
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 OTHER_GOV and conducted in Hangzhou, Zhejiang, China.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) 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
100
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 AMBIG in EARLY_PHASE1 were conducted at Chicago and involved Intervertebral Disc Disorder Lumbar With Radiculopathy as well as Mayo Clinic Foregut Surgery Report Card Questionnaire? What were the primary and secondary outcomes, who sponsored them, and who were the collaborators?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) 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: 'Mayo Clinic Foregut Surgery Report Card Questionnaire'}) 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

No dataset card yet

New: Create and edit this dataset card directly on the website!

Contribute a Dataset Card
Downloads last month
2
Add dataset card