Created
May 9, 2024 05:30
-
-
Save vejvarm/818c273846e957f1ff7734ec2ee3cbe7 to your computer and use it in GitHub Desktop.
repl_var_names
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MATCH (T1:ROOT__endowment) | |
MATCH (T2:ROOT__school) | |
WHERE (T2_school_name = 'Glenn') | |
RETURN DISTINCT count(DISTINCT T1.endowment__donator_name) AS aggregation_ T1.endowment__donator_name _106 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT DISTINCT (count(DISTINCT ?T1_donator_name) as ?aggregation_T1_donator_name_106 ) | |
WHERE {?T1 a :endowment . | |
?T2 a :school . | |
?T1 endowment:SCHOOL_ID ?T2 . | |
?T1 endowment:donator_name ?T1_donator_name . | |
?T2 school:school_name ?T2_school_name . | |
FILTER(?T2_school_name = 'Glenn') . | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment