id
int64
1
100k
graph_name
stringclasses
1 value
schema
stringclasses
1 value
input
stringlengths
43
565
output
stringlengths
122
887
501
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Recurrent Hypopharyngeal Squamous Cell Carcinoma and funded by OTHER?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
502
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Bleeding Cardiac Surgery Patients funded by NETWORK?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Bleeding Cardiac Surgery Patients'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'NETWORK'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
503
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Find studies conducted at Lund, Sweden that involve 10 % lidocaine spray without adrenaline as an intervention.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: '10 % lidocaine spray without adrenaline'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) RETURN study.title, study.id
504
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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, OLDER_ADULT age group and are funded by INDUSTRY?
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT, OLDER_ADULT'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) RETURN study.title, study.id
505
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Kidney Carcinoma, and which universities are involved?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Kidney Carcinoma'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN collaborator.name AS university, COUNT(*) AS study_count ORDER BY study_count DESC
506
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 are supporting studies on Leukemia Relapse, and where are these studies conducted?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) 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
507
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 in EARLY_PHASE1 phase that focus on Recurrent Hypopharyngeal Squamous Cell Carcinoma.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) RETURN study.title
508
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 BDP HFA Nasal Aerosol?
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'BDP HFA Nasal Aerosol'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'New York'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) RETURN COUNT(study) as number_of_studies
509
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Pfizer that also focus on Post Cardiac Surgery.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Pfizer'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) RETURN study.title
510
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List studies in PHASE1 conducted at New York studying Chronic Antibody-mediated Transplant Rejection. Include primary outcome details.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'New York'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Chronic Antibody-mediated Transplant Rejection'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
511
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
What is the count of recruiting studies for Ventricular Ectopic Beat(S) and their primary outcomes?
MATCH (study:Study {status: 'Recruiting'})-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(study) AS study_count
512
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Neurocognitive Dysfunction and their primary outcomes.
MATCH (study:Study {status: 'Recruiting'})-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(study) AS study_count
513
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 collaborators are involved in studies about Orthodontic Retainers, and what interventions are being tested?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN collaborator.name AS collaborator, intervention.name AS intervention
514
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Los Angeles, and which studies are involved?
MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN study.title AS study_title, condition.name AS condition
515
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Helsingborg, Sweden with primary outcomes focusing on Reduction in Tumor Size.
MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Reduction in Tumor Size'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Helsingborg, Sweden'}) RETURN study.title, study.id
516
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
What is the count of studies focused on Refractory Pulmonary Edema that include participants from the CHILD, ADULT age group and what are their primary outcomes?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) 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
517
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 diet and exercise and were conducted at Hangzhou, Zhejiang, China.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'diet and exercise'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDIV'}) RETURN COUNT(study) as number_of_studies
518
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 at Hangzhou, Zhejiang, China with SUSPENDED status.
MATCH (study:Study {status: 'SUSPENDED'})-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) RETURN study.title, study.id
519
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Find studies supported by Novartis involving participants from CHILD age group and All sex.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Novartis'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD'}) MATCH (study)-[:INCLUDES_SEX]->(sex:Sex {name: 'All'}) RETURN study.title
520
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Show studies funded by AMBIG in PHASE1|PHASE2 at Hangzhou, Zhejiang, China. Include conditions and outcomes studied.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) 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) RETURN study.title, condition.name, primary.name, secondary.name
521
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
What is the count of studies focused on Orthodontic Retainers that include participants from the ADULT, OLDER_ADULT age group and what are their primary outcomes?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT, OLDER_ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(*) AS count
522
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Lund, Sweden with primary outcomes focusing on Reduction in Tumor Size.
MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Reduction in Tumor Size'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) RETURN study.title, study.id
523
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List studies in PHASE1|PHASE2 conducted at Lund, Sweden studying Post Cardiac Surgery. Include primary outcome details.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
524
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
What is the count of studies focused on Neurocognitive Dysfunction that include participants from the ADULT age group and what are their primary outcomes?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, COUNT(*) AS count
525
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Find studies involving ADULT participants with both Thalassemia Intermedia and EHR clinical decision support nudges.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'EHR clinical decision support nudges'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT'}) RETURN study.title
526
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Ventricular Ectopic Beat(S) studies, and what types of studies are they?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) 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
527
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Recurrent Hypopharyngeal Squamous Cell Carcinoma funded by AMBIG.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) 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
528
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Find studies supported by Novartis involving participants from CHILD, ADULT, OLDER_ADULT age group and All sex.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Novartis'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT, OLDER_ADULT'}) MATCH (study)-[:INCLUDES_SEX]->(sex:Sex {name: 'All'}) RETURN study.title
529
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 in PHASE2 were conducted at San Francisco and involved Leukemia Relapse as well as BLOOD SAMPLE? What were the primary and secondary outcomes, who sponsored them, and who were the collaborators?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'BLOOD SAMPLE'}) 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
530
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Quadras Scientific Solutions and conducted at Kristianstad, Sweden.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Quadras Scientific Solutions'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Kristianstad, Sweden'}) RETURN study.title, study.id
531
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Count studies sponsored by NSABP Foundation Inc conducted in Hangzhou, Zhejiang, China.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'NSABP Foundation Inc'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) RETURN COUNT(study) as number_of_studies
532
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 at Kristianstad, Sweden with NO_LONGER_AVAILABLE status.
MATCH (study:Study {status: 'NO_LONGER_AVAILABLE'})-[:CONDUCTED_AT]->(location:Location {name: 'Kristianstad, Sweden'}) RETURN study.title, study.id
533
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Which studies funded by OTHER in PHASE4 were conducted at Helsingborg, Sweden and involved Refractory Pulmonary Edema as well as Nalmefene (Selincro®) 18 mg tablet? What were the primary and secondary outcomes, who sponsored them, and who were the collaborators?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Helsingborg, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Nalmefene (Selincro®) 18 mg tablet'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, primary.name, secondary.name, sponsor.name, collaborator.name
534
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 PHASE1 trials conducted in Helsingborg, Sweden?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) 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
535
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
How many studies involve Nalmefene (Selincro®) 18 mg tablet?
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Nalmefene (Selincro®) 18 mg tablet'}) RETURN COUNT(study) as number_of_studies
536
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 San Francisco. What conditions and outcomes were recorded?
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: '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
537
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List studies involving Amivantamab (to be determined) with vHIT measurement as a secondary outcome.
MATCH (study:Study)-[:MEASURES_SECONDARY_OUTCOME]->(outcome:SecondaryOutcomeMeasures {name: 'vHIT measurement'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Amivantamab (to be determined)'}) RETURN COUNT(study) as number_of_studies
538
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Recurrent Hypopharyngeal Squamous Cell Carcinoma and Plasma involving participants from ADULT.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Plasma'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT'}) RETURN study.title
539
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 were conducted by NSABP Foundation Inc in Chicago and involved Post Cardiac Surgery? What were the primary and secondary outcomes?
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'NSABP Foundation Inc'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, primary.name AS primary_outcome, secondary.name AS secondary_outcome
540
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Novartis with primary outcomes of Intraoperative blood pressure.
MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Intraoperative blood pressure'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Novartis'}) RETURN study.title
541
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 NIH in PHASE1 were conducted at Boston and involved Bleeding Cardiac Surgery Patients as well as TQ-A3334? What were the primary and secondary outcomes, who sponsored them, and who were the collaborators?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Boston'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Bleeding Cardiac Surgery Patients'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'TQ-A3334'}) 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
542
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Orthodontic Retainers funded by AMBIG?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) 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
543
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Which studies on Orthodontic Retainers are in PHASE1|PHASE2, and what are their secondary outcomes?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
544
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Post Cardiac Surgery funded by FED.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
545
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 with NOT_YET_RECRUITING status studying Ventricular Ectopic Beat(S).
MATCH (study:Study {status: 'NOT_YET_RECRUITING'})-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) RETURN study.title, study.id
546
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Provide details of studies funded by OTHER focusing on Thalassemia Intermedia and their secondary outcomes.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
547
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 the study designs for Ischemic Heart Disease (IHD) and their sponsors.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) 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
548
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Who are the collaborators in Refractory Pulmonary Edema studies, and what interventions are they testing?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN collaborator.name AS collaborator, intervention.name AS intervention
549
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Count studies sponsored by Xiaoping Fan. MD conducted in Los Angeles.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Xiaoping Fan. MD'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) RETURN COUNT(study) as number_of_studies
550
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Leukemia Relapse funded by NETWORK organizations?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'NETWORK'}) 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
551
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List studies involving pulmonory based home exercises with vHIT measurement as a secondary outcome.
MATCH (study:Study)-[:MEASURES_SECONDARY_OUTCOME]->(outcome:SecondaryOutcomeMeasures {name: 'vHIT measurement'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'pulmonory based home exercises'}) RETURN COUNT(study) as number_of_studies
552
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Identify studies conducted by NSABP Foundation Inc involving Ischemic Heart Disease (IHD) and diet and exercise in Chicago. Who collaborated, and what were the outcomes?
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'NSABP Foundation Inc'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) 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
553
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 10 % lidocaine spray without adrenaline and were conducted at Chicago.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: '10 % lidocaine spray without adrenaline'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) RETURN COUNT(study) as number_of_studies
554
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 PHASE2|PHASE3 were conducted in Hangzhou, Zhejiang, China and studied Ventricular Ectopic Beat(S)? What were the primary outcomes?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
555
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Recurrent Hypopharyngeal Squamous Cell Carcinoma and their primary outcome measures.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome
556
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Neurocognitive Dysfunction studies conducted at Hangzhou, Zhejiang, China.
MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN condition.name AS condition, intervention.name AS intervention, COUNT(*) AS count ORDER BY count DESC
557
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Find studies supported by Quadras Scientific Solutions involving participants from ADULT, OLDER_ADULT age group and Male sex.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Quadras Scientific Solutions'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT, OLDER_ADULT'}) MATCH (study)-[:INCLUDES_SEX]->(sex:Sex {name: 'Male'}) RETURN study.title
558
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List the interventions being tested in PHASE2|PHASE3 for Laryngeal Dystonia, along with the age groups involved.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) 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
559
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List studies on Ketamine Treatment conducted in Hangzhou, Zhejiang, China along with their respective phases.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN study.title AS study_title, phase.name AS phase
560
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List studies in PHASE1|PHASE2 conducted at New York studying Ketamine Treatment. Include primary outcome details.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'New York'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
561
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Provide details of studies focusing on Neurocognitive Dysfunction and their primary outcomes.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome
562
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Refractory Pulmonary Edema studies funded by UNKNOWN organizations?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) 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
563
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 EARLY_PHASE1 trials conducted in New York.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'New York'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC
564
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 with AVAILABLE status studying Kidney Carcinoma.
MATCH (study:Study {status: 'AVAILABLE'})-[:STUDIES]->(condition:Condition {name: 'Kidney Carcinoma'}) RETURN study.title, study.id
565
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Find studies with primary outcomes of Intraoperative blood pressure and sponsored by NSABP Foundation Inc.
MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Intraoperative blood pressure'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'NSABP Foundation Inc'}) RETURN study.title
566
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 CHILD age group and are funded by NETWORK?
MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'NETWORK'}) RETURN study.title, study.id
567
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 PHASE1|PHASE2 at Lund, Sweden that studied Post Cardiac Surgery. Include secondary outcome details.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Post Cardiac Surgery'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, secondary.name AS secondary_outcome
568
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Ketamine Treatment research and who are the sponsors?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) 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
569
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Count studies sponsored by Peter Rossing conducted in Los Angeles.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Peter Rossing'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) RETURN COUNT(study) as number_of_studies
570
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
What interventions are being tested in PHASE2 studies on Alpha1-antitrypsin Deficiency, and what age groups are included?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) 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
571
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Find studies funded by NETWORK and in PHASE1. What interventions and conditions were studied?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NETWORK'}) 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
572
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Which studies on Orthodontic Retainers are currently recruiting, and what interventions are being tested?
MATCH (study:Study {status: 'Recruiting'})-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN study.title AS study_title, intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC
573
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 focus on Thalassemia Intermedia, and what are their secondary outcomes?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome
574
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Novartis with Maternal Fetal Medicine and Perinatology Society of Turkey as a collaborator.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Novartis'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator {name: 'Maternal Fetal Medicine and Perinatology Society of Turkey'}) RETURN study.title
575
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 INDIV and were in PHASE2. What interventions and conditions were involved?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDIV'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN study.title, intervention.name, condition.name
576
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 PHASE3 studies on Thalassemia Intermedia, and what age groups are included?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE3'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup) RETURN intervention.name AS intervention, ageGroup.name AS age_group, COUNT(*) AS count ORDER BY count DESC
577
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 New York that involve EHR clinical decision support nudges as an intervention.
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'EHR clinical decision support nudges'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'New York'}) RETURN study.title, study.id
578
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 IHF GmbH - Institut für Herzinfarktforschung conducted in Chicago.
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'IHF GmbH - Institut für Herzinfarktforschung'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) RETURN study.title, study.id
579
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 with primary outcomes of Reduction in Blood Pressure.
MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Reduction in Blood Pressure'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'J&J'}) RETURN study.title
580
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 tested for Alpha1-antitrypsin Deficiency across different phases?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN phase.name AS phase, intervention.name AS intervention, COUNT(*) AS intervention_count ORDER BY intervention_count DESC
581
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Pulmonary Tuberculoses research and who are the sponsors?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) 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
582
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Neurocognitive Dysfunction, and which intervention is the most studied?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC LIMIT 1
583
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
What studies were conducted by Xiaoping Fan. MD in San Francisco and involved Neurocognitive Dysfunction as well as Gelfoam? What were the primary and secondary outcomes?
MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Xiaoping Fan. MD'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Gelfoam'}) 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
584
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Which studies in PHASE1 were conducted in San Francisco and studied Recurrent Hypopharyngeal Squamous Cell Carcinoma? What were the primary outcomes?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name
585
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Ischemic Heart Disease (IHD), and what are the primary outcomes measured?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN sponsor.name AS sponsor, primaryOutcome.name AS primary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC
586
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 PHASE1|PHASE2 trials conducted in Lund, Sweden.
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|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
587
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Human Flu studies funded by NETWORK organizations?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NETWORK'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Human Flu'}) 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
588
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Which studies have NOT_YET_RECRUITING status and involve Bleeding Cardiac Surgery Patients?
MATCH (study:Study {status: 'NOT_YET_RECRUITING'})-[:STUDIES]->(condition:Condition {name: 'Bleeding Cardiac Surgery Patients'}) RETURN study.title, study.id
589
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 COMPLETED status that include Human Flu.
MATCH (study:Study {status: 'COMPLETED'})-[:STUDIES]->(condition:Condition {name: 'Human Flu'}) RETURN study.title, study.id
590
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Which studies funded by OTHER_GOV focus on Intervertebral Disc Disorder Lumbar With Radiculopathy, and what are their secondary outcomes?
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) 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
591
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Which conditions are most frequently studied in EARLY_PHASE1 trials and what are the typical primary outcomes measured?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN condition.name AS condition, COLLECT(DISTINCT primaryOutcome.name) AS primary_outcomes, COUNT(*) AS study_count ORDER BY study_count DESC
592
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Hand Injuries involving the CHILD, ADULT, OLDER_ADULT age group?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) 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
593
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 INDUSTRY organizations.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) RETURN study.title AS study_title, study.id AS study_id
594
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
What are the different study designs used in studies about Refractory Pulmonary Edema and who are the sponsors?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) 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
595
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List the outcomes measured in studies on Laryngeal Dystonia funded by INDUSTRY organizations.
MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) 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
596
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 NO_LONGER_AVAILABLE status.
MATCH (study:Study {status: 'NO_LONGER_AVAILABLE'})-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) RETURN study.title, study.id
597
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 PHASE3 studies for Pulmonary Tuberculoses, and what are the age groups?
MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE3'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup) RETURN intervention.name AS intervention, ageGroup.name AS age_group, COUNT(*) AS count ORDER BY count DESC
598
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Los Angeles involved delandistrogene moxeparvovec?
MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'delandistrogene moxeparvovec'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) RETURN COUNT(study) as number_of_studies
599
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
List studies on Kidney Carcinoma with Intraoperative cardiac index as a secondary outcome.
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Kidney Carcinoma'}) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(outcome:SecondaryOutcomeMeasures {name: 'Intraoperative cardiac index'}) RETURN study.title
600
clinical_trials
Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType)
Which phases are most common for studies on Human Flu funded by NETWORK organizations?
MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Human Flu'}) 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