id
int64 1
100k
| graph_name
stringclasses 1
value | schema
stringclasses 1
value | input
stringlengths 43
565
| output
stringlengths 122
887
|
---|---|---|---|---|
401 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 top interventions for Alpha1-antitrypsin Deficiency studies and their sponsors. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) RETURN intervention.name AS intervention, sponsor.name AS sponsor, COUNT(*) AS study_count ORDER BY study_count DESC |
402 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Thalassemia Intermedia studies, and what types of studies are they? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) 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 |
403 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies supported by OTHER_GOV in PHASE1|PHASE2 and conducted at Lund, Sweden. Include conditions, outcomes, sponsors, and collaborators. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, condition.name, primary.name, secondary.name, sponsor.name, collaborator.name |
404 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which interventions are most commonly researched in studies on Hand Injuries, and which one tops the list? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC LIMIT 1 |
405 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Anhui Palo Alto Pharmaceuticals, Inc. in Los Angeles and involved Pulmonary Tuberculoses as well as Plasma? What were the primary and secondary outcomes? | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Anhui Palo Alto Pharmaceuticals, Inc.'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Plasma'}) 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 |
406 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies sponsored by IHF GmbH - Institut für Herzinfarktforschung focusing on Intraoperative sufentanil as a primary outcome. | MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Intraoperative sufentanil'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'IHF GmbH - Institut für Herzinfarktforschung'}) RETURN study.title |
407 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 a focus on Chorea Associated With Huntington Disease. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'J&J'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Chorea Associated With Huntington Disease'}) RETURN study.title |
408 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 ACTIVE_NOT_RECRUITING status. | MATCH (study:Study {status: 'ACTIVE_NOT_RECRUITING'})-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) RETURN study.title, study.id |
409 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which studies in PHASE3 phase focus on Alpha1-antitrypsin Deficiency? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE3'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) RETURN study.title |
410 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Chicago and involved Kidney Carcinoma as well as Weight loss? 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: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Kidney Carcinoma'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Weight loss'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, primary.name AS primary_outcome, secondary.name AS secondary_outcome |
411 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 FED organizations? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Human Flu'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'FED'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN phase.name AS phase, COUNT(*) AS study_count ORDER BY study_count DESC |
412 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 involving BLOOD SAMPLE in Lund, Sweden. Include sponsoring details and primary outcomes. | MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'BLOOD SAMPLE'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, sponsor.name, primary.name AS primary_outcome |
413 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 INDUSTRY in PHASE1 at Los Angeles. Include conditions, outcomes, sponsors, and collaborators. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:STUDIES]->(condition:Condition) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, condition.name, primary.name, secondary.name, sponsor.name, collaborator.name |
414 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 New York with ENROLLING_BY_INVITATION status. | MATCH (study:Study {status: 'ENROLLING_BY_INVITATION'})-[:CONDUCTED_AT]->(location:Location {name: 'New York'}) RETURN study.title, study.id |
415 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies in PHASE4 phase focusing on Orthodontic Retainers. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) RETURN study.title |
416 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 BDP HFA Nasal Aerosol conducted in Los Angeles. Who sponsored these studies and what were their primary outcomes? | MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'BDP HFA Nasal Aerosol'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, sponsor.name, primary.name AS primary_outcome |
417 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 top interventions for Kidney Carcinoma studies and their sponsors. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Kidney Carcinoma'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) RETURN intervention.name AS intervention, sponsor.name AS sponsor, COUNT(*) AS study_count ORDER BY study_count DESC |
418 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 PHASE1 studies on Neurocognitive Dysfunction, and what age groups are included? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Neurocognitive Dysfunction'}) 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 |
419 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies on Kidney Carcinoma conducted in Helsingborg, Sweden along with their respective phases. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Kidney Carcinoma'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Helsingborg, Sweden'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN study.title AS study_title, phase.name AS phase |
420 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 PHASE4 phase focus on Thalassemia Intermedia? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) RETURN study.title |
421 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Pulmonary Tuberculoses are conducted in San Francisco and what phases are they in? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'San Francisco'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN study.title AS study_title, phase.name AS phase |
422 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Pfizer and conducted at Los Angeles. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Pfizer'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) RETURN study.title, study.id |
423 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Find the number of studies that included BLOOD SAMPLE and were conducted at Los Angeles. | MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'BLOOD SAMPLE'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) RETURN COUNT(study) as number_of_studies |
424 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies sponsored by Peter Rossing and conducted in San Francisco. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Peter Rossing'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) RETURN study.title, study.id |
425 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 NETWORK in PHASE1 at Helsingborg, Sweden that involved Refractory Pulmonary Edema and Gelfoam. Include primary and secondary outcomes, sponsors, and collaborators. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NETWORK'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Helsingborg, Sweden'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Gelfoam'}) 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 |
426 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Chicago that have AVAILABLE status. | MATCH (study:Study {status: 'AVAILABLE'})-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) RETURN study.title, study.id |
427 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the phases and locations for studies on Human Flu involving ADULT participants? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Human Flu'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) MATCH (study)-[:CONDUCTED_AT]->(location:Location) RETURN phase.name AS phase, location.name AS location, COUNT(*) AS study_count ORDER BY study_count DESC |
428 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 and conducted in Hangzhou, Zhejiang, China. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Pfizer'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) RETURN study.title, study.id |
429 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Laryngeal Dystonia include both Female and Male participants and what are their primary outcome measures? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:INCLUDES_SEX]->(sex1:Sex {name: 'Female'}), (study)-[:INCLUDES_SEX]->(sex2:Sex {name: 'Male'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome |
430 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies at New York with Decrease in Blood Sugar as a primary outcome. | MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Decrease in Blood Sugar'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'New York'}) RETURN study.title, study.id |
431 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Ketamine Treatment and funded by AMBIG? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) 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 |
432 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies sponsored by Xiaoping Fan. MD that also had National Institute on Minority Health and Health Disparities (NIMHD)|Genomas, Inc as a collaborator. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Xiaoping Fan. MD'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator {name: 'National Institute on Minority Health and Health Disparities (NIMHD)|Genomas, Inc'}) RETURN study.title |
433 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which universities are involved in Ketamine Treatment studies, and what are the study outcomes? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_OTHER_OUTCOME]->(otherOutcome:OtherOutcomeMeasures) RETURN collaborator.name AS university, COLLECT(DISTINCT primaryOutcome.name) AS primary_outcomes, COLLECT(DISTINCT secondaryOutcome.name) AS secondary_outcomes, COLLECT(DISTINCT otherOutcome.name) AS other_outcomes |
434 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies sponsored by Vancouver Prostate Centre with CHILD, ADULT age group participants and Male sex participants. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Vancouver Prostate Centre'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT'}) MATCH (study)-[:INCLUDES_SEX]->(sex:Sex {name: 'Male'}) RETURN study.title |
435 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Thalassemia Intermedia funded by AMBIG organizations? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'AMBIG'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN phase.name AS phase, COUNT(*) AS study_count ORDER BY study_count DESC |
436 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Find the number of studies that included Weight loss and were conducted at Lund, Sweden. | MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Weight loss'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) RETURN COUNT(study) as number_of_studies |
437 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Chicago. 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: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, condition.name, primary.name, secondary.name |
438 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What interventions are being tested in studies conducted at Los Angeles for Leukemia Relapse? | MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN condition.name AS condition, intervention.name AS intervention, COUNT(*) AS count ORDER BY count DESC |
439 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies funded by INDIV in PHASE2|PHASE3 and conducted at New York. What conditions and outcomes were recorded? | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDIV'}) MATCH (study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'New York'}) MATCH (study)-[:STUDIES]->(condition:Condition) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) RETURN study.title, condition.name, primary.name, secondary.name |
440 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies funded by NIH that investigate Chorea Associated With Huntington Disease and their secondary outcomes. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Chorea Associated With Huntington Disease'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
441 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Provide a count of studies with Intraoperative heart rate as a secondary outcome and involving Nalmefene (Selincro®) 18 mg tablet. | MATCH (study:Study)-[:MEASURES_SECONDARY_OUTCOME]->(outcome:SecondaryOutcomeMeasures {name: 'Intraoperative heart rate'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Nalmefene (Selincro®) 18 mg tablet'}) RETURN COUNT(study) as number_of_studies |
442 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 on Ischemic Heart Disease (IHD) are being conducted in PHASE2|PHASE3 and what secondary outcomes are they measuring? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
443 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the interventions being tested in PHASE1 for Bleeding Cardiac Surgery Patients, along with the age groups involved. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Bleeding Cardiac Surgery Patients'}) 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 |
444 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 PHASE1|PHASE2 studies on Ischemic Heart Disease (IHD), and what age groups are included? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup) RETURN intervention.name AS intervention, ageGroup.name AS age_group, COUNT(*) AS count ORDER BY count DESC |
445 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies in PHASE2|PHASE3 conducted at San Francisco studying Refractory Pulmonary Edema. Include primary outcome details. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, primary.name |
446 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 were conducted by Novartis in San Francisco? | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Novartis'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) RETURN COUNT(study) as number_of_studies |
447 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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, ADULT age group, and what are the primary and secondary outcomes? | MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, secondaryOutcome.name AS secondary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC |
448 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Placebo to SHP-141C and were conducted at Kristianstad, Sweden. | MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Placebo to SHP-141C'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Kristianstad, Sweden'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) RETURN COUNT(study) as number_of_studies |
449 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which interventions are tested in studies on Neurocognitive Dysfunction conducted at New York? | MATCH (study:Study)-[:CONDUCTED_AT]->(location:Location {name: 'New York'}) 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 |
450 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Recurrent Hypopharyngeal Squamous Cell Carcinoma funded by UNKNOWN? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
451 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 RECRUITING status studying Alpha1-antitrypsin Deficiency. | MATCH (study:Study {status: 'RECRUITING'})-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) RETURN study.title, study.id |
452 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the age groups and sexes involved in Refractory Pulmonary Edema studies, along with study types. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) 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 |
453 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Provide details of studies investigating Ketamine Treatment in Los Angeles and their associated phases. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Los Angeles'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN study.title AS study_title, phase.name AS phase |
454 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 PHASE4 phase focus on Pulmonary Tuberculoses? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) RETURN study.title |
455 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Vancouver Prostate Centre involving participants from CHILD age group and Male sex. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Vancouver Prostate Centre'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD'}) MATCH (study)-[:INCLUDES_SEX]->(sex:Sex {name: 'Male'}) RETURN study.title |
456 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 with CHILD, ADULT age group participants and All sex participants. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Pfizer'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD, ADULT'}) MATCH (study)-[:INCLUDES_SEX]->(sex:Sex {name: 'All'}) RETURN study.title |
457 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the age groups and sexes involved in Recurrent Hypopharyngeal Squamous Cell Carcinoma studies, along with study types. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) 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 |
458 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 INDUSTRY organizations focus on Leukemia Relapse, and what are the secondary outcomes measured? | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC |
459 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 investigating Pulmonary Tuberculoses and Recombinant new coronavirus vaccine (CHO cell) low-dose group with participants from the CHILD age group. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Pulmonary Tuberculoses'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Recombinant new coronavirus vaccine (CHO cell) low-dose group'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD'}) RETURN study.title |
460 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which studies funded by UNKNOWN organizations are focused on Thalassemia Intermedia, and what outcomes are they measuring? | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_OTHER_OUTCOME]->(otherOutcome:OtherOutcomeMeasures) RETURN COLLECT(DISTINCT primaryOutcome.name) AS primary_outcomes, COLLECT(DISTINCT secondaryOutcome.name) AS secondary_outcomes, COLLECT(DISTINCT otherOutcome.name) AS other_outcomes |
461 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Chronic Antibody-mediated Transplant Rejection, and what are their secondary outcomes? | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Chronic Antibody-mediated Transplant Rejection'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
462 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 focus on Refractory Pulmonary Edema, and what are their secondary outcomes? | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
463 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which conditions are the focus of studies funded by UNKNOWN and carried out in Chicago? | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'UNKNOWN'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {locations: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition) RETURN condition.name AS condition, COUNT(*) AS count ORDER BY count DESC |
464 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 top interventions being used for Chorea Associated With Huntington Disease studies and who are the sponsors? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Chorea Associated With Huntington Disease'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) RETURN intervention.name AS intervention, sponsor.name AS sponsor, COUNT(*) AS study_count ORDER BY study_count DESC |
465 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Xiaoping Fan. MD in San Francisco that studied Ischemic Heart Disease (IHD) and relaxation response- meditation. Include 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: 'Ischemic Heart Disease (IHD)'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'relaxation response- meditation'}) 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 |
466 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies funded by OTHER_GOV that investigate Human Flu and their secondary outcomes. | MATCH (study:Study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Human Flu'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
467 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies funded by OTHER in PHASE4 at Chicago involving Intervertebral Disc Disorder Lumbar With Radiculopathy and Nalmefene (Selincro®) 18 mg tablet. Include details of outcomes, sponsors, and collaborators. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Chicago'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: '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 |
468 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Quadras Scientific Solutions in Hangzhou, Zhejiang, China and involved Ischemic Heart Disease (IHD)? What were the primary and secondary outcomes? | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Quadras Scientific Solutions'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) 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 |
469 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies funded by NIH in PHASE4 at Boston involving Orthodontic Retainers and Recombinant new coronavirus vaccine (CHO cell) low-dose group. Include details of outcomes, sponsors, and collaborators. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE4'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'NIH'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Boston'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Recombinant new coronavirus vaccine (CHO cell) low-dose group'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, primary.name, secondary.name, sponsor.name, collaborator.name |
470 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies conducted at San Francisco having NOT_YET_RECRUITING status. | MATCH (study:Study {status: 'NOT_YET_RECRUITING'})-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) RETURN study.title, study.id |
471 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 of studies that involved Bleeding Cardiac Surgery Patients and were sponsored by Pfizer? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Bleeding Cardiac Surgery Patients'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Pfizer'}) 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 |
472 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Show studies at Hangzhou, Zhejiang, China with Reduction in Tumor Size as a primary outcome. | MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Reduction in Tumor Size'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Hangzhou, Zhejiang, China'}) RETURN study.title, study.id |
473 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Where are the studies on Chronic Antibody-mediated Transplant Rejection being conducted, and what types of studies are they? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Chronic Antibody-mediated Transplant Rejection'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location) MATCH (study)-[:TYPE_OF]->(studyType:StudyType) RETURN location.name AS location, studyType.name AS study_type, COUNT(*) AS study_count ORDER BY study_count DESC |
474 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Alpha1-antitrypsin Deficiency and funded by NETWORK? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Alpha1-antitrypsin Deficiency'}) 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 |
475 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Find the number of studies that included Guided bone regeneration and were conducted at San Francisco. | MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Guided bone regeneration'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'San Francisco'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER_GOV'}) RETURN COUNT(study) as number_of_studies |
476 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Active MBM conducted in Lund, Sweden. Who sponsored these studies and what were their primary outcomes? | MATCH (study:Study)-[:INTERVENTION]->(intervention:Intervention {name: 'Active MBM'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Lund, Sweden'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) RETURN study.title, sponsor.name, primary.name AS primary_outcome |
477 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Thalassemia Intermedia and funded by FED? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) 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 |
478 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Guided bone regeneration with Intraoperative heart rate as a secondary outcome. | MATCH (study:Study)-[:MEASURES_SECONDARY_OUTCOME]->(outcome:SecondaryOutcomeMeasures {name: 'Intraoperative heart rate'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Guided bone regeneration'}) RETURN COUNT(study) as number_of_studies |
479 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Anhui Palo Alto Pharmaceuticals, Inc. focusing on Intraoperative sufentanil as a primary outcome. | MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Intraoperative sufentanil'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Anhui Palo Alto Pharmaceuticals, Inc.'}) RETURN study.title |
480 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Leukemia Relapse funded by INDUSTRY? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Leukemia Relapse'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, secondaryOutcome.name AS secondary_outcome |
481 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which locations are most frequently used for studies on Orthodontic Retainers, and what interventions are being tested there? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Orthodontic Retainers'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN location.name AS location, intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC |
482 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Intervertebral Disc Disorder Lumbar With Radiculopathy funded by OTHER organizations? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Intervertebral Disc Disorder Lumbar With Radiculopathy'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'OTHER'}) 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 |
483 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies sponsored by Anhui Palo Alto Pharmaceuticals, Inc. that focused on Recurrent Hypopharyngeal Squamous Cell Carcinoma. Include primary and secondary outcomes. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Recurrent Hypopharyngeal Squamous Cell Carcinoma'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Anhui Palo Alto Pharmaceuticals, Inc.'}) 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 |
484 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | What are the phases and locations for studies on Chronic Antibody-mediated Transplant Rejection involving ADULT participants? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Chronic Antibody-mediated Transplant Rejection'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT'}) MATCH (study)-[:PHASE_OF]->(phase:Phase) MATCH (study)-[:CONDUCTED_AT]->(location:Location) RETURN phase.name AS phase, location.name AS location, COUNT(*) AS study_count ORDER BY study_count DESC |
485 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 have Intraoperative heart rate as a secondary outcome and involve Active MBM? | MATCH (study:Study)-[:MEASURES_SECONDARY_OUTCOME]->(outcome:SecondaryOutcomeMeasures {name: 'Intraoperative heart rate'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Active MBM'}) RETURN COUNT(study) as number_of_studies |
486 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Find studies with primary outcomes of Decrease in Blood Sugar and sponsored by Quadras Scientific Solutions. | MATCH (study:Study)-[:MEASURES_PRIMARY_OUTCOME]->(outcome:PrimaryOutcomeMeasures {name: 'Decrease in Blood Sugar'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'Quadras Scientific Solutions'}) RETURN study.title |
487 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 what are the primary and secondary outcomes? | MATCH (study:Study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'CHILD'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN study.title AS study_title, primaryOutcome.name AS primary_outcome, secondaryOutcome.name AS secondary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC |
488 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which universities are collaborating on studies about Thalassemia Intermedia, and what primary outcomes are measured? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Thalassemia Intermedia'}) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN collaborator.name AS university, primaryOutcome.name AS primary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC |
489 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies in EARLY_PHASE1 phase focusing on Hand Injuries. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'EARLY_PHASE1'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) RETURN study.title |
490 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List studies in PHASE2|PHASE3 funded by INDUSTRY at Los Angeles involving Kidney Carcinoma and Plasma. Include outcomes, sponsors, and collaborators. | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:FUNDED_BY]->(funder:FunderType {name: 'INDUSTRY'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Los Angeles'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Kidney Carcinoma'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention {name: 'Plasma'}) MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primary:PrimaryOutcomeMeasures) MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondary:SecondaryOutcomeMeasures) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:COLLABORATED_WITH]->(collaborator:Collaborator) RETURN study.title, primary.name, secondary.name, sponsor.name, collaborator.name |
491 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Laryngeal Dystonia, and what phases are these studies in? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Laryngeal Dystonia'}) MATCH (study)-[:SPONSORED_BY]->(sponsor:Sponsor) MATCH (study)-[:PHASE_OF]->(phase:Phase) RETURN sponsor.name AS sponsor, phase.name AS phase, COUNT(*) AS study_count ORDER BY study_count DESC |
492 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which interventions are most commonly researched in studies on Ventricular Ectopic Beat(S), and which one tops the list? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ventricular Ectopic Beat(S)'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC LIMIT 1 |
493 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the primary interventions being tested for Chorea Associated With Huntington Disease in various study phases. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Chorea Associated With Huntington Disease'}) 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 |
494 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | List the study types for Ketamine Treatment research. | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Ketamine Treatment'}) MATCH (study)-[:TYPE_OF]->(studyType:StudyType) RETURN studyType.name AS study_type, COUNT(*) AS count ORDER BY count DESC |
495 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Chorea Associated With Huntington Disease, and which intervention is the most studied? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Chorea Associated With Huntington Disease'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC LIMIT 1 |
496 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 phase focus on Refractory Pulmonary Edema? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE2|PHASE3'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Refractory Pulmonary Edema'}) RETURN study.title |
497 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 J&J conducted in Kristianstad, Sweden. | MATCH (study:Study)-[:SPONSORED_BY]->(sponsor:Sponsor {name: 'J&J'}) MATCH (study)-[:CONDUCTED_AT]->(location:Location {name: 'Kristianstad, Sweden'}) RETURN COUNT(study) as number_of_studies |
498 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[:TYPE_OF]->(:StudyType), (:Study)-[:INCLUDES_AGE_GROUP]->(:AgeGroup), (:Study)-[:INCLUDES_SEX]->(:Sex), (:Study)-[:CONDUCTED_AT]->(:Location), (:Study)-[:PHASE_OF]->(:Phase), (:Study)-[:FUNDED_BY]->(:FunderType) | Which primary outcomes are most frequently measured in PHASE1|PHASE2 studies on Ischemic Heart Disease (IHD)? | MATCH (study:Study)-[:PHASE_OF]->(phase:Phase {name: 'PHASE1|PHASE2'}) MATCH (study)-[:STUDIES]->(condition:Condition {name: 'Ischemic Heart Disease (IHD)'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) RETURN primaryOutcome.name AS primary_outcome, COUNT(*) AS count ORDER BY count DESC |
499 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 ADULT age group? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Hand Injuries'}) MATCH (study)-[:INCLUDES_AGE_GROUP]->(ageGroup:AgeGroup {name: 'ADULT'}) OPTIONAL MATCH (study)-[:MEASURES_PRIMARY_OUTCOME]->(primaryOutcome:PrimaryOutcomeMeasures) OPTIONAL MATCH (study)-[:MEASURES_SECONDARY_OUTCOME]->(secondaryOutcome:SecondaryOutcomeMeasures) RETURN primaryOutcome.name AS primary_outcome, secondaryOutcome.name AS secondary_outcome, COUNT(*) AS study_count ORDER BY study_count DESC |
500 | clinical_trials | Nodes: Study, Sponsor, Collaborator, Condition, Intervention, PrimaryOutcomeMeasures, SecondaryOutcomeMeasures, OtherOutcomeMeasures, StudyType, AgeGroup, Sex, Location, Phase, FunderType; Relationships: (:Study)-[:SPONSORED_BY]->(:Sponsor), (:Study)-[:COLLABORATED_WITH]->(:Collaborator), (:Study)-[:STUDIES]->(:Condition), (:Study)-[:INTERVENTION]->(:Intervention), (:Study)-[:MEASURES_PRIMARY_OUTCOME]->(:PrimaryOutcomeMeasures), (:Study)-[:MEASURES_SECONDARY_OUTCOME]->(:SecondaryOutcomeMeasures), (:Study)-[:MEASURES_OTHER_OUTCOME]->(:OtherOutcomeMeasures), (:Study)-[: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 Human Flu, and which intervention is the most studied? | MATCH (study:Study)-[:STUDIES]->(condition:Condition {name: 'Human Flu'}) MATCH (study)-[:INTERVENTION]->(intervention:Intervention) RETURN intervention.name AS intervention, COUNT(*) AS study_count ORDER BY study_count DESC LIMIT 1 |